/*
Theme Name: SK Solution
Theme URI: 
Author: Exciteon
Author URI: 
Description:
Version: 1.0
Text Domain: 
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #f7941d; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: #222; font-family: 'Raleway', 'Open Sans', Arial, sans-serif; }

/* ===== CSS VARIABLES ===== */
:root {
  --orange: #f7941d;
  --dark-blue: #0a2240;
  --mid-blue: #1a3a5c;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --text: #555;
  --heading: #222;
  --white: #fff;
  --transition: 0.3s ease;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ===== TOP BAR ===== */
#top-bar {
  background: #003b70;
  height: 55px;
  color: #fff;
  position: relative;
  z-index: 999;
}

.top-wrap {
  max-width: 1180px;
  height: 55px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 45px;
  font-size: 15px;
  font-weight: 500;
}

.top-info i {
  color: #ffe119;
  margin-right: 10px;
}

.top-city {
  width: 170px;
  height: 55px;
  background: #ffe119;
  color: #003b70;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#site-header {
  position: absolute;
  
  left: 0;
  width: 100%;
  height: 118px;
  background: rgba(255,255,255,0.62);
  z-index: 998;
}

.header-wrap {
  max-width: 1180px;
  height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.site-logo{
    flex:1;
}

.logo-box{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:0px;
    width:max-content;
}

.site-logo-img{
    height:100px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    align-items:flex-end;
    flex-wrap:nowrap;
    white-space:nowrap;
    margin-top:10px;
}

.text-logo{
    font-size:80px;
    line-height:0.9;
    color:#003b70;
    font-family:Georgia, serif;
    font-weight:400;
}

.text-logo2{
    font-size:22px;
    color:#ffffff;
    margin-left:8px;
    margin-bottom:12px;
    font-family:Arial, sans-serif;
}

#main-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#main-nav ul li a {
  color: #003b70;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item a {
  color: #4285f4;
}

.linkedin-icon {
  margin-left: 30px;
  color: #003b70;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

#menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .top-wrap {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  #top-bar {
    height: auto;
  }

  .top-info {
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
    font-size: 13px;
  }

  .top-city {
    width: 100%;
  }

  #site-header {
    position: relative;
    top: 10px;
    height: auto;
    background: rgba(255,255,255,0.95);
  }

  .header-wrap {
    height: 85px;
    padding: 0 15px;
  }

  .text-logo {
    font-size: 38px;
  }

  #menu-toggle {
    display: block;
    margin-left: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #003b70;
  }

  #main-nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
  }

  #main-nav.active {
    display: block;
  }

  #main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* .site-logo-img{
    height: 7px;
    width: auto;
} */

/* ===== NAVIGATION ===== */
#main-nav ul { display: flex; gap: 0; align-items: center; }
#main-nav > ul > li {
  position: relative;
}
#main-nav > ul > li > a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
#main-nav > ul > li > a:hover,
#main-nav > ul > li.current-menu-item > a {
  color: var(--orange);
}
#main-nav > ul > li > a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  margin-top: 2px;
}
#main-nav > ul > li:hover > a::after { transform: scaleX(1); }

/* Dropdown */
#main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-top: 3px solid var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
#main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#main-nav .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
#main-nav .sub-menu li a:hover {
  background: #f9f9f9;
  color: var(--orange);
  padding-left: 24px;
}
/* 3rd level */
#main-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top: none;
  border-left: 3px solid var(--orange);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* LinkedIn in header */
.header-linkedin a {
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
  transition: var(--transition);
}
.header-linkedin a:hover { opacity: 1; color: var(--orange); }

/* ===== HERO SLIDER ===== */
#hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: var(--dark-blue);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,34,64,0.85) 0%, rgba(10,34,64,0.5) 60%, transparent 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 60px;
  color: #fff;
}
.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}
.slide.active .slide-tag { opacity: 1; transform: translateY(0); }
.slide-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.5s;
  color: #fff;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-title em {
  font-style: normal;
  color: var(--orange);
}
.slide-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.7s;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.9s;
}
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
/* Slider nav */
.slider-nav {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  color: #fff;
  width: 44px; height: 44px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-arrow:hover { background: var(--orange); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== SECTION GENERAL ===== */
.section-pad { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: var(--orange);
  margin: 12px auto 0;
}
.section-title p { color: #777; font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ===== CTA BAND ===== */
#cta-band {
    position: relative;
    overflow: hidden;
    background: var(--dark-blue);
    padding: 10px 0;
    text-align: center;
}

/* content */

#cta-band .container {
    position: relative;
    z-index: 5;
}

#cta-band h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.5;
}

#cta-band .btn-primary {
    font-size: 10px;
    padding: 10px 30px;
    position: relative;
    z-index: 5;
}

/* animated particles */

#cta-band::before,
#cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* floating dots */

#cta-band::before {

    background-image:
        radial-gradient(circle, rgba(255,255,255,.8) 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,.35) 3px, transparent 4px),
        radial-gradient(circle, rgba(255,255,255,.25) 2px, transparent 3px);

    background-size:
        180px 180px,
        260px 260px,
        320px 320px;

    animation: floatingParticles 5s linear infinite;
}

/* moving line particles */

#cta-band::after {

    background-image:
        linear-gradient(45deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,.06) 1px, transparent 1px);

    background-size: 220px 220px;

    animation: movingLines 25s linear infinite;
}

/* animations */

@keyframes floatingParticles {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200px);
    }
}

@keyframes movingLines {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(180px);
    }
}

/* button hover */

#cta-band .btn-primary:hover {
    transform: translateY(-3px);
    transition: .3s;
}

/* responsive */

@media (max-width: 768px) {

    #cta-band h2 {
        font-size: 18px;
    }

    #cta-band {
        padding: 30px 17px;
    }

    .slider-nav{
      display: none;
    }
}

/* ===== ABOUT 3-COL ===== */



/* ===== INDUSTRIES ===== */
#industries { padding: 70px 0; background: #fff; }
.industries-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #e5e5e5;
}
.ind-tab {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #777;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.ind-tab:hover, .ind-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.ind-panel { display: none; animation: fadeIn 0.4s ease; }
.ind-panel.active { display: block; }
.ind-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ind-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
}
.ind-text p { color: #666; line-height: 1.8; }
.ind-image img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

/* ===== STATS COUNTER ===== */
#stats-section {
  background: var(--dark-blue);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item { padding: 20px; }
.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}
.stat-number .plus { font-size: 32px; }
.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ===== SERVICES ===== */
#services-section { padding: 70px 0; background: #f5f7fa; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.service-card:hover .service-overlay { opacity: 1; }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,34,64,0.85) 100%);
  opacity: 0.4;
  transition: var(--transition);
}
.service-body { padding: 20px 22px 24px; }
.service-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-body .service-subtitle {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.service-body p { color: #777; font-size: 13px; line-height: 1.7; }
.services-cta {
  text-align: center;
  margin-top: 40px;
}
.services-cta h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0;
}
.services-cta h4 a { color: var(--orange); font-weight: 700; }

/* ===== NEWS ===== */
#news-section { padding: 70px 0; background: #fff; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.news-card {
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-body { padding: 18px; }
.news-date {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-body h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 1.5;
}
.news-body h5 a { color: inherit; }
.news-body h5 a:hover { color: var(--orange); }
.read-more {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CALLBACK FORM ===== */
#callback-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a5c 100%);
}
#callback-section .section-title h2 { color: #fff; }
#callback-section .section-title h2::after { background: var(--orange); }
#callback-section .section-title p { color: rgba(255,255,255,0.7); }
.callback-form {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: rgba(255,255,255,0.12); }
.form-group select option { background: var(--dark-blue); color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { margin-top: 3px; width: auto; }
.form-consent label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-consent a { color: var(--orange); }
.form-submit .btn-primary { width: 100%; padding: 14px; font-size: 14px; border: none; }
.form-success { display: none; color: #4caf50; text-align: center; padding: 20px; font-weight: 600; }

/* ===== FOOTER ===== */
#site-footer { background: #111827; color: #aaa; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #aaa;
  font-size: 13px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 80px; }
.footer-iso img { height: 60px; margin-bottom: 16px; }
.footer-members img { height: 40px; }
.footer-credentials img { width: 100%; max-width: 300px; margin-bottom: 12px; }
.footer-addresses { margin-top: 20px; }
.footer-addr { margin-bottom: 16px; }
.footer-addr strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
}
.footer-addr span { font-size: 12px; color: #888; line-height: 1.6; }
.footer-bottom {
  background: #0d1117;
  padding: 18px 0;
  margin-top: 10px;
}
.footer-bottom-inner {
 

  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #666; }
.footer-social a {
  color: #666;
  font-size: 16px;
  margin-left: 12px;
  transition: var(--transition);
}
.footer-social a:hover { color: var(--orange); }

/* ===== COOKIE BAR ===== */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #ccc;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 13px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-bar.visible { transform: translateY(0); }
#cookie-bar a { color: var(--orange); }
#cookie-bar .cookie-btns { display: flex; gap: 10px; white-space: nowrap; }
#cookie-bar button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
#cookie-bar button:hover { background: #e8830a; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  background: var(--orange);
  color: #fff;
  width: 42px; height: 42px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--dark-blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  #main-nav { display: none; }
  .menu-toggle { display: flex; }
  #main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    padding: 10px 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  #main-nav > ul { flex-direction: column; }
  #main-nav > ul > li > a { padding: 12px 20px; }
  #main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.05);
    display: none;
  }
  #main-nav .sub-menu li a { color: #ccc; }
  #main-nav li.open > .sub-menu { display: block; }
  .about-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #hero-slider { height: 420px; }
  .slide-title { font-size: 28px; }
  .slide-content { padding: 0 30px; }
  .ind-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-grid,
  .services-grid,
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); margin-left: -20px; }
  .footer-grid { grid-template-columns: 1fr; }
  #hero-slider { height: 360px; }
  .slide-title { font-size: 22px; }
  .callback-form { padding: 24px; }
  .industries-tabs { flex-wrap: wrap; }
  .top-bar-info.active { display: none; }
   .slide-tag{margin-top: 50px; font-size: 10px;}
   .slide-desc{font-size: 12px;}
   .btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
}
.btn-outline {
  background: transparent;
  color: #fff;
 padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  display: inline;
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}
  
}

/* ABOUT 3-COL */
/* ABOUT 3-COL */

#about-blocks{
  padding:70px 0;
  background:#fff;
}

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

.about-card{
  position:relative;
  height:315px;
  overflow:hidden;
  cursor:pointer;

}

.about-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* Blue Overlay */
.about-card::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,55,100,.95) 0%,
    rgba(0,55,100,.88) 38%,
    rgba(0,55,100,.25) 70%,
    transparent 100%
  );

  transition:0.5s ease;
}

/* Content */
.about-card-body{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;

  padding:32px;

  color:#fff;
  z-index:2;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transform:translateY(78px);
  transition:0.5s ease;
}

/* Title */
.about-card h6{
  font-size:22px;
  font-weight:800;
  line-height:1.3;

  margin:0 0 16px;
  color:#fff;
}

/* Paragraph */
.about-card p{
  font-size:15px;
  line-height:1.8;

  margin:0 0 18px;

  opacity:0;
  transform:translateY(15px);

  transition:.4s ease;
}

/* Link */
.about-card a{
  color:#ffe119;
  font-weight:800;
  text-decoration:none;

  opacity:0;
  transform:translateY(10px);

  transition:.4s ease;
}

/* Hover */
.about-card:hover img{
  transform:scale(1.12);
}

.about-card:hover .about-card-body{
  transform:translateY(0);
}

.about-card:hover p,
.about-card:hover a{
  opacity:1;
  transform:translateY(0);
}

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

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-card{
    height:340px;
  }

}


/* ===== Unique SK Footer Logo ===== */

.sk-footer-branding{
    position: relative;

    width: 210px;
    height: 150px;

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


  

    overflow: hidden;

    isolation: isolate;

    transition: .45s ease;

    /* box-shadow:
        0 10px 35px rgba(0,0,0,.25); */
}

/* Gold Glow */
.sk-footer-branding::before{
    content: "";

    position: absolute;
    width: 180px;
    height: 180px;

    background: radial-gradient(
        circle,
        rgba(245,184,32,.18),
        transparent 70%
    );

    top: -60px;
    right: -50px;

    z-index: -1;

    opacity: 0;

    transition: .45s ease;
}

/* Hover */
.sk-footer-branding:hover{
    transform: translateY(-8px);

    border-color: rgba(245,184,32,.4);

    box-shadow:
        0 18px 45px rgba(0,0,0,.4),
        0 0 30px rgba(245,184,32,.12);
}

.sk-footer-branding:hover::before{
    opacity: 1;
}

/* Logo */
.sk-footer-branding img{
    width: 120px;
    height: auto;

    display: block;

    transition: .45s ease;

    filter:
        drop-shadow(0 0 8px rgba(245,184,32,.12));
}

/* Image Zoom */
.sk-footer-branding:hover img{
    transform: scale(1.08);

    filter:
        drop-shadow(0 0 18px rgba(245,184,32,.28));
}

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

    .sk-footer-branding{
        width: 180px;
        height: 135px;
    }

    .sk-footer-branding img{
        width: 105px;
    }

}


/* ===== SERVICES SECTION ===== */

#services-section{
  padding:80px 0;
  background:#f5f8fb;
}

.section-title{
  text-align:center;
  margin-bottom:55px;
}

.section-title h2{
  font-size:42px;
  font-weight:900;
  color:#003b70;
  margin-bottom:12px;
}

.section-title p{
  max-width:780px;
  margin:auto;
  font-size:17px;
  line-height:1.8;
  color:#555;
}

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

.service-card{
  position:relative;
  height:390px;
  overflow:hidden;
  background:#061b33;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,35,70,.96) 0%,
    rgba(0,59,112,.85) 45%,
    rgba(0,59,112,.25) 75%,
    transparent 100%
  );
  transition:.5s ease;
}

.service-body{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:32px;
  color:#fff;
  z-index:2;
  transform:translateY(90px);
  transition:.5s ease;
}

.service-body h4{
  font-size:22px;
  font-weight:900;
  color:#fff;
  margin:0 0 14px;
}

.service-subtitle{
  color:#f5b820;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.service-body p{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
  margin:0;
  opacity:0;
  transition:.4s ease;
}

.service-card:hover img{
  transform:scale(1.12);
}

.service-card:hover .service-overlay{
  background:rgba(0,45,85,.92);
}

.service-card:hover .service-body{
  transform:translateY(0);
}

.service-card:hover p{
  opacity:1;
}

.services-cta{
  margin-top:55px;
  background:#003b70;
  padding:32px;
  text-align:center;
  border-left:6px solid #f5b820;
}

.services-cta h4{
  margin:0;
}

.services-cta a{
  color:#fff;
  font-size:22px;
  font-weight:800;
  text-decoration:none;
}

.services-cta a:hover{
  color:#f5b820;
}

/* Responsive */
@media(max-width:1200px){
  .services-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:991px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

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

  .service-card{
    height:360px;
  }

  .section-title h2{
    font-size:32px;
  }
}

/* ===== OFFICE LIST ===== */

#sk-office-list{
    padding-top:90px;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    overflow:hidden;
}

/* Heading */
.office-head{
    text-align:center;
    margin-bottom:55px;
}

.office-head span{
    color:#f5b820;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.office-head h2{
    color:#fff;
    font-size:46px;
    font-weight:900;
    margin:14px 0;
}

.office-head p{
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* List */
.office-list-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:50px;
}

/* Item */
.office-item{
    position:relative;
    padding-bottom:14px;
    transition:.35s ease;
}

/* Underline */
.office-item::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:0;
    height:3px;

    background:#f5b820;

    transition:.35s ease;
}

.office-item:hover::after{
    width:100%;
}

/* Number */
.office-item span{
    display:block;

    color:#f5b820;

    font-size:14px;
    font-weight:800;

    letter-spacing:2px;

    margin-bottom:10px;
}

/* City */
.office-item h4{
    color:#fff;
    font-size:34px;
    font-weight:900;
    margin:0;

    transition:.35s ease;
}

.office-item:hover h4{
    color:#f5b820;
    transform:translateY(-4px);
}

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

    .office-head h2{
        font-size:34px;
    }

    .office-list-wrap{
        gap:35px;
    }

    .office-item h4{
        font-size:28px;
    }

}

/* ================================
   FLOATING CONTACT BUTTONS
================================ */


.floating-contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 140px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  animation: floatPulse 1.8s infinite;
  transition: all 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
}

/* .call-btn {
  background: #0b63ce;
} */

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.28);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

@media (max-width: 768px) {
  .floating-contact-buttons {
    right: 25px;
    bottom: 140px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* Floating Buttons Hidden Initially */
.floating-contact-buttons{
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 14px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(30px);

    transition: all 0.4s ease;
}

/* Show After Scroll */
.floating-contact-buttons.visible{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.floating-contact-buttons {
    position: fixed !important;
    right: 22px !important;
    bottom: 140px !important;
    z-index: 999999 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.floating-contact-buttons.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 25px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp-btn {
    background: #25D366;
}



.support-btn img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ===== FOOTER LINKEDIN ===== */

#footer-linkdin{
    display:flex;
    /* align-items:center;
    justify-content:center; */

    margin-top:20px;
   
}

#footer-linkdin .linkedin-icon{
    width:52px;
    height:52px;

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

    background:#0077b5;
    color:#fff;

    font-size:24px;
    font-weight:800;

    text-decoration:none;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(0,119,181,.25);
     border-radius: 10px;
}

#footer-linkdin .linkedin-icon:hover{
    background:#fff;
    color:#0077b5;

    transform:translateY(-5px);
}

