/* @font-face {
    font-family: 'Segoe Serif Banner';
    src: url('../fonts/SegoeSerif/SegoeSerifBannerItalic.woff2') format('woff2'),
        url('../fonts/SegoeSerif/SegoeSerifBannerItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe Serif Banner';
    src: url('../fonts/SegoeSerif/SegoeSerifBanner.woff2') format('woff2'),
        url('../fonts/SegoeSerif/SegoeSerifBanner.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */



/* ==========================================================================
   GLOBAL CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */

:root {
  /* Colors */
  --primary-color: #2d211b;
  --secondary-color: #222;
  --text-color-primary: #2d3d49;
  --text-color-secondary: #4a5568;
  --light-blue-bg: #eaf3f9;
  --light-blue-bg-100: #DEF3FF;
  --light-blue-bg-200: #C1E8FE;
  --light-blue-bg-300: #D9F1FF;
  --light-blue-bg-alt: #def0fa;
  --card-bg: #d1e9f9;
  --section-bg-color: #d1e9f9;
  --quote-mark-color: #2e3d49;
  --separator-color: #a0a0a0;
  --white: #fff;
  --warm-white: #FFF8F3;


  --black: #000;
  --gray-light: #ccc;
  --gray-medium: #888;
  --gray-dark: #444;
  --brown-black: #2d231e;
  --dark-blue: #273653;
  --link-blue : #007AFF;
  
  /* Typography */
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-segoe: 'Segoe UI', Arial, sans-serif;

  --heading-font: 'SegoeSerif_VF', serif;
  --body-font: 'Segoe UI', Arial, sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 60px;
  --spacing-huge: 80px;
  
  /* Border Radius */
  --border-radius-sm: 2px;
  --border-radius-md: 4px;
  --border-radius-lg: 6px;
  --border-radius-xl: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  
  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 24px;
}

body{
  width: 100%;
  max-width: 100%;
  font-family: var(--body-font), -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  sans-serif;
  color: var(--brown-black) !important;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* -moz-font-feature-settings: 'liga','kern'; */
  overflow-x: hidden;
  /* background-color: var(--color-grey); */
}

@media(min-width: 992px){
  html, body {
      overflow-x: clip !important;
  }
}

a,
body p{
    font-family: var(--body-font) !important;
    color: inherit;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
  line-height: 130% !important;
  font-weight: 400 !important;
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--heading-font) !important;
}
h1,.h1{
  font-size:  70px !important;  
}
h2,.h2{
  font-size: 52px !important;  
}
h3,.h3{
  font-size: 40px !important;  
}
h4,.h4{
  font-size: 35px !important;  
}
body h5, body .h5{
  font-size: 24px !important;  
  margin-top: inherit !important;
  color: inherit !important;
  display: block !important;
}
h6,.h6{
  font-size: 20px !important;   
}
@media(max-width: 1299px){
  h1,.h1{
    font-size:  52px !important;  
  }
  h2,.h2,.story-intro-h1{
    font-size: 40px !important;  
  }
  h3,.h3{
    font-size: 35px !important;  
  }
  h4,.h4{
    font-size: 30px !important;  
  }
 
}
@media(max-width: 991px){
  h1,.h1{
    font-size:  35px !important;  
  }
  h2,.h2,.story-intro-h1{
    font-size: 24px !important;  
  }
  h3,.h3{
    font-size: 20px !important;  
  }
  h4,.h4{
    font-size: 18px !important;  
  }
  
  h6,.h6{
    font-size: 16px !important;   
  }
}
/* ==========================================================================
   BASE STYLES & RESETS
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*Container style start*/
.container{
  width: 100%;
  max-width: calc(1600px + 10%);
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}

/* @media(min-width:768px){
  .container{ padding: 0 48px; }
}
@media(min-width:992px){
  .container{ max-width: 100%; padding: 0 5%;}
}

@media(min-width:1700px){
  .container{ max-width: 1620px; padding: 0 20px;}
} */
/*Container style end*/

/* arrow heading wrap */
.arrow-link:hover .arrow-heading-wrap h2{
  text-decoration: underline;
  text-underline-offset: 2px;
}
.arrow-heading-wrap svg{
  flex-shrink: 0;
}
.arrow-heading-wrap svg,
.arrow-heading-wrap svg path{
  transition: all 0.3s ease;
}
.arrow-heading-wrap:hover svg{
  background-color: var(--brown-black);
}
.arrow-heading-wrap:hover svg path{
  stroke: var(--warm-white);
}


@media(max-width: 767px){

  .arrow-heading-wrap svg{
    width: 44px;
    height: 44px;
  }
}



/* wysiwyg style */

.wysiwyg-content p,
.wysiwyg-content ul li,
.wysiwyg-content ol li{
    font-size: 16px;
    color: inherit;
}
.wysiwyg-content p{
  margin-top: 0;
}
.wysiwyg-content p:not(:last-of-type){
    margin-bottom: 20px;
}
.wysiwyg-content p:last-of-type{
  margin-bottom: 0;
}
.wysiwyg-content li a,
.wysiwyg-content p a{
    color: var(--brown-black);
    text-decoration: underline;
}
.wysiwyg-content li a:hover,
.wysiwyg-content p a:hover{
    text-decoration: none;
}
.wysiwyg-content figure:not(:first-of-type){
    margin: 30px 0;
}
.wysiwyg-content figure:first-of-type{
    margin-top: 0;
}
.wysiwyg-content figure img{
    width: 100%;
    object-fit: cover;
}

.wysiwyg-content ul,
.wysiwyg-content ol{
    margin: 30px 0;
    padding-left: 30px;
}
.wysiwyg-content ul:last-of-type,
.wysiwyg-content ol:last-of-type{
    margin-bottom: 0;
}
.comments-area ol,
.wysiwyg-content ol{
    padding-left: 22px;
}

.wysiwyg-content li{
    margin-bottom: 12px;
}
.wysiwyg-content ul li{
    position: relative;
    list-style-type: disc;
}

.wysiwyg-content table th,
.wysiwyg-content table td{
    border-top: none;
}
.wysiwyg-content table th:first-of-type,
.wysiwyg-content table td:first-of-type{
    border-left: none;
}
.wysiwyg-content table th:last-of-type,
.wysiwyg-content table td:last-of-type{
    border-right: none;
}
.wysiwyg-content .wp-caption{
  max-width: fit-content;
  margin-block: 40px;
}
.wysiwyg-content .wp-caption .wp-caption-text{
  margin-top: 12px;
  font-style: italic;
}



.cta-button{
  border: 2px solid var(--brown-black);
  color: var(--brown-black);
  padding: 18px 24px;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--font-serif);
  transition: all 0.3s ease;
  justify-content: space-between;
}
.cta-button.with-icon svg{
  width: 24px;
}
.cta-button:hover{
  background-color: var(--brown-black);
  color: var(--warm-white);
}
.cta-button.with-icon svg path{
  transition: all 0.3s ease;

}
.cta-button.with-icon:hover svg path{
  fill: currentColor;
} 



/* swiper-buttons Navigation Arrows */
.swiper-buttons{
  width: 100%;
  display: flex ;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}
.no-navigation .swiper-buttons{
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 0 ;
  transition: all 0.3s ease ;
  background: transparent;
  border: 2px solid var(--brown-black);
  color: var(--brown-black);
  position: relative;
  top: inherit;
  margin: 0;
  left: inherit;
  right: inherit;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 20px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{  
  background: var(--brown-black);  
  color: var(--warm-white);
}
.swiper-button-disabled{
  background: transparent;
  color: var(--brown-black);
}


/* ==========================================================================
BANNER SECTION START
========================================================================== */
.ms-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #fff 0%, #DEF3FF 100%);  
  padding: 40px 0;
}

.ms-banner .content-wrap{
  display: flex;
  padding-bottom: 40px;
  text-align: center;
  max-width: 884px;
  margin: 0 auto;
  flex-direction: column;
  row-gap: 13px;
}
.ms-banner .content-wrap p{
  font-size: 24px;
  margin: 0;
}
.social-share{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.social-share .social-links{
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-share a{
  /* color: var(--brown-black); */
  color: var(--text-color)

}
.social-share .social-links img{
  width: 20px;
  height: 20px;
}
.social-share .social-links .icon-linkedin path,
.social-share .social-links .icon-x path{
  fill: currentColor;
}
.social-share .social-links .icon-blog path{
  stroke: currentColor;
}


.ms-banner .social-share{
 margin-top: 20px;
}

.image-content-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 2px solid #000;
}
.ms-banner-image-wrapper{
  padding-bottom: 50%;
  position: relative;
  height:100%;
  overflow: hidden;
}
.ms-banner-image-wrapper img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-content-wrap .image-content-text{
  padding: 40px 0;
  padding-left: 40px;
      display: flex ;
    align-items: flex-start;
    min-height: 371px;
    flex-direction: column;
    justify-content: center;
    row-gap: 35px;
}
.image-content-wrap .image-content-text .hero-title{
  margin: 0;
  padding-right: 30px;
    line-height: 130% !important;
}
.ms-banner .hero-subtitle {
  font-size: 20px;
  color: var(--brown-black);
  margin: 0;
  font-weight: 400;
  font-family: var(--body-font);
  line-height: 1.4;
}

.hero-arrow svg {
  width: 64px;
  height: 64px;
  display: block;
}

/* below old style */


.ms-banner-caption {
  width: 100%;
  padding: 10px 0 ;
  color: var(--brown-black);
  font-size: 14px;
  text-align: right;
}

.ms-banner-caption .caption-main {
  font-weight: 600;
}

.ms-banner-caption .caption-separator {
  margin: 0 var(--spacing-xs);
}


.hero-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
  max-width: 100%;
  border-top: 2px solid var(--brown-black);
  margin-top: 20px;
}
.hero-header-row .arrow-heading-wrap{
  margin-bottom: 20px;
}
.hero-header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  row-gap: 10px;
}




@media(max-width: 991px){
  .hero-arrow svg {
    width: 40px;
    height: 40px;
  }
  .image-content-wrap{
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .image-content-wrap .image-content-text{
    padding-left: 0;
    min-height: inherit;
  }
}

@media(max-width: 767px){
  .ms-banner .content-wrap{
    row-gap: 6px;
  }
  .image-content-wrap .image-content-text .hero-title{
    font-size: 30px !important;
    padding-right: 0;
  }
  .ms-banner .content-wrap p{
    font-size: 16px;
  }
  .ms-banner .social-share{
    margin-top: 10px;
  }
  .ms-banner .hero-subtitle{
    font-size: 16px;
  }
  .hero-header-text .arrow-heading-wrap svg{
    display: none;
  }

  .image-content-wrap .image-content-text{
    row-gap: 25px;
    padding: 0;
    padding-top: 24px;
  }
}


/* ==========================================================================
BANNER SECTION end
========================================================================== */

/* ==========================================================================
HIGHLIGHT BOX COMPONENT
========================================================================== */

.highlight-box {
  background-color: var(--light-blue-bg);
  padding: var(--spacing-xl) var(--spacing-md);
}

.highlight-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-sm);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.highlight-text h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  color: var(--brown-black);
  line-height: 1.2;
}

.highlight-text p {
  font-size: 16px;
  color: var(--brown-black);
  margin-top: var(--spacing-xs);
}

.highlight-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--container-max-width);
  margin: 0 auto var(--spacing-lg) auto;
}

.highlight-main-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0 0 var(--spacing-xs) 0;
  text-align: left;
  line-height: 1.1;
}

.highlight-sub-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  text-align: left;
}

.highlight-arrow {
  display: inline-block;
  margin-top: var(--spacing-xs);
  margin-left: var(--spacing-lg);
  transition: var(--transition-fast);
}

.highlight-arrow:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   PARTNERSHIPS SECTION
   ========================================================================== */

.partnerships-section {
  background: #DEF3FF;
  padding: 60px 0;
  overflow-x: hidden;
  position: relative;
}
.ms-banner + .partnerships-section{
  padding-top: 20px;
}

.partnerships-section h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 767px) {
    .partnerships-section {
        padding: 0;
    }
    .partnerships-slider-wrapper{
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   TABS COMPONENT
   ========================================================================== */

.partnerships-tabs {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: flex-start;
}

.partnerships-tabs .tab {
  padding: 10px var(--spacing-md);
  border: 2px solid var(--primary-color);
  background: none;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  font-family: var(--body-font);
  font-size: 16px;
}

.partnerships-tabs .tab.active,
.partnerships-tabs .tab:hover {
  background: var(--primary-color);
  color: var(--white);
}

.filter-heading-wrap h2{
  font-size: 20px !important;
  font-family: var(--body-font) !important;
}

/* ==========================================================================
PARTNERSHIP CARDS
========================================================================== */
.swiper-slide{
  height: auto;  
}
.partnerships-slider{
  overflow: visible;
}
/* ==========================================================================
SWIPER PAGINATION & NAVIGATION
========================================================================== */


.partnerships-slider-wrapper .swiper-pagination {
  width: auto ;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  bottom: inherit;
  left: inherit;
  transform: none;
  flex-wrap: wrap;
}

.partnerships-slider-wrapper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: var(--gray-light);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partnerships-slider-wrapper .swiper-pagination-bullet:hover,
.partnerships-slider-wrapper .swiper-pagination-bullet-active {
  background: var(--brown-black) ;
}


.partnerships-slider .swiper-wrapper{
  height: auto;
}
/* .partnerships-slider .swiper-slide {
  padding-right: 20px;
} */


.partnership-card {
  /* flex: 0 0 auto; */
  flex-shrink: 0;
  width: 100%;
  /* width: 475px;
  max-width: 475px; */
  background: var(--card-bg);
  padding: 20px;
  display: block;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: 0.3s ease;
  height: 100%;
}
.partnership-image{
  padding-bottom: 56.1%;
  position: relative;
  margin-bottom: var(--spacing-sm);
}
.partnership-image img {
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.partnership-title {
  font-size: 24px;
  font-weight: 400;
	font-family: var(--font-sans);
}

.partnership-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  font-family: var(--body-font);
}

.partnerships-slider-wrapper .swiper-slide{
  width: 460px;
  margin-right: 40px;
}

/* Hover effect */
.partnership-card:hover {
	background-color: #ACE2FF;
  text-decoration-thickness: 2px;
}
.partnership-card:hover .partnership-card-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media(max-width: 767px){
  .filter-heading-wrap h2{
    font-size: 16px !important;
  }
   .partnerships-section .container {    
    padding: 0 20px;
  }
  
  
  .partnerships-slider-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  }
  .partnerships-tabs {
    gap: 12px;
  }
  
  .partnerships-tabs .tab {
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid var(--primary-color);
    font-family: var(--font-sans);
  }
  
  .partnerships-grid {
    gap: 15px;
  }
  
  .partnership-card {
    padding: 18px;
  }
  
}

/* ==========================================================================
   SCROLL CONTROLS
   ========================================================================== */

.scroll-btn {
  display: none;
}

.bottom-scroll-controls {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 0;
  right: var(--spacing-xxl);
  z-index: 10;
}

.scroll-btn-rect {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn-rect.left {
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  background:transparent;
}

.scroll-btn-rect.right {
  background-color: var(--primary-color);
}

.scroll-btn-rect.left svg path {
  stroke: var(--primary-color);
}

.scroll-btn-rect.right svg path {
  stroke: var(--white);
}

.scroll-btn-rect svg {
  width: 20px;
  height: 20px;
}


@media(max-width: 767px){
   .partnership-card {
    flex: 0 0 100%;
    display: block;
  }
  .bottom-scroll-controls {
    right: 0;
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================================================
   CUSTOM HEADER COMPONENTS
   ========================================================================== */

.custom-header-box {
  background: var(--light-blue-bg-alt);
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1248px;
  min-height: 125px;
}

.custom-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 var(--spacing-xs) 0 0;
}

.custom-header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.custom-header-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

.custom-header-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin: 0;
  margin-top: 0.25em;
  font-weight: 400;
  line-height: 1.2;
}

.custom-header-arrow {
  display: flex;
  align-items: flex-start;
  margin-top: var(--spacing-xs);
  margin-left: var(--spacing-md);
  text-decoration: none;
  transition: var(--transition-fast);
}

.custom-header-arrow:hover {
  transform: scale(1.1);
}

.custom-header-arrow svg {
  width: 48px;
  height: 48px;
  display: block;
}

/* ==========================================================================
   HERO HEADER COMPONENT
   ========================================================================== */

/* ==========================================================================
   CYBER THREATS SECTION (QUOTES)
   ========================================================================== */

.cyber-threats-section {
  background-color: var(--light-blue-bg-200);
  padding: var(--spacing-huge) 0;
  font-family: var(--font-sans);
}

.cyber-threats-section .section-header {
  border-top: 2px solid var(--text-color-primary);
  padding-top: 20px;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.cyber-threats-section .category-info {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.cyber-threats-section .category-info .separator {
  color: var(--separator-color);
  margin: 0 var(--spacing-xs);
}
.arrow-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.arrow-heading-wrap .main-title {
  font-family: var(--heading-font);
  font-size: 53px;
  font-weight: 400;
  line-height: 140% !important;
  text-underline-offset: 3px;
  margin: 0;
}

.arrow-heading-wrap .arrow-link {
  color: var(--text-color-primary);
  transition: var(--transition-smooth);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arrow-heading-wrap .arrow-link svg {
  width: 100%;
  height: 100%;
}

.cyber-threats-section .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxxl);
  align-items: flex-start;
}

.cyber-threats-section .quote-area {
  position: relative;
  padding: 80px 0 20px;
}

.cyber-threats-section .quote-area blockquote {
  margin: 0;
  position: relative;
}

.cyber-threats-section .quote-area::before,
.cyber-threats-section .quote-area::after {
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
}

.cyber-threats-section .quote-area::before {
  background-image: url('../images/quote-start.svg');
  top: 0;
  left: 0px;
  width: 100px;
  height: 80px;
}

.cyber-threats-section .quote-area::after {
  background-image: url('../images/quote-end.svg');
    width: 80px;
    height: 60px;
    bottom: 0;
    right: 45px;
}

.cyber-threats-section .quote-area blockquote p {
  font-size: 1.75rem;
  line-height: 1.5;
  margin: 0 0 var(--spacing-lg) 0;
}

.cyber-threats-section .quote-area cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  max-width: 520px;
  padding-right: 80px;
}

.cyber-threats-section .author-name {
  font-size: 24px;
  margin-bottom: 13px;
}

.cyber-threats-section .author-title {
  font-size: 16px;
  color: var(--brown-black);
  line-height: 1.4;
}
.cyber-threats-section .image-area{
  padding-top: 100px;
}
.cyber-threats-section .image-area img {
  width: 100%;
  height: auto;
  display: block;
}

.cyber-threats-section h2.serifquote {
  line-height: 1.5 !important;
  font-size: 35px !important;
  margin: 0;
  color: var(--brown-black);
  padding: 0;
}

@media(max-width: 1299px){
  .arrow-heading-wrap .main-title{
    font-size: 40px;
  }
  .cyber-threats-section h2.serifquote{
    line-height: 1.3;
  }
  .cyber-threats-section .quote-area::after{
    right: 0;
  }
}
@media(max-width: 1199px){
  .arrow-heading-wrap .main-title{
    font-size: 40px;
  }
 
  .cyber-threats-section .content-grid .image-area{
    padding-top: 90px;
  }
  
}
@media(max-width: 991px){
  .cyber-threats-section .content-grid{
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
   .cyber-threats-section .content-grid .image-area{
    padding-top:0px;
  }
  .arrow-heading-wrap{
    align-items: flex-start;
  }
  
}
@media(max-width: 767px){
  .cyber-threats-section .arrow-heading-wrap svg{
    display: none;
  }
  .cyber-threats-section h2.serifquote{
    font-size: 24px !important;
  }
  .cyber-threats-section .quote-area cite{
    padding-right: 0;
    max-width: 100%;
  }
  .cyber-threats-section .quote-area{
    padding-bottom: 80px;
  }
  .arrow-heading-wrap .arrow-link{
    width: 38px;
    height: 38px;
  }
  .arrow-heading-wrap .main-title{
    font-size: 24px;
    padding-right: 0;
  }
 
}
/* ==========================================================================
AI PRINCIPLES SECTION
========================================================================== */

.ai-principles-section {
  background-color: var(--light-blue-bg-100);
  padding: var(--spacing-huge) 0;
}

.ai-principles-section .section-header {
  border-top: 2px solid var(--text-color-primary);
  padding-top: 20px;
  margin-bottom: 20px;
  position: relative;
}



.ai-principles-section .category-info{
  font-size: 16px;
  margin-bottom: 20px;
} 


.ai-principles-section .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xxxl);
  align-items: start;
  padding: 60px 0;
}

.content-grid .left-column .image-wrapper {
  margin-bottom: var(--spacing-md);
}

.content-grid .left-column .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.content-grid .left-column .image-caption {
  font-size: 24px;
  line-height: 1.5;
  color: var(--brown-black);
  margin: 0;
  font-family: var(--body-font);
}

.content-grid .right-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.content-grid .stat-number {
  font-family: var(--heading-font);
  font-size: 52px;
  color: var(--brown-black);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.content-grid .stat-description {
  font-size: 16px;
  color: var(--brown-black);
  font-family: var(--body-font);
  line-height: 150%;
  margin: 0;
  padding-top: 30px;
  border-top: 2px solid var(--brown-black);
}

.ai-principles-section .bottom-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 0;
  border-block: 2px solid var(--brown-black);
}
.ai-principles-section .bottom-content p{
  margin: 0;
  font-size: 16px;
  line-height: 150%;
  color:var(--brown-black);
}
.ai-principles-section .bottom-content .arrow-link{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.ai-principles-section .bottom-content .arrow-link svg{
  width: 100%;
  height: 100%;
}

@media(max-width: 1600px){
  .content-grid .stat-description{
    font-size: 20px;
  }
}
@media(max-width: 1299px){
  .ai-principles-section .main-title{
    font-size: 40px;
  }
  .ai-principles-section .content-grid{
    padding: 30px 0;
  }
  .content-grid .stat-number{
    font-size: 40px;
  }
}
@media(max-width: 1199px){
    
  .ai-principles-section .main-title {
    font-size: 40px;
  }
}
@media(max-width: 991px){
  .ai-principles-section .content-grid{
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 35px;
  }
  .content-grid .right-column{
    gap: 30px;
  }
  .ai-principles-section .bottom-content{
    margin-top: 40px;
  }
  .custom-select-wrapper{
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-md);
  }

  .custom-select-wrapper .select2-container {
    width: 100% !important;
  }

  .custom-select-wrapper .select2-selection--single {
    height: 40px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 0 !important;
    background-color: var(--brown-black) !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    color: var(--warm-white) !important;
    font-family: var(--font-segoe) !important;
  }

  .custom-select-wrapper .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 0 !important;
    line-height: 40px !important;
    color: var(--warm-white) !important;
  }

  .custom-select-wrapper .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 16px !important;
    width: 24px !important;

    border-color: transparent transparent var(--primary-color) transparent !important;
    border-width: 0 5px 6px 5px !important;
    background-image: url('../images/dropdown-arrow-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
  }

  .custom-select-wrapper .select2-selection__arrow b {
    display: none;
  }
  .select2-container--open .select2-selection__arrow{
    transform: rotate(180deg);
  }


  .custom-select-wrapper .select2-dropdown {
    border: 2px solid var(--primary-color) !important;
    border-top: none !important;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  }



  /* list style */
  .select2-results__option{
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    padding: 10px;
  }
  .select2-container--default .select2-results>.select2-results__options{
    padding: 12px;
  }
  .select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: var(--warm-white) !important;
    color: var(--brown-black) !important;
  }
}

@media(max-width: 767px){
  .ai-principles-section {
    padding: var(--spacing-xxxl) 0;
  }
  .ai-principles-section .arrow-heading-wrap svg{
    display: none;
  }
  .ai-principles-section .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ai-principles-section .main-title {
    font-size: 24px;
    padding-right: 0;
  }
  .content-grid .left-column .image-caption{
        font-size: 16px;
  }
  .content-grid .right-column{
    padding-inline: 15px;
  }
  .content-grid .stat-number{
    font-size: 35px;
  }
  .content-grid .stat-description{
    font-size: 16px;
    padding-top: 15px;
  }
  .ai-principles-section .bottom-content{
    margin-top: 30px;
    gap: 13px;
  }
 

  .custom-select-wrapper{
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-md);
  }

  .custom-select-wrapper .select2-container {
    width: 100% !important;
  }

  .custom-select-wrapper .select2-selection--single {
    height: 40px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 0 !important;
    background-color: var(--brown-black) !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    color: var(--warm-white) !important;
    font-family: var(--font-segoe) !important;
  }

  .custom-select-wrapper .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 0 !important;
    line-height: 40px !important;
    color: var(--warm-white) !important;
  }

  .custom-select-wrapper .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 16px !important;
    width: 24px !important;

    border-color: transparent transparent var(--primary-color) transparent !important;
    border-width: 0 5px 6px 5px !important;
    background-image: url('../images/dropdown-arrow-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
  }

  .custom-select-wrapper .select2-selection__arrow b {
    display: none;
  }
  .select2-container--open .select2-selection__arrow{
    transform: rotate(180deg);
  }


  .custom-select-wrapper .select2-dropdown {
    border: 2px solid var(--primary-color) !important;
    border-top: none !important;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  }



  /* list style */
  .select2-results__option{
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    padding: 10px;
  }
  .select2-container--default .select2-results>.select2-results__options{
    padding: 12px;
  }
  .select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: var(--warm-white) !important;
    color: var(--brown-black) !important;
  }

}
/* ==========================================================================
VIDEO SECTION START
========================================================================== */

.threat-analysis-section {
  background: #e3f3fc;
  padding: 0px 0 var(--spacing-lg);
  font-family: var(--font-segoe);
  color: var(--secondary-color);
}
.threat-analysis-section .section-heading{
  border-top: 2px solid var(--text-color-primary);
  padding-top: 20px;
  margin-bottom: 30px;
  position: relative;
}
.threat-analysis-bar {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.threat-analysis-bar .separator {
  margin: 0 var(--spacing-xs);
  color: var(--gray-medium);
}

.threat-analysis-divider {
  border: none;
  border-top: 1.5px solid var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.threat-analysis-title {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 100%;
}

.threat-analysis-image {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin-bottom: 18px;
}

.threat-analysis-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: var(--black);
}

.threat-analysis-caption {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-top: 0;
  font-family: var(--font-segoe);
}
@media(max-width: 1299px){
  .threat-analysis-title{
    font-size: 40px;
  }
}
@media(max-width: 1199px){
  .threat-analysis-title{
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .threat-analysis-image {
    padding-bottom: 75%; /* taller aspect ratio on mobile */
  }
}
/* ==========================================================================
VIDEO SECTION END
========================================================================== */


/* ==========================================================================
   UTILITY CLASSES START
   ========================================================================== */

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}



/* ==========================================================================
   RESPONSIVE DESIGN - TABLET (1024px and below)
   ========================================================================== */

@media (max-width: 1024px) {
  .main-title {
    font-size: 2.5rem;
    max-width: 80%;
  }
  
  .quote-area blockquote p {
    font-size: 1.5rem;
  }

  
  .stat-number {
    font-size: 3rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET (900px and below)
   ========================================================================== */

@media (max-width: 900px) {
  
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE LARGE (768px and below)
   ========================================================================== */

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block;
    margin-bottom: var(--spacing-md);
  }

  .mobile-only select {
    width: 100%;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 16px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-md);
  }
  
  .cyber-threats-section {
    padding: var(--spacing-xxxl) 0;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .main-title {
    font-size: 2rem;
    max-width: 100%;
    padding-right: var(--spacing-xl);
  }
  
  .quote-area {
    padding-left: 0;
  }
  
  .quote-area blockquote::before {
    top: -40px;
    left: -20px;
    font-size: 6rem;
  }
  
  .quote-area blockquote::after {
    bottom: -60px;
    right: 0;
  }
  
  
  
  .image-caption {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE MEDIUM (700px and below)
   ========================================================================== */

@media (max-width: 700px) {
  .custom-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .custom-header-arrow {
    margin-left: 0;
    margin-top: var(--spacing-sm);
  }
  
  .custom-header-title {
    font-size: 2rem;
  }
  
  .custom-header-subtitle {
    font-size: 1rem;
  }
  


  .threat-analysis-title {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE SMALL (600px and below)
   ========================================================================== */

@media (max-width: 600px) {
 


  .highlight-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .highlight-arrow {
    margin-left: 0;
    margin-top: var(--spacing-sm);
  }
  
  .highlight-main-title {
    font-size: 2rem;
  }
  
  .highlight-sub-title {
    font-size: 1.1rem;
  }
  
 
  
  .highlight-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-arrow {
    margin-top: var(--spacing-sm);
  }

  .highlight-text h2 {
    font-size: 2rem;
  }

  .highlight-text p {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
Partnership changes
========================================================================== */

/* ==========================================================================
follow-us-section start
========================================================================== */
.follow-us-section{
  background-color: var(--brown-black);
  padding: 20px 0;
  color: var(--warm-white);
}
.follow-us-section .inner-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.follow-us-section .follow-us-text{
  font-size: 20px;
  font-weight: 600;
}
.follow-us-section .follow-us-icons{
  display: flex;
  gap: 20px;
  font-size: 26px;
}
.follow-us-icons a{
  color: var(--warm-white);
  font-size: 20px;
  transition: all 0.3s ease;
}
.follow-us-icons a:hover{
  color: var(--light-blue-bg-200);
}

/* ==========================================================================
follow-us-section end
========================================================================== */


/* footer style updates */
.c-uhff{
  margin-top: 0 !important;
}
/* footer style updates end*/

/* ==========================================================================
story page section style start
========================================================================== */
.story-page-wrapper.light-theme{
  --bg-color: var(--warm-white);
  --text-color: var(--brown-black);

  /* --bg-color: var(--dark-blue);
  --text-color: var(--warm-white); */
}
.story-page-wrapper h4{
  font-size: 24px !important;
  padding-top: 15px;
  color: inherit;
}
/* story-intro-section style start */
.story-intro-section{
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 40px 0;
}
.story-intro-wrapper{
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 60px;
}
.story-intro-section .tag{
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 6px;
  display: inline-block;
}
.story-intro-section h2,.story-intro-h1{
  margin: 0;
  color: inherit !important;
}
.story-intro-right-column{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
}
.story-intro-right-column p{
  font-size: 20px;
  margin: 0;
  color: inherit !important;
}
@media(max-width: 1199px){
  .story-intro-wrapper{
    grid-template-columns: 2fr 1fr;
        gap: 40px;
  }
  .story-intro-section .tag{
  font-size: 20px;
  }
  .story-intro-right-column p{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .story-intro-wrapper{
    grid-template-columns: 1fr;
        gap: 20px;
  }
  .story-intro-right-column{
    padding-top: 0;
  }
}

@media(max-width: 767px){
  .story-intro-section h2,.story-intro-h1 {
    font-size: 35px !important;
  }
}
/* story-intro-section style end */


.featured-image-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 42.25%;
  overflow: hidden;
}
.featured-image-section .image-background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-background {
  background-color: var(--warm-white);
  /* background-image: url('https://omlwpdev.wpenginepowered.com/wp-content/uploads/2025/04/Screenshot-2025-05-23-at-22.34.27.png?id=1284');  */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  background: linear-gradient(to top, var(--bg-color), rgba(0, 0, 0, 0));
}
@media(max-width: 1199px){
  .featured-image-section{
    padding-bottom: 50%;
  }
}
@media(max-width: 991px){
  .featured-image-section{
    padding-bottom: 60%;
  }
}


/* story-content-section style start */


.outer-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  border-block: 2px solid currentColor;
  padding: 7px 0;
  transition: all 0.3s ease;
}
.outer-link .link-arrow{
  width: 30px;
  min-width: 30px;
}
.outer-link .link-arrow svg{
  /* transform: scale(1.3); */
  transition: all 0.3s ease;

}
.outer-link .link-arrow svg path{
  stroke: currentColor;
  transition: all 0.3s ease;
}
.outer-link:hover{
  text-decoration: underline;
  background-color: rgba(0, 0, 0, 0.04);
}
.outer-link:hover .link-arrow svg {
  background-color: var(--brown-black);
}
.outer-link:hover .link-arrow svg path{
  stroke: var(--warm-white);
}
/* sidebar */
.related-articles{
  color: var(--text-color);
  padding-top: 40px;
}
.related-articles h4{
  font-size: 24px!important;
  margin-bottom: 24px;
}
.related-articles-grid{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.related-article-card{
  padding: 20px;
  background-color: #FFF2CC;
  color: var(--brown-black);
  transition: all 0.3s ease;
}
.related-article-card:hover{
  background-color: #ffe399;
}
.related-article-card .outer-link{
  color: currentColor;
  margin-top: 16px;
}
.related-article-card:hover .outer-link{
  text-decoration: underline;
}
.related-article-card:hover svg{
  background-color: var(--brown-black);
}
.related-article-card:hover svg path{
  stroke: var(--warm-white);
}
.related-article-card h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* card-single-testimonial style */
.card-single-testimonial{
  margin-top: auto;
}
.testimonial-card {
  border-block: 2px solid var(--text-color);
}
.testimonial-card .quote-icon{
  background-color: var(--text-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.dark-theme .testimonial-card .quote-icon svg path.fill{
  fill: var(--brown-black);
  stroke: var(--brown-black);
}
.dark-theme .testimonial-card .quote-icon svg path.stroke{
  stroke: var(--brown-black);
}


.testimonial-card .quote-icon.bottom-quote-icon{
  width: 50px;
  height: 50px;
  padding: 12px;margin-left: auto;
}
.testimonial-card .quote-icon.bottom-quote-icon svg{
  transform: rotate(180deg);
}
.testimonial-card blockquote{
  margin: 0;
  padding: 24px 0;
}
.testimonial-card blockquote h4{
  margin: 0;
}
.testimonial-card .author-name{
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media(max-width: 991px){
  .related-articles h4{
    font-size: 24px !important;
  }
  .related-article-card h4{
    font-size: 24px !important;
  }
}
@media(max-width: 767px){
  .testimonial-card .quote-icon{
    width: 74px;
  }
  .testimonial-card .quote-icon.bottom-quote-icon {
    width: 45px;
  }
  .testimonial-card blockquote h4{
    font-size: 24px !important;
  }
  
}


/* story-content-section style end */

/* story-content-right-column style strat */
.story-content-right-column .social-share{
    display: none;
}
.story-content-right-column .btns-wrap{
  display: none;
}


/* social-profile style */
.social-profile-card{
  display: flex;
  gap: 12px;
}
.social-profile-card .social-profile-image{
  width: 60px;
  height: 60px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.social-profile-card .social-profile-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-profile-card .social-profile-content{
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-color);
}
.social-profile-card a:hover h5{
  text-decoration: underline;
}

.social-profile-card .social-profile-content h5{
  margin: 0;
  position: relative;
  padding-right: 22px;
  font-family: var(--body-font) !important;
  color: var(--text-color) !important;
}
.social-profile-card .social-profile-content .social-icon{
  width: 16px;
  height: 16px;
  position: absolute;
  top: -2px;
  right: 0;
}
.social-profile-card .social-profile-content p{
  margin: 0;
  font-size: 16px;
}
.social-profile-card .social-profile-content p a{
  color: var(--text-color);
}

.social-profiles{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 12px;
}

.story-content-right-column{
  padding-left: 60px;
  border-left: 2px solid var(--text-color);
}
.story-content-right-column .article-date{
  font-size: 16px;
  padding-top: 12px;
  text-align: right;
}

/* wysiwyg-content style  */
.story-content-right-column .wysiwyg-content{
  margin: 60px 0;
}
.story-content-right-column .inner-wrap .wysiwyg-content:last-of-type{
  margin-bottom: 0;
}
.story-content-right-column .wysiwyg-content img{
  width: 100%;
}
.story-content-right-column .wysiwyg-content .outer-link{
  margin-top: 40px;
}

.story-content-right-column .wysiwyg-content h2,
.story-content-right-column .wysiwyg-content h3,
.story-content-right-column .wysiwyg-content h4,
.story-content-right-column .wysiwyg-content h5,
.story-content-right-column .wysiwyg-content h6{
  margin-top: 40px !important;
  margin-bottom: 20px;
}

.content-tow-column-image{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.content-tow-column-image .image-wrap{
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.content-tow-column-image .image-wrap img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.story-content-section{
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 40px 0 96px;
}
.story-content-wrapper{
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 40px;
}
.story-content-left-column .inner-wrap{
  display: flex;
  flex-direction: column;
  gap: 40px;


  /* height: 100%; */
  position: sticky;
  top: 40px;
}

.story-content-left-column .social-share{
  justify-content: flex-start;
}

.story-content-left-column .inner-wrap .btns-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-content-left-column .inner-wrap .cta-button{
  max-width: max-content;
}

.story-content-left-column .inner-wrap .btns-wrap .cta-button{
  max-width: 100%;
  justify-content: space-between;
}

@media(min-width: 992px){
  .story-content-left-column .inner-wrap .card-single-testimonial{
    margin-top: 20vh;
  }
}

@media(max-width: 1199px){
  .story-content-right-column{
    padding-left: 40px;
  }
  .story-content-right-column .wysiwyg-content{
    margin: 40px 0;
  }
  .story-content-section{
    padding: 40px 0 60px;
  }
}

@media(max-width: 991px){
  .story-content-wrapper{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .story-content-left-column{
    order: 2;
  }
  .story-content-left-column .social-share{
    display: none;
  }
  .story-content-right-column {
    padding-left: 0;
    border-left: none;
  }
  .story-content-right-column .social-share{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
  .story-content-left-column .inner-wrap .btns-wrap{
    display: none;
  }

  .story-content-right-column .btns-wrap{
      margin-bottom: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }

}
@media(max-width: 767px){
  .content-tow-column-image{
    grid-template-columns: 1fr;
  }
  .story-content-right-column .wysiwyg-content h4{
    font-size: 24px !important;
  }

  .story-content-right-column .wysiwyg-content h2,
  .story-content-right-column .wysiwyg-content h3,
  .story-content-right-column .wysiwyg-content h4,
  .story-content-right-column .wysiwyg-content h5,
  .story-content-right-column .wysiwyg-content h6{
    margin-top: 24px !important;
    margin-bottom: 15px;
  }

}

@media(max-width: 575px){
  .social-profiles{
    grid-template-columns: 1fr;
  }
  .story-content-right-column .btns-wrap{
    grid-template-columns: 1fr;
  }
}
/* related-articles-section style start */
.related-articles-section{
  padding: 60px 0;
  background-color: #fff2cc;
  transition: all 0.3s ease-in-out;
}
.related-articles-section .section-heading{
  margin-bottom: 40px;
}
.card-related-articles{
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}
.card-related-articles:hover{
  background-color:  #ffe399;
}
.card-related-articles .arrow-link h5{
  margin-bottom: 0;
  font-size: 24px !important;
  font-family: var(--body-font) !important;
}
.card-related-articles p{
  margin: 0;
  margin-top: 16px;
-webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}
.card-related-articles .arrow-heading-wrap svg {
  width: 24px;
  height: 24px;
}
.card-related-articles:hover .arrow-link h5{
  text-decoration: underline;
}
.card-related-articles:hover .arrow-heading-wrap svg {
    background-color: var(--brown-black);
}
.card-related-articles:hover .arrow-heading-wrap svg path {
    stroke: var(--warm-white);
}
.card-related-articles .card-image{
  width: 100%;
  height: 0;
  padding-bottom: 65.6%;
  position: relative;
}
.card-related-articles .card-image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-related-articles .card-content{
  padding: 16px 0;
  border-bottom: 2px solid var(--brown-black);
  flex: 1;
    display: flex;
    flex-direction: column;
}
.card-related-articles .card-content .arrow-link{
    margin-bottom: auto;
    color: var(--brown-black);
}

.related-articles-slider .swiper-wrapper{
  height: auto;
}

@media(max-width: 1279px){
  .story-content-left-column .related-articles ,
  .story-content-left-column .card-single-testimonial { display: none; }
}
@media(max-width: 1199px){
  .related-articles-section{
    padding: 40px 0;
  }
}
@media(max-width: 767px){
  .related-articles-section{
    padding: 20px 0;
  }
  .related-articles-section .section-heading{
    margin-bottom: 20px;
  }
  .related-articles-section .swiper-buttons{
    margin-top: 20px;
  }
}
/* related-articles-section style end */

.name-icon-wrap { display: flex; }
.social-profile-card .social-profile-content h5 { padding-right: 8px; }
.linkedin-icon { width: 16px; min-width: 16px; margin-top: 4px; }
.name-icon-wrap path { transition: all 0.3s ease-in-out; }
.name-icon-wrap:hover path { fill: #0078D4; }


/* ==========================================================================
story page section style end
========================================================================== */


/* ==========================================================================
Disruption Timeline style start 
========================================================================== */


.flexwrap {display: flex; }
.sliderwrap {width: calc(100% - 100px); overflow: hidden; }
.sliderwrap > div > h3{
  font-size: 40px!important;
  text-align: right;
  margin-block-end: 0.83em;
}
.year-buttons {display: flex; gap: 20px; flex-direction: column; width: 100px; height: 200px; overflow-y: auto; }
.timeline-slider-section {padding: 0px 0px 80px 0px; background: #DEF3FF; background: linear-gradient(0deg,rgba(222, 243, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(222, 243, 255, 1) 100%); }
.flex-wrap {width: 100%; max-width: 1000px; margin: 0 auto; }
.card-container {display: flex; width: 100%; overflow: hidden; gap: 30px; }
.card {flex: 1; background-color: #f0f0f0; border: 1px solid #ccc; display: flex; transition: flex 0.7s linear; }
.card.active {flex: 2; }
.card:not(.active) {flex: 1; }


.nation-state {opacity: 0; margin-bottom: 0px; transition: all 0.3s ease-in-out; padding-bottom: 5px; font-size: 16px; font-weight: 700; display: none; }
.card.active .nation-state {opacity: 1; margin-bottom: 0; display: block; }

.card .card-body-content p,
.card .card-body-content { max-height: 0; opacity: 0; overflow: hidden;  transition: all 0.6s ease-in-out; }
.card.active .card-body-content p,
.card.active .card-body-content {animation: cardbody 0.5s forwards; animation-delay: 0.4s; overflow: visible; }
@keyframes cardbody {
  0% { opacity: 0; max-height: 0; } 
  100% { opacity: 1; max-height: 200px; }
}

.card .text p {margin: 0; }
.card .text { min-height: 40px; display: flex;align-items: flex-end;}
.card .text p, .card .text {max-height: 0; transition: all 0.6s ease-in-out; opacity: 0; overflow: hidden; }
.card.active .text p,
.card.active .text {animation: fadeIn2 0.5s forwards; animation-delay: 0.4s; overflow: visible; }
@keyframes fadeIn2 {
  0% { opacity: 0; max-height: 0; } 
  100% { opacity: 1; max-height: 100px; }
}

.card-container .card {
  min-height: 580px;
}

/* Card container like image */

.arrow {
  margin-left: auto;
  transition: all 0.5s ease-in-out;
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.card.active .arrow {
  width: 16px;
  min-width: 16px;
}

.arrow svg {
  width: 100%;
}

.slidercard {
  background-color: #194449;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
}


/* Top header */
.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #27B199;
  padding: 28px 30px;
  color: white;
  min-height: 120px;
  
}

.logo-box {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}

.card.active .logo-box {
  width: 64px;
  min-width: 64px;
}

.logo-box img {
  width: 100%;
}

.logo-box svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.header-meta {
  line-height: 1;
}

.header-meta .org {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.header-meta .date {
  font-size: 32px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* Dark content block */
.card-body {
  padding: 30px 30px 0;
}

.title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 0.98;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.lead {color: var(--muted); font-size: 16px; font-weight: 300; max-width: 720px; margin-bottom: 30px; }
.separator {border-top: 3px solid rgba(255, 255, 255, 0.14); margin: 26px 0; width: 100%; }

.article-link {display: flex; align-items: flex-end; 
  justify-content: space-between; gap: 16px; color: white; 
  text-decoration: none; 
  padding: 26px 0 0; 
  margin-top: auto; 
  border-top: 2px solid #FFF8F3; 
  /* border-bottom: 2px solid transparent;  */
  padding: 12px 0; 
  transition: all 0.5s ease-in-out; 
}
.card.active .article-link {padding-bottom: 12px; }


/* footer thin rule */
.bottom-rule {
  border-top: 3px solid rgba(255, 255, 255, 0.09);
  margin-top: 28px;
}


.nation-state {
  font-size: 16px;
  font-weight: 700;
}

.card-date {
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}
.card-date span{
  opacity: 0;
  transition: all 0.5s ease;
}
.card.active .card-date span{
  opacity: 1;
}

.card-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.article-link-row {
  margin-top: auto;
  padding: 30px;
}
.card .article-link-row .arrow{
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  transition: all 0.2s ease;
  position: relative;
}
.card .article-link-row .arrow svg{
  opacity: 0;
}
.card .article-link-row  .arrow:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url(../images/card-plus-icon.svg);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 38px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.active .article-link-row .arrow:before{
  opacity: 0;
}
.card.active .article-link-row .arrow svg{
  opacity: 1;
}


.orangebox .slidercard {
  background-color: #DC5332;
}

.orangebox .card-header {
  background-color: #FB6C45;
}

.year-btn {
  border: 2px solid #2d231e;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 68px;
  color: #2D231E;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 10px;
}

.year-btn:hover,
.year-btn.active {
  background-color: #2d231e;
  color: #ffffff;
}




/*scroll bar css*/

/* Main container */
.scroll-container {
  position: relative;
  width: 200px;
  height: 665px;
  overflow: hidden;
}

/* Custom scrollbar */
.custom-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #ccc;
  border-radius: 0;
  z-index: 1;
}

/* Scroll handle */
.scroll-handle {position: absolute; width: 100%; background-color: #2d231e; border-radius: 0; cursor: pointer; }
/* Year list */
.year-buttons {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Enable vertical scrolling */
  padding-left: 20px;
  /* Space for the scrollbar */
  padding-right: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.year-buttons::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.year-buttons {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/*scroll bar css*/


/* Ensure slider container has relative positioning */
.swiper-container {
  position: relative;
}

/* Hide inactive sliders */
#Slider1:not(.active-slider),
#Slider2:not(.active-slider) {
  display: none;
}

/* Show active slider */
.active-slider {
  display: block;
}
.sliderwrap > div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.sliderwrap > div.active-slider{
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.timeline-slider-section .swiper-pagination {
  width: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  bottom: inherit;
  left: inherit;
  transform: none;
  flex-wrap: wrap;
}

.timeline-slider-section .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: var(--gray-light);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-slider-section .swiper-pagination-bullet-active {
  background: var(--brown-black);
}

.section-header {
  margin-bottom: 40px;
}
.section-header h2 { margin-bottom: 10px; }
.section-header p { font-size: 24px; margin-top: 10px; }

 


.mobile-slider {
  display: none;
}
.mobile-timeline-swiper .swiper-buttons .swiper-button-lock { display: none; }


@media(min-width:992px){
  
  
  .active-slider .card-container .card {
    opacity: 0;
    transform: translateY(10px);
    animation: slideactive 0.5s forwards linear;
  }
  .active-slider .card-container .card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .active-slider .card-container .card:nth-child(2) {
    animation-delay: 0.3s;
  }
  .active-slider .card-container .card:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes slideactive {
    0% { opacity: 0; } 
    100% { opacity: 1; transform: translateY(0); }
  }
  
}

@media (max-width: 1200px) {
  .scroll-container {
    width: 120px;
  }

  .sliderwrap {
    width: calc(100% - 120px);
  }

  .card-container {
    gap: 15px;
  }

  .card-header {
    padding: 15px;
    min-height: 100px;
  }

  .card-date {
    font-size: 20px;
  }

  .card-body {
    padding: 15px;
  }

  .article-link-row {
    padding: 15px;
  }

  .card.active .logo-box {
    width: 50px;
    min-width: 50px;
  }
}

@media (max-width: 1024px) {
  .mobile-slider .swiper-buttons {
    display: flex;
  }
}

@media (max-width: 991px) {
  .flexwrap {
    flex-direction: column;
  }

  .scroll-container {
    width: 100%;
  }

  .sliderwrap {
    width: 100%;
    margin-top: 20px;
  }

  .year-buttons {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .scroll-container {
    height: 50px;
  }

  .custom-scrollbar {
    display: none;
  }

  .year-buttons {
    padding-left: 0;
  }

  .arrow {
    width: 20px;
    min-width: 20px;
  }

  .card-header {
    min-height: 80px;
  }
  .section-header h2 { font-size: 35px !important; }
  .section-header p { font-size: 22px !important; }
  .desktop-slider {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}

@media (max-width: 767px) {
  .timeline-slider-section {
    padding: 50px 0;}
  

  .section-header h2 { font-size: 34px !important; line-height: 1.2 !important; margin-bottom: 20px; }
  .section-header p { font-size: 18px !important; line-height: 1.3; }

  .card .text{
    min-height: 35px;
  }
}

/* Mobile Timeline Slider Styles */
.swiper-mobile-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.year-slider-container {
  display: none;
  width: 100%;
}

.year-slider-container:first-child {
  display: block;
}

.mobile-timeline-swiper {
  width: 100%;
  position: relative;
}

.mobile-timeline-swiper .swiper-slide {
  padding: 0;
}

.mobile-timeline-swiper .swiper-button-next,
.mobile-timeline-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.mobile-timeline-swiper .swiper-button-next:hover,
.mobile-timeline-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}

.mobile-timeline-swiper .swiper-button-next {
  right: 10px;
}

.mobile-timeline-swiper .swiper-button-prev {
  left: 10px;
}

.mobile-timeline-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.mobile-timeline-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-timeline-swiper .swiper-pagination-bullet-active {
  background: #333;
  transform: scale(1.2);
}

.select-year-box {
  margin-bottom: 20px;
  text-align: center;
}

.select-year-box select {
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.select-year-box select:focus {
  border-color: #333;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.heading-title h2 { font-size: 35px; }
.mobile-slider .year-slider-container .mobile-timeline-swiper .logo-box { width: 60px; min-width: 60px; }
.mobile-slider .card-date { font-size: 24px; }
.mobile-slider .card-header { padding: 30px;}
.mobile-slider .title { font-size: 24px !important; }
.mobile-slider .card-body { padding: 30px; }
.mobile-slider .card-body p { line-height: 1.6;}
.mobile-slider .article-link-row { padding: 30px;}
.mobile-slider .card.active .text p { font-size: 16px; }

.mobile-slider .select-year-box select { width: 100%; background-color: #2D231E; color: #ffffff; border: none; font-size: 20px; padding: 10px 16px; appearance: none; border-radius: 0; background-image: url(../images/select-downarrow.svg); background-repeat: no-repeat; background-position: right 16px center; }


/* Responsive adjustments for mobile timeline slider */
@media (max-width: 480px) {

  .mobile-timeline-swiper .swiper-button-next,
  .mobile-timeline-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .mobile-timeline-swiper .swiper-button-next {
    right: 5px;
  }

  .mobile-timeline-swiper .swiper-button-prev {left: 5px; }
  .select-year-box select {padding: 8px 15px; font-size: 14px; }
}

.desktop-slider .two-card .card-container:after {
  content: '';
  display: block;
  flex: 1;
}
.desktop-slider .one-card .card-container:after {content: ''; display: block; flex: 2; }
.article-link-row a:last-child {margin-top: -2px; }
.card.active .arrow { min-width: 24px; min-height: 24px; width: 24px; height: 24px; display: block;  display: flex; align-items: center; justify-content: center; }
.card.active .arrow svg { min-width: 16px; min-height: 16px; width: 16px; height: 16px; }
.article-link:hover .arrow { background: #FFF8F3; }
.article-link:hover .arrow svg path { fill: #2d231e; }
.article-link:hover { text-decoration: underline;} 
.arrow { transition: all 0.3s ease-in-out; }

/* .card.active .article-link:first-child { border-top: none; } */
@media (max-width: 991px) {
  .mobile-slider .swiper-wrapper { height: auto; }
}

/* ==========================================================================
Disruption Timeline style ends
========================================================================== */


/*Artical Page Tag Update css*/
.single-story .related-articles h2,
.single-story .related-articles h3 {font-size: 24px !important; margin-bottom: 24px; padding-top: 15px; color: var(--brown-black); }
.single-story .related-article-card h2,
.single-story .related-article-card h3,
.single-story .related-article-card h4 {font-size: 20px !important; margin-bottom: 24px; padding-top: 15px; color: var(--brown-black); }
.single-story .story-page-wrapper h2,
.single-story .story-page-wrapper h3,
.single-story .story-page-wrapper h4 {font-size: 24px !important; padding-top: 15px; }
.single-story .story-content-right-column .wysiwyg-content h2 {margin-top: 40px !important; margin-bottom: 20px; font-size: 24px !important; padding-top: 15px; }
.single-story .related-articles-section .section-heading h2,
.single-story .related-articles-section .section-heading h3,
.single-story .related-articles-section .section-heading h4 {font-size: 24px !important; padding-top: 15px; margin-bottom: .5rem; }
.single-story .card-related-articles .arrow-link h2,
.single-story .card-related-articles .arrow-link h3,
.single-story .card-related-articles .arrow-link h4,
.single-story .card-related-articles .arrow-link h5 {margin-bottom: 0; font-size: 24px !important; font-family: var(--body-font) !important; display: block !important; margin-top: inherit !important; padding-top: 0; }
.single-story .testimonial-card blockquote h3 {margin: 0; font-size: 24px !important; padding-top: 15px; }
/*Responsive*/
@media(max-width: 767px){
  .single-story .story-content-right-column .wysiwyg-content h2 {margin-top: 24px !important; margin-bottom: 15px; }
}
/*Artical Page Tag Update css*/