.header-logo img {
    width: 120px;
}
.header-layout2 .sticky .menu-area {
    background-color: #000000e6;
    width: 100%;
}
.header-layout2 .menu-area {
    background: transparent;
    padding: 13px 0;
    width: 100%;
}
.cyber-stats {
    background: linear-gradient(120deg, #020b2d, #031a4a, #02010a);
    padding: 100px 20px;
    color: #fff;
}

.cyber-stats .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 50px;
    align-items: center;
}

.cyber-stats h2 {
    font-size: 44px;
    line-height: 1.2;
}

.cyber-stats h2 span {
    color: #1e90ff;
}

.cyber-stats p {
    color: #cbd5f5;
    font-size: 16px;
}

/* Divider */
.divider {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(#1e90ff, transparent);
}

.divider span {
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 3px;
    color: #6da8ff;
    background: #020b2d;
    padding: 10px 0;
    z-index: 1;
}

.stat-item {
    margin-bottom: 35px;
}

.progress {
    height: 41px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.progress span {
        font-size: 18px;
    height: 100%;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1e90ff, #00c6ff);
    border-radius: 30px;
    font-weight: 700;
    transition: width 2s ease;
}

/* Mobile */
@media (max-width: 992px) {
    .cyber-stats .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .divider {
        display: none;
    }
}
.gr-text-aurora {
    background: -webkit-linear-gradient(120deg, white 5%, #0099ff 40%, #0099ff 55%, #0079FF 70%, #0065CC);
    background: linear-gradient(120deg, white 5%, #0099ff 40%, #0099ff 55%, #0079FF 70%, #0065CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gr-text-aurora2 {
    background: -webkit-linear-gradient(120deg, white 5%, #0099ff 40%, #0099ff 55%, #0079FF 70%);
    background: linear-gradient(120deg, white 15%, #0099ff 70%, #0079FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitles{
    font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 4px;
    color: #FFFFFF9E;
}
ol {
    list-style-type: decimal;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.service-card {
       
   
    height: 217px;
}
.trusted-section {
  background:linear-gradient(120deg, #020b2d, #031a4a, #02010a);
  padding: 100px 0;
  color: #fff;
}

.trusted-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
}

.trusted-title span {
  color: #7db6ff;
}
span.customtext {
    font-size: 18px;
}
.trusted-text {
  margin-top: 20px;
    font-size: 20px;
    max-width: 300px;
    color: #FFFFFFCF;
    font-weight: 600;
}

.trusted-card {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.trusted-card .brand {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trusted-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFFCF;
}

.trusted-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #7db6ff;
  text-decoration: none;
  font-weight: 500;
}

.trusted-card a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .trusted-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .trusted-section {
    padding: 70px 0;
  }

  .trusted-title {
    font-size: 36px;
  }

  .trusted-text {
    max-width: 100%;
  }
}


/* ===== Main Card ===== */
.case-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.case-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 20px 0px 0px;
}

/* Image */
.case-image img {
    width: 100%;
    max-width: 420px;
}

/* Content */
.case-content h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}
.case-content p {
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: #ffffff;
    line-height: 1.75;
    text-align: center;
}

.case-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.case-features p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Button */
.case-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 30px;
    background: #eef0f3;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .case-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .case-features {
        grid-template-columns: 1fr;
    }

    .case-image img {
        margin: auto;
    }
}
span.pluseprocess {
    font-size: 24px;
}
/*.counter-card.style2 img {
    border: 1px solid #97aaff;
    border-radius: 17px;
}*/
.brand-strip {
    display: flex;
    gap: 30px;
    background: #0e1e60;
    padding: 10px 30px;
    border-radius: 50px;
    overflow-x: auto;
        justify-content: space-around;
}
.service-card ol li{
  color: #fff;
}
.brand-strip h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px;
}
.brand-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.brand-tab.active {
    opacity: 1;
    background-color: #5e7cff;
    padding: 10px 22px;
    border-radius: 20px;
}

.case-content ul li {
    color: #fff;
    font-size: 17px;
}
.brand-tab img {
    height: 28px;
}

/* Tab Content */
.tab-content {
    display: none;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tab-content.active {
    display: grid;
}
.case-content h2 {
    font-size: 22px;
    line-height: 32px;
   text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Container */
.portfolio {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  background: rgba(0,180,255,0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
}

.header h1 {
  font-size: 36px;
  font-weight: 600;
}

.header h1 span {
  font-style: italic;
  font-weight: 300;
}

/* Grid */
.content {
      display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 53px;

}

/* Feature box */
.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.icon {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Center card */
.center-card {
  background: linear-gradient(145deg, #0d162b, #081020);
  border-radius: 20px;

  box-shadow: 0 0 40px rgba(0,180,255,0.25);
  text-align: center;
}

.center-card img {
  width: 100%;
  max-width: 260px;
}
.check-list li {
    font-size: 15px !important;
    font-family: var(--body-font);
    margin-bottom: 11px font-size: 18px;
   line-height: 30px !important; 
}
.price-card .box-title {
    font-size: 20px  !important;
    font-weight: 600;
    margin-bottom: -0.3em;
}
.price-card {
    padding: 32px 15px   !important;
    font-weight: 600;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    }
/* Responsive */
@media (max-width: 992px) {
  .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature {
    justify-content: center;
    text-align: left;
  }
}


.feature ul {
  list-style: none;
  padding: 0;
}

.feature ul li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #cfd6e4;
}
.feature-area-1 ul li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #cfd6e4;
  list-style-type: none;
}
ul {
    list-style-type: none;
    padding: 0px;
}
.space110{
    padding: 200px 0px 100px;
}
.feature ul li::before ,
.feature-area-1 ul li::before{
   content: "";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  background: linear-gradient(180deg, #00b4ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.our-location {
    position: relative;
    background-color: #2A2E49;
    background-color: #1e1d28;
    padding: 200px 0 200px 0;
}
.our-location .globe-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 0;
   
}
.our-location .globe-vector img {
    width: 100%;
    height: 100%;
    
    
}
.our-location .location-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 0;
    /* align-items: flex-start; */
}
.our-location .location-box {
    position: relative;
    flex: 0 0 19%;
    width: 19%;
    border-radius: 12px;
    border: 2px solid #09062a;
    background-color: #2a2e49;
    background-color: #09062a;
}
.our-location .location-heading {
    padding: 12px 30px;
    color: #fff;
    font-family:"Kumbh Sans", serif;
    font-weight: 400;
    border-bottom: 2px solid #fff;
    font-size: 16px;
    line-height: 24px;
}
.our-location .location-meta-wrap {
    padding: 15px 13px;
}
.our-location .lt-meta:not(:last-child) {
    margin-bottom: 36px;
}
.our-location .lt-meta p,
.our-location .lt-meta p a {
    color: #fff;
}
.our-location .lt-meta p {
    font-size: 14px;
    line-height: 26px;
    font-family:"Kumbh Sans", serif;
    font-weight: 300;
}
video {
    max-width: 100%;
    height: auto;
    display: block;
}
.our-location .lt-meta p a {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}
.our-location .location-meta p {
    color: rgba(255, 255, 255, 0.9);
}
.our-location .contact-meta {
    border-bottom: 1px solid #707070;
    padding-bottom: 20px;
}
.our-location .contact-meta:not(:last-child) {
    margin-bottom: 20px;
}
.our-location .contact-meta:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.our-location .contact-meta:first-child {
    height: 143px;
}


/* RESPONSIVE STYLES */


@media only screen and (max-width :1599px) and (min-width: 1280px) {
    
    .our-location .contact-meta:first-child {
        height: 143px;
    }
    
}

@media only screen and (max-width :1280px){

  
    
   

    .our-location .location-meta-wrap {
        padding: 20px;
    }
    .our-location .lt-meta p br {
        display: none;
    }

   
}

@media only screen and (max-width :1279px) and (min-width: 1024px) {
    
}

@media only screen and (max-width :1100px) and (min-width: 1024px) {
    
    .our-location .contact-meta:first-child {
        height: 75px;
    }
    
}

@media only screen and (max-width :1023px){
    
 
    
}

/*----------------------------- Media 1024 -------------------------------*/
@media only screen and (max-width :1100px){
    
  
    .our-location {
        padding-top: 300px;
    }
    .our-location .location-wrapper {
        max-width: 85%;
    }
    .our-location .location-box {
        flex-basis: 48%;
        width: 48%;
    }
    
   
}

@media only screen and (max-width :1100px) and (min-width: 1000px) {
    
}

/*----------------------------- Media 768 -------------------------------*/
@media only screen and (max-width:999px){

 

    .our-location {
        padding: 140px 0;
    }

    
}

/*----------------------------- Media Tab -------------------------------*/
@media only screen and (max-width:767px){

}

@media only screen and (max-width:612px){
    
    .our-location .contact-meta:first-child {
        height: 120px;
    }
    
}

@media only screen and (max-width:576px){
    ]
    .our-location {
        padding: 60px 0;
    }
    .our-location .location-box {
        flex-basis: 100%;
        width: 100%;
    }
    .our-location .contact-meta:first-child {
        height: auto;
    }
    .our-location .globe-vector img {
        height: 100%;
    }

}
.ot-widget-contact .media-body{
    gap:0 !important;
}

.brand-card img {
    width: 70%;
}
.box-thumb img {
    width: 60px;
    background-color: #15151d;
}


/* .feature-card-247 {
    height: 247px;
}
.feature-card-siem {
    height: 395px !important;
}
.feature-card-siem-280 {
    height: 280px !important;
}
.feature-card-siem-ai-secure-140 {
    height: 150px !important;
}
.feature-card-siem-ai-secure-intrinsic-protect-130{
    height: 230px !important;
    align-items: center;
}
.feature-card-intrinsic-protect-198px {
    height: 198px !important;
 
} */




/* FONT (closest to original enterprise look) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.concierge-model {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #071426, #020b18);
  padding: 110px 30px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Diagonal background lines */
.concierge-model::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 2px,
    transparent 2px,
    transparent 14px
  ); */
  pointer-events: none;
}

.model-wrapper {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* LEFT & RIGHT PANELS */
.model-col {
  padding: 42px;
  border: 1px solid transparent;
  transition: all .4s ease;
}

.model-col.left {
  border-color: #71f883;
}

.model-col.right {
  border-color: #00b4ff;
}

.model-col:hover {
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* TITLES */
.section-title {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 28px;
}
.orange { color: #71f883; }
.blue { color: #00b4ff; }

/* LIST */
.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
  opacity: .9;
}

.content-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 10px;
}

/* CENTER */
.model-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center image */
.center-circle img {
  width: 110px;
  z-index: 3;
}
.section-titlecenter {
    display: flex;
    align-items: center;
}
.section-titlecenter span {
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 32px;
        font-weight: 700;
        text-align: center;
}
/* Static circle */
.static-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Orbit container rotates */
.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateDots 6s linear infinite;
  z-index: 2;
}

/* Common dot style */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Blue dot */
.blue-dot {
  background: #00b4ff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Orange dot */
.orange-dot {
  background: #71f883;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Rotate ONLY dots */
@keyframes rotateDots {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* CONNECTORS */
.connector {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, transparent, #71f883);
  animation: draw 1.8s ease forwards;
}

.left-connector {
  width: 133px;
  left: -118px;
  top: 50%;
}

.right-connector {
  width: 133px;
  right: -118px;
  top: 50%;
  background: linear-gradient(to left, transparent, #00b4ff);
}

/* ANIMATIONS */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,180,255,.5); }
  70% { box-shadow: 0 0 0 22px rgba(0,180,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,255,0); }
}

@keyframes draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .model-wrapper {
    grid-template-columns: 1fr;
  }

  .connector {
    display: none;
  }

  .model-center {
    margin: 50px 0;
  }
}



.why-intrinsic {
  background: linear-gradient(135deg, #061b3a, #000000)
  padding: 90px 0;
  color: #ffffff;
}

.section-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-intrinsic p {
  font-size: 16px;
  line-height: 1.8;
  color: #d6e2ff;
  margin-bottom: 15px;
  text-align: justify;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-label {
  font-size: 14px;
  color: #9db7ff;
  display: block;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .section-heading {
    font-size: 32px;
  }
}

.heightai-360{
    height: 360px;
}