@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');



/* ===========================
   ROOT DESIGN SYSTEM
   =========================== */

:root {

  /* ===========================
     COLORS
     =========================== */

  --color-primary: #5b4cf6;
  --color-primary-light: #eeecff;
  --color-primary-dark: #4738d8;

  --color-secondary: #7c3aed;
  --color-secondary-light: #a78bfa;
  --color-secondary-dark: #5b21b6;

  --color-accent: #f97316;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #06b6d4;

  /* Backgrounds */

  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;

  /* Text */

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders */

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* ===========================
     TYPOGRAPHY
     =========================== */

  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-mono: "Fira Code", monospace;

  /* Font Sizes */

  --fs-xs: 0.75rem;     /*12px*/
  --fs-sm: 0.875rem;    /*14px*/
  --fs-base: 1rem;      /*16px*/
  --fs-md: 1.125rem;    /*18px*/
  --fs-lg: 1.25rem;     /*20px*/
  --fs-xl: 1.5rem;      /*24px*/
  --fs-2xl: 2rem;       /*32px*/
  --fs-3xl: 2.5rem;     /*40px*/
  --fs-4xl: 3rem;       /*48px*/
  --fs-5xl: 4rem;       /*64px*/

  /* Font Weight */

  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* Line Heights */

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.8;

  /* Letter Spacing */

  --letter-tight: -0.03em;
  --letter-normal: 0;
  --letter-wide: 0.05em;

  /* ===========================
     SPACING
     =========================== */

  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ===========================
     BORDER RADIUS
     =========================== */

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* ===========================
     SHADOWS
     =========================== */

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);

  --shadow-sm:
    0 2px 4px rgba(0,0,0,.06);

  --shadow-md:
    0 6px 12px rgba(0,0,0,.08);

  --shadow-lg:
    0 12px 24px rgba(0,0,0,.12);

  --shadow-xl:
    0 20px 40px rgba(0,0,0,.16);

  /* ===========================
     TRANSITIONS
     =========================== */

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ===========================
     Z-INDEX
     =========================== */

  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal-backdrop: 1100;
  --z-modal: 1200;
  --z-popover: 1300;
  --z-tooltip: 1400;
  --z-toast: 1500;

  /* ===========================
     LAYOUT
     =========================== */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;

  --header-height: 72px;
  --sidebar-width: 280px;

  /* ===========================
     BUTTONS
     =========================== */

  --btn-padding-x: 24px;
  --btn-padding-y: 12px;
  --btn-radius: 8px;

  /* ===========================
     INPUTS
     =========================== */

  --input-height: 48px;
  --input-radius: 8px;

  /* ===========================
     IMAGES
     =========================== */

  --image-radius: 16px;

  /* ===========================
     OPACITY
     =========================== */

  --opacity-disabled: .5;
  --opacity-hover: .85;

  /* ===========================
     BLUR
     =========================== */

  --blur-sm: 4px;
  --blur-md: 10px;
  --blur-lg: 20px;

  /* ===========================
     GRADIENTS
     =========================== */

  --gradient-primary:
    linear-gradient(135deg,#2563eb,#7c3aed);

  --gradient-secondary:
    linear-gradient(135deg,#06b6d4,#2563eb);

  --gradient-accent:
    linear-gradient(135deg,#f97316,#ef4444);

  /* ===========================
     OVERLAY
     =========================== */

  --overlay-dark: rgba(0,0,0,.6);
  --overlay-light: rgba(255,255,255,.7);

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,
*::before,
*::after {
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

html {
    scroll-behavior: smooth;
    transition: all;
}

body {
    font-family:'Inter',sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:var(--bg);
    color:var(--text);
    transition:.35s;
}
button{
    font-family:'Inter',sans-serif;
}
.pt-0{
    padding-top:0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}


/* Heading */

h1{
    font-family: "Manrope", sans-serif;
    font-size:30px;      /* 35px - 48px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2{
    font-family: "Manrope", sans-serif;
    font-size: 26px;   /* 30px - 36px */
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

h3{
    font-family: "Manrope", sans-serif;
    font-size: 24px;  /* 26px - 30px */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

h4{
    font-family: "Manrope", sans-serif;
    font-size: 22px;  /* 22px - 24px */
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 16px;
}

h5{
    font-family: "Manrope", sans-serif;
    font-size: 20px;  /* 18px - 20px */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

h6{
    font-family: "Manrope", sans-serif;
    font-size: 18px;  /* 16px - 18px */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Paragraph */

p{
    font-size: clamp(1rem, 1.5vw, 1.125rem);  /* 16px - 18px */
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}

header .container{
    position: relative;
    /* height: var(--header-height); */
}
.quantumpress-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 30px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
}
.logo a{
    display: flex;
}
.logo img {
    height: 32px;
    width: unset;
}

header {
    z-index: 99;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-slow);
    background: var(--bg-card);
}
.quantumpress-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.scrolled{
        position: sticky;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--bg-card);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    transition: var(--transition-slow);
    /* animation: slideDown 0.5s ease forwards; */
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.quantumpress-menu>li>a {
    text-decoration: none;    
    color: var(--text-secondary);
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 30px 14px;
    position: relative;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scrolled .quantumpress-menu>li>a {
color: var(--text-secondary);
/* padding: 20px 14px; */
}
.quantumpress-menu>li>a:hover {
    color: var(--text-primary);
}
.scrolled .quantumpress-menu>li>a:hover {
    color: var(--text-primary);
}

.quantumpress-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.toggle_container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-has-children {
    position: relative;
}
.logo h1{
    margin: 0;
    font-size: 35px;
    color: #fff;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* ==== */
.navbar-button {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid #ffffff52;
    padding-left: 18px;
}




.menu-toggle {
    flex-direction: column;
    cursor: pointer;
    display: flex;
}
.menu-toggle svg path{
    stroke: var(--color-primary);
}

/* Parent */
.menu-item-has-children {
    position: relative;
}

/* Dropdown */
.menu-item-has-children>.sub-menu {
    display: block !important;
    /* Override WP theme */

    position: absolute;
    top: calc(100% + 0);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
    background: #fff;
    border-radius: 0;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, .12); */
    z-index: 999;
    width: 280px;
    padding: 20px;
}

/* Show */
.menu-item-has-children:hover>.sub-menu,
.menu-item-has-children:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.sub-menu li a {
    text-decoration: none;
    color: #4d4d4d;
    padding: 6px 0px;
    display: inline-block;
    width: 100%;
        font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-menu li a:hover {
    color: #412C97;
}

.sub-menu::after {
    /* content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; */
}

/* sidebar menu css  */

/* Overlay */

.sidebar-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Sidebar */

.sidebar{
    position:fixed;
    top:0;
    right:-400px;
    width:380px;
    height:100vh;
    background:#fff;
    transition:.35s ease;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    z-index:9999;
    overflow-y:auto;
    /* background: rgb(0 0 0 / 64%); */
    backdrop-filter: blur(25px);
}

.sidebar.active{
    right:0;
}

/* Header */

.sidebar-header{
    background: var(--bg-dark);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom: 1px solid #ffffff1a;
    
    color: #fff;
}

.sidebar-header h3{
    font-size:22px;
    margin: 0;
    text-transform: uppercase;
}
.sidebar-header i{
    color: #7a00df;
}

.close-sidebar{
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

/* Menu */

.sidebar-menu{
    list-style:none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sidebar-menu li{
    /* border-bottom: 1px solid #ffffff1a; */
}

.sidebar-menu a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 20px;
    color: #000000c7;
    text-decoration: none;
    transition: .3s;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.sidebar-menu a:hover{
    color: var(--color-primary);
}

/* Arrow */

.arrow{
    transition:.3s;
}

.arrow.rotate{
    transform:rotate(90deg);
}

/* Submenu Animation */

.submenu{
    list-style:none;
    /* background:#f8f8f8; */
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}
.submenu a{
    padding-left:45px;
    font-size:15px;
    color:#000000c7;
    position: relative;
        font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
}
.submenu li{
    border:none;
}

.submenu a::before{
        content: '';
    height: 10px;
    width: 10px;
    background: #7a00df;
    position: absolute;
    left: 24px;
    border-radius: 50px;
    /* top: 50%; */

}

/* TOP HEADER CSS  */
.top-header{
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 4px 0;
}
.top-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.th-left ul, .th-right ul{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}
.th-left ul li, .th-right ul li{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
.th-left ul li svg, .th-right ul li svg{
    width: 20px;
}
.th-left ul li a, .th-right ul li a{
    text-decoration: none;
    color: var(--text-secondary);
}
.th-left ul li svg path, .th-right ul li svg path{
    stroke: var(--color-primary);
}
/* END OF TOP HEADER CSS  */

/* HERO BANNER CSS  */
.hero-section{
    background: url(../images/bottom-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 80px 0;
    position: relative;
}
.hero-section .container{
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero-content{
    width: 50%;
}
.hero-img{
    width: 50%;
    text-align: center;
}
.hero-img img{
    width: 80%;
}
.landing-hero-img{
    width: 50%;
    text-align: center;
}
.landing-hero-img img{
    width: 70%;
}

.hero-tag{
    background: var(--bg-surface);
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 5px 20px;
    margin-bottom: 25px;
}
.hero-tag span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}
.hero-tag p{
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
}
.hero-content h1{
    font-size: 62px;
    font-weight: 500;
}
.hero-content h1 span{
    color: var(--color-primary);
}
.hero-btn-group{
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn{
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}
.btn:hover{
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}
.btn svg{
    width: 20px;
}
.btn-primary{
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--text-white);
}
.btn-primary:hover{
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transition: var(--transition-normal);
}
.hero-stats{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
.hero-stats>div{
    display: flex;
    align-items: center;
    gap: 16px;
}
.stats-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-icon svg{
     width: 20px;
}
.hero-stats>div:nth-child(2) .stats-icon{
    background: var(--color-secondary);
}
.hero-stats>div:nth-child(3) .stats-icon{
    background: var(--color-accent);
}

.counter-number{
    margin: 0;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    line-height: 0.8;
    margin-bottom: 5px;
}
.counter-title{
    margin: 0;
    font-size: var(--fs-sm);
    font-family:'Inter',sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}
/* END OF HERO BANNER CSS  */

/* Tricker css  */

.ticker{
    width:100%;
    background: var(--color-primary);
    background-image: linear-gradient(90deg, #203AFF 0%, #C000FF 100%);
    /* background-image: linear-gradient(90deg, #FF9933 0%, #d0d0d0 45%, #d0d0d0 55%, #138808 100%); */
    overflow:hidden;
    padding:14px 0;
    white-space:nowrap;
}

.ticker-track{
    display:flex;
    width:max-content;
    animation: tickerMove 22s linear infinite;
}

.ticker-track span{
    margin-right:50px;
    font-size:50px;
    font-weight:700;
    text-transform:uppercase;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1;
}
.ticker-track span span{
    margin-right: 40px;
}
/* Filled Text */
.fill{
    color:#fff;
}

/* Outline Text */
.outline{
    color:transparent;
    -webkit-text-stroke:1px #fff;
    text-stroke:1px #fff;
}

@keyframes tickerMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Pause on Hover */
.ticker:hover .ticker-track{
    animation-play-state:paused;
}
/* end of ticker css  */

.section-padding{
    padding: 80px 0;
}
.section-title-area{
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.section-title-area .hero-tag{
    margin-bottom: 10px;
}
.section-title-area h2{
    font-size: 62px;
    font-weight: 500;
    color: var(--text-primary);
    width: 100%;
    max-width: 1000px;
}
.dark-bg .section-title-area h2{
    color: var(--text-white) !important;
}
.section-title-area h2 span{
    color: var(--color-primary);
}
.section-title-area .sub_content{
    width: 700px;
    max-width: 100%;
    text-align: center;
    font-size: 15px;
    margin-bottom: 40px;
}

.sec-bg-1{
    /* background-color: var(--color-primary); */
    background: url(../images/bg_pattern.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    height: 70vh;
}
.sec-bg-1{
    background: url(../images/bg_pattern.png);
}
.sec-bg-2{
    background: url(../images/blog_bg_1.png);
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Tablet */
@media (max-width: 992px) {
    .grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .grid-three {
        grid-template-columns: 1fr;
    }
}
.grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Tablet */
@media (max-width: 992px) {
    .grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .grid-four {
        grid-template-columns: 1fr;
    }
}
.grid-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
/* Tablet */
@media (max-width: 992px) {
    .grid-five {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .grid-five {
        grid-template-columns: 1fr;
    }
}
.grid-six {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
/* Tablet */
@media (max-width: 992px) {
    .grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .grid-six {
        grid-template-columns: 1fr;
    }
}


.service-card{
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}
.service-card:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    margin-bottom: 20px;
}
.service-icon::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url(../images/hexa-top-right.png) no-repeat center;
    background-size: contain;
    /* transform: scaleX(-1); */
    pointer-events: none;
    opacity: 0.5;
}
.service-icon img{
    width: 60px;
    transition: 1s;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(972%) hue-rotate(35deg) brightness(103%) contrast(101%);
}
.service-card:hover .service-icon img{
    /* animation: flipTwice 0.8s ease; */
    transition: 0.8s;
    transform: rotateY(360deg);
}
@keyframes flipTwice{
    0%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(360deg); /* 1st flip */
    }
    
}
.service-card h3{
    font-size: 20px;
}
.service-card p{
    font-size: 14px;
}
.link{
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 14px;
}
.link:hover{
    color: var(--color-primary-dark);
}
.link svg{
    width: 20px;
}

.project-ctc{
    background: #151E42;
background: linear-gradient(90deg, rgba(21, 30, 66, 1) 60%, rgba(51, 41, 133, 1) 100%);
    /* min-height: 200px; */
    margin-top: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}
.ctc-bg::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_pattern.png) no-repeat center;
    background-size: cover;
    /* transform: scaleX(-1); */
    pointer-events: none;
    opacity: 0.5;
}
.ctc-content{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
}
.ctc-text{
    flex: 1;
}
.ctc-content .stats-icon{
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
}
.ctc-content .stats-icon svg{
    width: 30px;
}
.ctc-content .ctc-text h3{
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}
.ctc-content .ctc-text p{
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    width: 500px;
    max-width: 100%;
}

.section-bg1{
    background: url(../images/bg2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.pb-0{
    padding-bottom: 0;
}
.fs-25{
    font-size: 35px !important;
}
.industry-card{
    /* background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-color); */
    background: #ffffff05;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e2e8f012;
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    background: var(--color-primary);
    margin-bottom: 20px;
    margin: 0 auto;
}
.industry-icon img {
    width: 50px;
    transition: 1s;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(972%) hue-rotate(35deg) brightness(103%) contrast(101%);
}
.industry-shape{
    width: 100%;
    position: absolute;
    left: 0;
    top: 100px;
     -webkit-user-drag: none;
    user-select: none;
    opacity: 0.3;
}
.industry-card h3{
    margin-top: 60px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-white)
}
.industry-card p{
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffff85;
    font-weight: 300;
}
.span-dash{
    display: inline-block;
    width: 20px;
    height: 7px;
    margin: 21px 0 0 0;
    background: var(--color-primary);
    border-radius: 50px;
    transition: var(--transition-fast);
}
.industry-card:hover .span-dash{
    width: 80px;
    transition: var(--transition-fast);
}
.industry-card:hover{
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}
.section-bg2{
    background: url(../images/process_bg_5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.why-card{
        backdrop-filter: blur(20px);
    position: relative;
    text-align: center;
    background: rgb(255 255 255 / 26%);
    border-radius: var(--radius-lg);
    padding: 30px;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234 234 234);
    border-image: none;
}
.why-card h3{
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}
.why-card p{
    font-size: 14px;
    margin-bottom: 0;
}
.why-card .why-icon img{
    width: 50px;
}

.tech-card{
    position: relative;
    text-align: center;
    border-radius: var(--radius-lg);
    padding: 30px;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234 234 234);
    border-image: none;
    background: url(../images/service_bg_1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
}
.tech-card h3{
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}
.tech-card p{
    font-size: 14px;
    margin-bottom: 0;
}
.tech-card .tech-icon img{
    width: 80px;
}
.portfolio-card{
    backdrop-filter: blur(20px);
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);    
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234 234 234);
    border-image: none;
    text-decoration: none;
    color: unset;
}
.portfolio-card h3{
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}
.portfolio-card p{
    font-size: 14px;
    margin-bottom: 0;
}
.portfolio-card img{
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
}
.portfolio-content{
    /* padding: 30px; */
    padding: 15px;
}
.testimonials-card{
    backdrop-filter: blur(20px);
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);    
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234 234 234);
    border-image: none;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-card h3{
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}
.testimonials-card p{
    font-size: 14px;
    margin-bottom: 0;
}
.testimonials-card .quote{
    transform: rotate(-180deg);
    width: 54px;
    fill: #8a8a8a42;
}
.testimonials-profile{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}
.testimonials-profile svg{
    width: 32px;
    fill: var(--color-primary);
}
.testimonials-profile div{
    display: flex;
    flex-direction: column;
}
.testimonials-profile div h3{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.testimonials-profile div p{
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
}
.faq-main{
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-number{
    width: 100%;
    max-width: 400px;
    background: #F6F7FD;
    border:1px solid var(--border-color);
    height: fit-content;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 120px;
}
.faq-number img{
    width: 100%;
    height:150px;
    object-fit: contain;
}
.faq-number h2{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}
.faq-number h2 span{
    color: var(--color-primary);
}
.faq-number-btn{
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-number-btn .btn{
    justify-content: flex-start;
}
.faq{
   flex: 1 1 auto;
}
.faq-item{
    background:#ffffff;
    border-radius: var(--radius-lg);
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid var(--border-color);
    transition:.3s;
}

.faq-item.active{
    background: #F6F7FD;;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#111827;
}

.faq-question svg{
    transition:.3s;
}

.faq-item.active .faq-question svg{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 5px;
    color:#6b7280;
    line-height:1.8;
    font-size:14px;
}
.faq-answer ul{
        padding: 0 25px 5px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
    margin-left: 20px;
}
.faq-section{
    background: url(../images/team_bg_2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
}
.contact-form{
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    margin: 0 auto;
}
/* Input, Textarea, Select */
label {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}
.oh-form p{
    margin-bottom: 5px;
}
.oh-form input,
.oh-form textarea,
.oh-form select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: -1px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Focus */
.oh-form input:focus,
.oh-form textarea:focus,
.oh-form select:focus {
    border-color: #252E97;
}

/* Placeholder */
.oh-form input::placeholder,
.oh-form textarea::placeholder {
    color: #999;
}

/* Textarea */
.oh-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Disabled */
.oh-form input:disabled,
.oh-form textarea:disabled,
.oh-form select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Submit Button */
.oh-form button,
.oh-form input[type="submit"] {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--text-white);
    cursor: pointer;
    width: fit-content;
}

.oh-form button:hover,
.oh-form input[type="submit"]:hover {
    box-shadow: var(--shadow-lg);
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transition: var(--transition-normal);
}
.home-contact-main{
    display: flex;
    align-items: center;
    gap: 30px;
}
/* 

https://themesflat.co/html/open9/contact-us.html

*/



/* footer css  */
 /* =========================
   Footer
========================= */

footer {
    background: var(--text-primary);;
    position: relative;
    color: #cbd5e1;
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}


.footer-logo {
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(244deg) brightness(106%) contrast(105%);
}

.footer-logo span {
    color: #B3497E;
}

.footer-col p {
    line-height: 1.8;
    color: #94a3b8;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 14px;
}

.footer-col ul li a {
    color: #B9BDD4;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--bg-body);
    padding-left: 6px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
}
.footer-bottom p span{
    color: var(--color-danger);
}
.footer-col ul li a::before {
    content: "›";
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    /* opacity: 0; */
    transform: translateX(-5px);
    transition: all 0.3s ease;
    position:relative;
    margin-right: 5px;
}
.footer-con-item{
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.footer-con-item p{
    margin: 0;
    font-size: 14px;
}
.footer-con-item a{
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}
.footer-con-item a:hover{
    color: var(--bg-body);
}
.footer-con-item svg{
    width: 20px;
    height: 20px;
    margin-top: 5px;
    /* fill: var(--color-primary); */
}
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background: #3662E3;
    border-color: #3662E3;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(54, 98, 227, 0.35);
}

.social-links a:hover svg {
    transform: scale(1.1);
}
.footer-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    user-select:none;
}

.footer-toggle .arrow{
    font-size:20px;
    transition:.3s ease;
    display:none;
}

.footer-menu{
    transition:.3s ease;
}

/* Mobile */
@media (max-width:768px){

    .footer-toggle .arrow{
        display:block;
    }

    .footer-menu{
        display:none;
        margin-top:15px;
    }

    .footer-col.active .footer-menu{
        display:block;
    }

    .footer-col.active .arrow{
        transform:rotate(90deg);
    }
}

.m-20{
    margin: 20px;
}
.page-banner{
    background: url(../images/bottom-bg.webp);
    background-repeat: no-repeat;
    background-size: 120% 100%;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    /* border-bottom: 1px solid var(--border-color); */
}
.page-banner h1{
    font-size: 62px;
    font-weight: 500;
    color: var(--text-primary);
}
.page-banner p{
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb li a {
    color: #2f2f2f;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb li a:hover {
    color: var(--color-primary);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #9ca3af;
}

.breadcrumb li:last-child {
    color: #858585;
    /* font-weight:600; */
}
.border-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}
.contact-details iframe{
    width: 100%;
    height: 400px;
}

.about-page-section{
    padding:100px 0;
}

.about-page-wrapper{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-page-image,
.about-page-content{
    flex:1;
}

.about-page-image img{
    width:100%;
    border-radius:20px;
}

.about-page-content h2{
    margin:20px 0;
    font-size:42px;
}

.about-page-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}
.mission-section{
    padding-bottom:100px;
}

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

.mission-card{
    padding:40px;
    border-radius:20px;
    background:#f8f9fb;
}

.mission-card h3{
    margin-bottom:15px;
}
.stats-section{
    padding-bottom:100px;
}

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

.stat-item{
    text-align:center;
    padding:30px;
    border:1px solid #eee;
    border-radius:16px;
}

.stat-item h3{
    font-size:42px;
    color:var(--color-primary);
}

.stat-item span{
    color:#666;
}
.blogs-title-search{
    display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 40px 0 40px;
      flex-direction: column;
      text-align: center;
      text-align: center;
}

.blogs-title-search h2{
    font-size:42px;
    color:#111827;
    margin-bottom:12px;
    text-align: center;
}

.blogs-title-search p{
    max-width:100%;
    color:#6b7280;
    text-align: center;
    line-height:1.8;
}

/* ===========================
   SEARCH
=========================== */

.blog-search-form{
    position:relative;
    width:360px;
}

.blog-search-form input{
    width:100%;
    height:56px;
    border:1px solid #e5e7eb;
    border-radius:50px;
    padding:0 65px 0 20px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.blog-search-form input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.blog-search-form button{
    position:absolute;
    top:6px;
    right:6px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.blog-search-form button:hover{
    background:#1d4ed8;
}

/* ===========================
   BLOG SECTION
=========================== */

.blog-section{
    background:#f8fafc;
    padding:20px 0 80px;
}

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

/* ===========================
   BLOG CARD
=========================== */

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border: 1px solid #e7e7e7;
    transition:.35s;
}

.blog-card:hover{
    border-color:#2563eb;
}

.blog-card a{
    display:block;
    color:inherit;
    text-decoration:none;
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    transition: .5s;
    display: block;
}



.blog-cat{    
    color: #2563eb;
/* padding: 7px 15px; */
/* border-radius: 0 0 12px 12px; */
font-size: 13px;
font-weight: 600;
margin-bottom:5px;
}

.blog-content{
    padding:15px;
    position: relative;
}

.blog-meta{
    display:flex;
    gap:18px;
    font-size:13px;
    color:#6b7280;
    margin-bottom:5px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.blog-meta svg{
    width:15px;
    height:15px;
    fill:#2563eb;
}

.blog-content h3{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom:15px;
    color:#111827;
    transition:.3s;
}

.blog-card:hover h3{
    color:#2563eb;
}

.blog-content p{
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 25px;
    font-size: 14px;
}

.blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #e5e7eb;
    padding-top:18px;
    color:#6b7280;
    font-size:14px;
}

.blog-footer span{
    display:flex;
    align-items:center;
    gap:8px;
}

.blog-footer svg{
    width:16px;
    height:16px;
    fill:#2563eb;
}

.read-more{
    color:#2563eb;
    font-weight:600;
}
.blogs-top-notification{
    border-bottom: 1px solid var(--border-color);
}

/* ===========================
   PAGINATION
=========================== */

.blog-pagination{
    display:flex;
    justify-content:center;
    margin-top:60px;
}

.blog-pagination .page-numbers{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 5px;
    border:1px solid #e5e7eb;
    border-radius: 10px;
    background:#fff;
    color:#111827;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .current{
    background:#2563eb;
    border-color:#2563eb;
    color:#fff;
}

.blog-pagination svg{
    width:16px;
    height:16px;
    fill:currentColor;
}
.single-blog {
    padding: 20px 0;
}

.articles-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.articles-content {
    /* background: #fff; */
    /* border-radius: 18px; */
    /* padding: 35px; */
    /* box-shadow: 0 10px 35px rgba(15, 23, 42, .08); */
}



/* ===========================
   TITLE
=========================== */

.articles-content h1 {
    font-size: 32px;
    line-height: 1.35;
    margin-bottom: 25px;
    color: #111827;
}

/* ===========================
   FEATURED IMAGE
=========================== */

.featured-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 16px;
}

.featured-image img {
    width: 100%;
    height: unset;
    display: block;
    border-radius: 16px;
}

/* ===========================
   META
=========================== */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.blog-meta svg {
    width: 16px;
    height: 16px;
    fill: #2563eb;
}

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

.entry-content {
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.entry-content p {
    margin-bottom: 22px;
}

.entry-content h2 {
    font-size: 32px;
    color: #111827;
    margin: 50px 0 18px;
}

.entry-content h3 {
    font-size: 25px;
    color: #111827;
    margin: 40px 0 15px;
}

.entry-content h4 {
    font-size: 22px;
    margin: 35px 0 15px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0 25px 25px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    text-decoration-thickness: 2px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.entry-content blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    border-left: 5px solid #2563eb;
    background: #eff6ff;
    font-style: italic;
    border-radius: 10px;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid #e5e7eb;
    padding: 14px;
}

.entry-content table th {
    background: #2563eb;
    color: #fff;
}

/* ===========================
   TOC
=========================== */

.toc {
    padding: 25px;
}

.toc h2 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #111827;
}

.toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc li {
    margin-bottom: 7px;
    line-height: 1.5;
}

.toc li.h3 {
    padding-left: 18px;
}

.toc a {
    color: #4b5563;
    text-decoration: none;
    transition: .3s;
}

.toc a:hover {
    color: #2563eb;
}

/* ===========================
   TAGS
=========================== */

.blog-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.blog-tags h4 {
    font-size: 22px;
    margin-bottom: 18px;
}

.blog-tags a {
    display: inline-block;
    margin: 6px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 30px;
    background: #eff6ff;
    color: #2563eb;
    text-decoration: none;
    transition: .3s;
}

.blog-tags a:hover {
    background: #2563eb;
    color: #fff;
}

/* ===========================
   POST NAVIGATION
=========================== */

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #e5e7eb;
}

.post-navigation>div {
    flex: 1;
}

.post-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    transition: .3s;
}

.post-navigation a:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.post-navigation svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.blog-contact{
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 15px;
    background: #2563eb3d;
}
.blog-contact .hero-btn-group{
    justify-content: center;
}
.blog-contact h3{
    margin: 0;
    font-size: 22px;
    text-align: center;
}
.blog-contact p{
    font-size: 14px;
    text-align: center;
}
#st-1 .st-btn > img {
    margin: 0 !important;
}
/* News Landing  */
.news-laptop img{
    width: 100%;
}
.news-hero-bg{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: unset !important;
    z-index: -1;
    opacity: 0.5;
}
.trusted-news{
    padding: 30px 0;
    background: var(--bg-surface);
}
.trusted-news-title{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
}
.trusted-news-brands{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.news-brand {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 15px;
    box-sizing: border-box;
}

/* Logo */
.news-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}
.news-six-card .why-card{
    padding: 15px;
}
.news-six-card .why-card svg{
    margin-top: 15px;
}
.news-six-card .why-card h3{
    font-size: 18px;
    /* color: var(--color-primary); */
    margin-top: 15px;
}
.news-six-card .why-card  p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}
.client-value{
    border-radius: var(--radius-lg);
    background-image: linear-gradient(90deg, rgb(32, 58, 255) 0%, rgb(192, 0, 255) 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.cv-item div{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.cv-item div b{
    font-size: 25px;
    color: #fff;
}
.cv-item p{
    color: #fff;
    font-size: 14px;
    margin: 0;
}
.news-recent{
    background: var(--bg-surface);
}
/* .wp-block-code{
    text-wrap: auto;
    background: #232323;
    color: #ffffffe3;
} */
.wp-block-code {
    position: relative;
    margin: 30px 0;
    padding: 58px 24px 24px;

    background: #1d1d1f;
    border: 1px solid #38383a;
    border-radius: 18px;

    overflow-x: auto;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Apple Dark Mode Top Bar */
.wp-block-code::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 42px;

    box-sizing: border-box;

    background: #2c2c2e;
    border-bottom: 1px solid #3a3a3c;
    border-radius: 18px 18px 0 0;

    /* macOS traffic lights */
    background-image:
        radial-gradient(
            circle at 22px 21px,
            #ff5f57 0 6px,
            transparent 6.5px
        ),
        radial-gradient(
            circle at 42px 21px,
            #febc2e 0 6px,
            transparent 6.5px
        ),
        radial-gradient(
            circle at 62px 21px,
            #28c840 0 6px,
            transparent 6.5px
        );
}

/* Code */
.wp-block-code code {
    display: block;
    margin: 0;
    padding: 0;

    background: transparent;

    color: #f5f5f7;

    font-family:
        "SFMono-Regular",
        "SF Mono",
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 14px;
    line-height: 1.8;

    white-space: pre;
}

/* Scrollbar */
.wp-block-code::-webkit-scrollbar {
    height: 6px;
}

.wp-block-code::-webkit-scrollbar-track {
    background: transparent;
}

.wp-block-code::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.wp-block-code::-webkit-scrollbar-thumb:hover {
    background: #666;
}
.wp-caption{
	width: 100% !important;
}

/* Mobile */
@media (max-width: 768px) {

    .wp-block-code {
        padding: 54px 18px 20px;
        border-radius: 15px;
    }

    .wp-block-code::before {
        border-radius: 15px 15px 0 0;
    }

    .wp-block-code code {
        font-size: 13px;
    }
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b45017;
    color: #000000;
    border-radius: 10px;
    font-size: 14px;
    border-width: 1px;
}
/* 
NEXT WORK:

side menu desktop and mobile
responsive css
contact us
about us
home page icons update
home page profolio update

https://demo.awaikenthemes.com/fexora/about-us/
 */
