/* =========================================================
   HERO
========================================================= */
.sekin-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.sekin-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sekin-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(3, 18, 45, .95) 0%,
      rgba(3, 18, 45, .88) 25%,
      rgba(3, 18, 45, .55) 60%,
      rgba(3, 18, 45, .10) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .15) 0%,
      rgba(0, 0, 0, .05) 50%,
      rgba(0, 0, 0, .25) 100%);
}
.sekin-hero .grid-container {
  position: relative;
   z-index: 3;
}
.sekin-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.sekin-hero h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sekin-hero h1 span {
  color: var(--sekin-orange);
  display: block;
}
.sekin-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.sekin-hero-buttons {
  display: flex;
  gap: 20px;
}
.sekin-hero .button-primary {
  padding: 18px 36px;
  background: var(--sekin-orange);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}
.sekin-hero .button-outline {
  padding: 18px 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 10px;
}
/* =========================================================
   HERO BUTTONS
========================================================= */
.sekin-hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .25s ease;
}
.hero-btn-primary {
  background: var(--sekin-orange);
  color: #fefefe;
}
.hero-btn-primary:hover {
  color: #fefefe;
  box-shadow:
    0 12px 30px rgba(255, 122, 0, .30);
}
.hero-btn-secondary {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .20);
  color: #fefefe;
}
.hero-btn-secondary:hover {
  color: #fefefe;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
}
.hero-btn-icon {
  display: flex;
  align-items: center;
}
.hero-btn-icon img {
  width: 18px;
  height: 18px;
}
.hero-btn-arrow {
  transition: transform .25s ease;
}
.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(0);
}
/* =========================================================
   TRUST BAR
========================================================= */
.sekin-trust-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.sekin-trust-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(8, 20, 48, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  overflow: hidden;
}
.sekin-trust-item {
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  position: relative;
}
.sekin-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .12),
      transparent);
}
.trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.trust-content strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: initial;
}
.trust-content span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.5;
}
/* =========================================================
   HERO MEDIA
========================================================= */
.sekin-hero-media {
  position: relative;
}
.sekin-hero-media img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28);
}
/* =========================================================
   FLOAT EFFECT
========================================================= */
.sekin-hero-media::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(rgba(255, 122, 0, 0.24), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}
/* =========================================================
   SERVICE GRID
========================================================= */
.sekin-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
/* =========================================================
   CLIENT LOGOS
========================================================= */
.sekin-client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.sekin-client-logos img {
  max-height: 54px;
  opacity: 0.82;
  filter: grayscale(100%);
}
.sekin-client-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}
/* =========================================================
   STATS
========================================================= */
.sekin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sekin-stat-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}
.sekin-stat-number {
  font-size: 42px;
  color: var(--sekin-orange);
  font-weight: 700;
}
/* =========================================================
   CASE STUDY
========================================================= */
.sekin-case-study {
  background: var(--sekin-navy);
  padding: 120px 0;
}
.sekin-case-study h2,
.sekin-case-study p {
  color: #fff;
}
/* =========================================================
   KNOWLEDGE
========================================================= */
.sekin-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sekin-article-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sekin-article-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.sekin-article-content {
  padding: 28px;
}
/* =========================================================
   CTA
========================================================= */
.sekin-cta {
  background: linear-gradient(135deg, #071735 0%, #0e2b61 100%);
  padding: 80px;
  border-radius: 32px;
}
.sekin-cta h2,
.sekin-cta p {
  color: #fff;
}
.sekin-hero {
  padding-top: 220px;
}
/* =========================================================
   HOMEPAGE LAYOUT FIX
========================================================= */
.home .site-content {
  display: block;
}
.home .content-area {
  width: 100%;
}
.home .site-main {
  margin: 0;
}
.home .inside-article {
  padding: 0;
  margin: 0;
  background: transparent;
}
.home.separate-containers .inside-article {
  background: transparent;
}
/* REMOVE GP SPACING */
.home .entry-content {
  margin: 0;
}
.home .site-main {
  padding: 0;
}
/* =========================================================
   SECSION CLIENTS
========================================================= */
.sekin-clients{
    padding:60px 0;
    background:#fff;
}
.clients-slider-wrapper{
  position: relative;
}
.clients-prev{
    position:absolute;
    left:-50px;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
}
.clients-next{
    position:absolute;
    right:-50px;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
}
.clients-prev,
.clients-next{
    width:40px;
    height:40px;
    background:none !important;
    border:none;
    box-shadow:none;
}
.clients-prev:hover,
.clients-next:hover{
    background:none !important;
    box-shadow:none !important;
}
.clients-prev svg,
.clients-next svg{
    width:32px;
    height:32px;
    stroke:#333;
    stroke-width:2;
}
.clients-prev:hover svg,
.clients-next:hover svg{
    stroke:var(--sekin-orange);
}
.client-item{
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.client-item img{
    max-height:70px;
    max-width:180px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:none;
    opacity:1;
    transition:.3s ease;
}
.client-item img:hover{
    filter:none;
    opacity:1;
}
.sekin-clients-slider{
    overflow:hidden;
    padding:10px 0;
}
.sekin-clients-slider .swiper-slide{
    height:auto;
}
/* =========================================================
   SECSION SERVICES
========================================================= */
.sekin-services{
    padding:80px 0;
    background:#fff;
}
.services-grid{
    margin: 40px 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
/* =========================================================
   SECSION CASE STUDY
========================================================= */
.sekin-case-study{
    padding:80px 0;
    background:#071735;
}

.sekin-case-study .section-heading h2{
    color:#fff;
}
.case-study-slider{
    overflow:hidden;
}
.case-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    overflow:hidden;
    height:100%;
}
.case-card-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
}

.case-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.case-card:hover .case-card-image img{
    transform:scale(1.05);
}
.case-card-content{
    padding:18px;
}
.case-category{
    display:inline-flex;
    padding:4px 8px;
    border-radius:4px;
    background:rgba(255,122,0,.15);
    color:var(--sekin-orange);
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
}
.case-card h3{
    margin:12px 0;
    font-size:18px;
    line-height:1.4;
}

.case-card h3 a{
    color:#fff;
}
.case-card p{
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.7;
}
.case-footer{
    text-align:center;
    margin-top:40px;
}
.case-footer .button-primary{
    background: transparent;
}
.case-footer svg{
  color: var(--sekin-orange);
}
/* =========================================================
   STRENGTHS
========================================================= */
.sekin-strengths{
    padding:80px 0;
    background:#fff;
}
.strengths-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:32px;
    margin-top:50px;
}
.strength-item{
    text-align:center;
}
.strength-icon{
    margin-bottom:20px;
}

.strength-icon svg{
    width:54px;
    height:54px;
    stroke:var(--sekin-orange);
    stroke-width:1.8;
}
.strength-item h3{
    margin:0 0 12px;
    font-size:16px;
    line-height:1.4;
    font-weight:700;
    color:var(--sekin-navy);
}
.strength-item p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#5f6675;
    text-align: justify;
}
.strength-item:hover .strength-icon svg{
    stroke:var(--sekin-orange);
    transform:translateY(-4px);
}

.strength-icon svg{
    transition:.3s ease;
}
/* =========================================================
   KNOWLEDGE
========================================================= */
.sekin-knowledge{
    padding:80px 0;
    background:#f8f9fb;
}

.sekin-knowledge .section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}
.sekin-knowledge .section-heading{
  margin-bottom:10px;
  text-align: left;
}
.sekin-knowledge .section-heading h2::after {
  margin: 10px 0 0;
}
.knowledge-view-all{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:600;
    color:var(--sekin-navy);
}

.knowledge-view-all svg{
    width:16px;
    height:16px;
    stroke:var(--sekin-orange);
}
.knowledge-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}
.knowledge-card{
    background:#fff;
    border:1px solid rgba(7,23,53,.08);
    border-radius:10px;
    overflow:hidden;
    transition:.3s ease;
}

.knowledge-card:hover{
    box-shadow:var(--shadow-sm);
}
.knowledge-image{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
}

.knowledge-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.knowledge-card:hover .knowledge-image img{
    transform:scale(1.05);
}
.knowledge-content{
    padding:18px;
}
.knowledge-content h3{
    margin:0 0 14px;
    font-size:17px;
    line-height:1.5;
    min-height:78px;
}

.knowledge-content h3 a{
    color:var(--sekin-navy);
}
.knowledge-date{
    font-size:13px;
    color:#8b94a7;
}
/* =========================================================
   WHY SEKIN
========================================================= */
.sekin-why{
    padding:80px 0;
    background:#071735;
}

.sekin-why .section-heading{
    text-align:left;
    margin-bottom:0;
}

.sekin-why .section-heading h2{
    color:var(--sekin-white);
}

.sekin-why .section-heading h2::after{
    margin:14px 0 0;
}
.why-grid{
    display:grid;
    grid-template-columns:420px 1fr 340px;
    gap:40px;
    align-items:center;
}
.why-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    border-radius: var(--radius-sm);
}
.why-benefits{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.why-item{
    display:flex;
    gap:14px;
}
.why-icon{
    flex-shrink:0;
}

.why-icon svg{
    width:22px;
    height:22px;
    stroke:var(--sekin-orange);
    fill:none;
}
.why-content h3{
    margin:0 0 6px;
    font-size:18px;
    color:#fff;
}

.why-content p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,.75);
}
.why-cta-card{
    padding:30px;
    border:1px solid rgba(255,122,0,.4);
    border-radius:12px;
    background:rgba(255,255,255,.02);
    text-align:center;
}
.why-cta-icon{
    margin-bottom:20px;
}

.why-cta-icon svg{
    width:42px;
    height:42px;
    stroke:var(--sekin-orange);
}
.why-cta-card h3{
    margin:0 0 12px;
    color:#fff;
    font-size:24px;
    line-height:1.3;
}
.why-cta-card p{
    margin-bottom:20px;
    color:rgba(255,255,255,.75);
    line-height: 1.4;
}
.why-phone-btn{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--sekin-orange);
    color:var(--sekin-white);
    border-radius:6px;
    margin-bottom:12px;
}
.why-phone-btn:hover{
    box-shadow: var(--shadow-sm);
    color:var(--sekin-white);
}

.why-phone-btn svg{
    width:16px;
    height:16px;
    stroke:var(--sekin-white);
}
.why-contact-btn{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:6px;
    color:var(--sekin-white);
}