

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}



body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover {
  background: #034f96;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(5, 99, 187, 0.4);
}

.back-to-top.clicked {
  transform: scale(0.85);
  background: #023a75;
  box-shadow: 0 2px 8px rgba(5, 99, 187, 0.6);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header - Custom Left Transparent Pill
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    left: -300px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu - Transparent Pill
--------------------------------------------------------------*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 56px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
  color: #000000;
  transition: all 0.3s ease;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #fff;
}

@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

/* Hover State */
.nav-menu a:hover,
.nav-menu li:hover > a {
  background: #0563bb;
  border-color: #0563bb;
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.4);
}

.nav-menu a:hover i,
.nav-menu li:hover > a i {
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover > a span {
  display: block;
  color: #fff;
}

/* Active State */
.nav-menu .active,
.nav-menu .active:focus {
  background: #0563bb;
  border-color: #0563bb;
  color: #fff;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.4);
}

.nav-menu .active i,
.nav-menu .active:focus i {
  color: #fff;
}

.nav-menu .active span,
.nav-menu .active:focus span {
  color: #fff;
}

.nav-menu .active:hover,
.nav-menu li:hover > .active {
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  background: #0563bb;
  border-color: #0563bb;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #0563bb;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/hero-bg.JPG') center center / cover no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(3, 74, 138, 0.6) 60%,
    rgba(3, 74, 138, 0.95) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 40px 50px 40px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  font-family: "Raleway", sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 10px 0 0 0;
  font-family: "Poppins", sans-serif;
}

.hero-left p span {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 210, 110, 0.15);
  border: 1px solid rgba(24, 210, 110, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.hero-available i {
  font-size: 8px;
  color: #18d26e;
  animation: pulse 1.5s infinite;
}

#hero .social-links {
  display: flex;
  gap: 8px;
  margin: 0;
}

#hero .social-links a {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 0;
}

#hero .social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

@media (min-width: 992px) {
  #hero {
    padding-left: 100px;
  }

  .hero-content {
    padding: 0 60px 60px 60px;
  }

  .hero-left h1 {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-content {
    padding: 0 20px 40px 20px;
  }
}

@media (max-width: 575px) {
  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #hero {
    background-position: 70% center; /* shift right to show face */
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
    width: 100%;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-available {
    font-size: 12px;
  }

  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .portfolio .portfolio-container .portfolio-item {
    width: 50% !important;
    padding: 6px;
  }

  .portfolio .portfolio-wrap img {
    height: 140px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 11px;
  }

  .mag-category {
    font-size: 9px;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  /* featured items take full width on mobile */
  .portfolio-item.mag-featured {
    width: 100% !important;
  }
}

@media (max-width: 400px) {
  .portfolio .portfolio-wrap img {
    height: 120px;
  }

  .hero-left h1 {
    font-size: 24px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About - Updated
--------------------------------------------------------------*/
.about-img {
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .gs-info-grid {
    grid-template-columns: 1fr;
  }
}


.about .row {
  align-items: stretch;
}

.about-img-wrap {
  height: 100%;
}

.about-img {
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Achievement - Glassmorphism
--------------------------------------------------------------*/
.facts {
  background: linear-gradient(135deg, #0563bb 0%, #034a8a 100%);
  position: relative;
  overflow: hidden;
}

.facts::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.facts::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.facts .section-title h2 {
  color: #fff;
}

.facts .section-title h2::before {
  background: rgba(255, 255, 255, 0.3);
}

.facts .section-title h2::after {
  background: #fff;
}

.facts .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.glass-achieve-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ga-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ga-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ga-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: all 0.3s ease;
}

.ga-card:hover .ga-icon-wrap {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(10deg) scale(1.1);
}

.ga-icon-wrap i {
  font-size: 24px;
  color: #fff;
}

.ga-num {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.ga-soon {
  font-size: 22px;
  letter-spacing: 2px;
}

.ga-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .glass-achieve-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ga-num {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .glass-achieve-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ga-card {
    padding: 20px 14px;
  }

  .ga-num {
    font-size: 28px;
  }

  .ga-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .ga-icon-wrap i {
    font-size: 18px;
  }

  .ga-label {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Skills - Neumorphism
--------------------------------------------------------------*/
.skills .neu-skill-item {
  background: #e0e5ec;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 8px #b8bec7, -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
}

.skills .neu-skill-item:hover {
  box-shadow: 6px 6px 12px #b8bec7, -6px -6px 12px #ffffff;
}

.skills .neu-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skills .neu-skill-name {
  font-size: 14px;
  font-weight: 700;
  color: #45505b;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skills .neu-skill-level {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skills .neu-skill-level.beginner {
  background: #fff3cd;
  color: #856404;
}

.skills .neu-skill-level.intermediate {
  background: #cce5ff;
  color: #004085;
}

.skills .neu-skill-level.advanced {
  background: #d4edda;
  color: #155724;
}

.skills .neu-skill-level.expert {
  background: #f8d7da;
  color: #721c24;
}

.skills .neu-track {
  height: 8px;
  background: #c8cdd5;
  border-radius: 50px;
  box-shadow: inset 2px 2px 4px #b0b5bc, inset -2px -2px 4px #f0f3f8;
  overflow: hidden;
}

.skills .neu-fill {
  height: 100%;
  background: #0563bb;
  border-radius: 50px;
  width: 0%;
  transition: width 1.5s ease;
}

/* Responsive */
@media (max-width: 767px) {
  .skills .neu-skill-item {
    padding: 12px 16px;
    margin-bottom: 15px;
  }

  .skills .neu-skill-name {
    font-size: 12px;
  }

  .skills .neu-skill-level {
    font-size: 10px;
    padding: 2px 10px;
  }
}

@media (max-width: 575px) {
  .skills .neu-skill-name {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Resume - Timeline Cards
--------------------------------------------------------------*/
.tl-wrap {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
}

.tl-wrap::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d0d8e4;
  border-radius: 2px;
}

.tl-item {
  position: relative;
  margin-bottom: 20px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -21px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0563bb;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #0563bb;
  transition: all 0.3s ease;
}

.tl-item:hover .tl-dot {
  background: #fff;
  box-shadow: 0 0 0 2px #0563bb;
  transform: scale(1.2);
}

.tl-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid #0563bb;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.tl-item:hover .tl-card {
  background: #fff;
  box-shadow: 4px 4px 16px rgba(5, 99, 187, 0.1);
  transform: translateX(4px);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.tl-title {
  font-size: 14px;
  font-weight: 700;
  color: #0563bb;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.tl-company {
  font-size: 12px;
  color: #45505b;
  font-weight: 600;
  margin-top: 3px;
}

.tl-sub {
  font-size: 11px;
  color: #728394;
  margin-top: 2px;
  font-style: italic;
}

.tl-date {
  font-size: 10px;
  background: #0563bb;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
  height: fit-content;
}

.tl-desc {
  font-size: 13px;
  color: #728394;
  line-height: 1.6;
  border-top: 1px solid #e9ecef;
  padding-top: 8px;
}

/*--------------------------------------------------------------
# Summary - Glassmorphism
--------------------------------------------------------------*/
.glass-summary {
  background: linear-gradient(135deg, #0563bb 0%, #034a8a 100%);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.glass-summary::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.glass-summary::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.gs-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.gs-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.gs-top-info {
  flex: 1;
}

.gs-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.gs-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gs-location {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gs-location i {
  font-size: 11px;
}

.gs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.gs-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.gs-tag:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gs-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 14px 0;
  position: relative;
  z-index: 1;
}

.gs-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.gs-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.gs-info-row i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  width: 16px;
  flex-shrink: 0;
}

.gs-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.gs-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 210, 110, 0.2);
  border: 1px solid rgba(24, 210, 110, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.gs-available i {
  color: #18d26e;
  font-size: 13px;
  animation: pulse 1.5s infinite;
}

/*--------------------------------------------------------------
# Resume Responsive
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .tl-header {
    flex-direction: column;
    gap: 6px;
  }

  .tl-title {
    font-size: 12px;
  }

  .tl-company {
    font-size: 11px;
  }

  .tl-desc {
    font-size: 12px;
  }

  .tl-date {
    font-size: 9px;
    padding: 2px 8px;
  }

  .glass-summary {
    padding: 18px;
  }

  .gs-name {
    font-size: 15px;
  }

  .gs-avatar {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .gs-info-row {
    font-size: 11px;
  }

  .gs-desc {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .tl-wrap {
    padding-left: 18px;
  }

  .tl-dot {
    left: -15px;
    width: 10px;
    height: 10px;
  }

  .tl-card {
    padding: 10px 12px;
  }

  .gs-top {
    flex-direction: column;
    text-align: center;
  }

  .gs-location {
    justify-content: center;
  }

  .gs-tags {
    justify-content: center;
  }

  .gs-available {
    display: flex;
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Portfolio - Clean Grid
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio - Magazine Layout Fixed
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio - Clean Grid
--------------------------------------------------------------*/
.portfolio .mag-filters {
  margin-bottom: 30px;
}

.portfolio .mag-filters ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: none;
  justify-content: center;
  margin-bottom: 10px;
}

.portfolio .mag-filters ul li {
  cursor: pointer;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #728394;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
}

.portfolio .mag-filters ul li:hover,
.portfolio .mag-filters ul li.filter-active {
  color: #fff;
  background: #0563bb;
  border-color: #0563bb;
}

.portfolio .portfolio-item {
  margin-bottom: 24px;
}

.portfolio .portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0 8px 30px rgba(5, 99, 187, 0.15);
  transform: translateY(-4px);
}

.portfolio .portfolio-wrap img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-info {
  padding: 14px 16px;
  background: #fff;
  position: relative;
  opacity: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  background: #0563bb;
}

.mag-info-content {
  flex: 1;
}

.mag-category {
  font-size: 10px;
  color: #0563bb;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.portfolio .portfolio-wrap:hover .mag-category {
  color: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 14px;
  color: #45505b;
  font-weight: 700;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.portfolio .portfolio-wrap:hover .portfolio-info h4 {
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-links {
  flex-shrink: 0;
  margin-left: 10px;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #0563bb;
  font-size: 20px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  background: #eef7ff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #d0e8ff;
}

.portfolio .portfolio-wrap:hover .portfolio-links a {
  background: #fff;
  color: #0563bb;
  border-color: #fff;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #0563bb;
  color: #fff;
  border-color: #0563bb;
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-links a:hover {
  background: #034f96;
  color: #fff;
  border-color: #034f96;
}



/* Responsive */
@media (max-width: 767px) {
  .portfolio .portfolio-wrap img {
    height: 180px;
  }

  .portfolio .mag-filters ul li {
    font-size: 11px;
    padding: 6px 14px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-wrap img {
    height: 150px;
  }

  .portfolio .mag-filters ul li {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .portfolio .portfolio-wrap img {
    height: 180px;
  }

  .portfolio .mag-filters ul li {
    font-size: 11px;
    padding: 8px 12px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-wrap img {
    height: 150px;
  }

  .portfolio .mag-filters ul li {
    font-size: 10px;
    padding: 6px 8px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .portfolio .portfolio-wrap img {
    height: 180px;
  }

  .portfolio .mag-filters ul li {
    font-size: 11px;
    padding: 6px 14px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-wrap img {
    height: 150px;
  }

  .portfolio .mag-filters ul li {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .portfolio .portfolio-wrap img {
    height: 180px;
  }

  .portfolio .mag-filters ul li {
    font-size: 11px;
    padding: 8px 12px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-wrap img {
    height: 150px;
  }

  .portfolio .mag-filters ul li {
    font-size: 10px;
    padding: 6px 8px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services - Glassmorphism
--------------------------------------------------------------*/
.services {
  background: linear-gradient(135deg, #0563bb 0%, #034a8a 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.services .section-title h2 {
  color: #fff;
}

.services .section-title h2::before {
  background: rgba(255, 255, 255, 0.3);
}

.services .section-title h2::after {
  background: #fff;
}

.services .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.srv-glass-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  z-index: 1;
}

.srv-glass-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.srv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  transition: all 0.3s ease;
}

.srv-glass-card:hover .srv-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(10deg) scale(1.1);
}

.srv-icon i {
  font-size: 28px;
  color: #fff;
}

.srv-glass-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
}

.srv-glass-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}


/* Responsive */
@media (max-width: 767px) {
  .srv-glass-card {
    padding: 22px 18px;
  }

  .srv-glass-card h4 {
    font-size: 16px;
  }

  .srv-icon {
    width: 52px;
    height: 52px;
  }

  .srv-icon i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Inspirations - Quote Cards
--------------------------------------------------------------*/
.testimonials.section-bg {
  background: #f8f9fa;
}

.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid #0563bb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(5, 99, 187, 0.12);
}

.quote-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.quote-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0563bb;
  flex-shrink: 0;
}

.quote-name {
  font-size: 14px;
  font-weight: 700;
  color: #45505b;
  font-family: "Poppins", sans-serif;
}

.quote-role {
  font-size: 11px;
  color: #0563bb;
  font-weight: 600;
  margin-top: 2px;
}

.quote-mark {
  font-size: 48px;
  color: #0563bb;
  opacity: 0.2;
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.quote-text {
  font-size: 13px;
  color: #728394;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .quote-card {
    padding: 18px;
  }

  .quote-name {
    font-size: 13px;
  }

  .quote-text {
    font-size: 12px;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact - Glassmorphism
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, #0563bb 0%, #034a8a 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.contact .section-title h2 {
  color: #fff;
}

.contact .section-title h2::before {
  background: rgba(255, 255, 255, 0.3);
}

.contact .section-title h2::after {
  background: #fff;
}

.contact .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-glass-wrap {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.contact-glass-info {
  flex: 1;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
}

.contact-glass-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-icon i {
  font-size: 16px;
  color: #fff;
}

.contact-info-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.contact-info-value {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-top: 2px;
}

.phone-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: 2px;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.contact-glass-form {
  flex: 1.5;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  padding: 10px 14px;
  width: 100%;
  transition: all 0.3s ease;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  box-shadow: none;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 46px;
}

.contact .php-email-form textarea {
  resize: none;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  color: #0563bb;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact .php-email-form .sent-message {
  background: rgba(24, 210, 110, 0.2);
  border: 1px solid rgba(24, 210, 110, 0.4);
  color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
}

.contact .php-email-form .error-message {
  background: rgba(237, 60, 13, 0.2);
  border: 1px solid rgba(237, 60, 13, 0.4);
  color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
}

.contact .php-email-form .loading {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 767px) {
  .contact-glass-wrap {
    flex-direction: column;
  }

  .contact-glass-info,
  .contact-glass-form {
    min-width: unset;
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer - Glassmorphism
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #0563bb 0%, #034a8a 100%);
  color: #fff;
  font-size: 14px;
  padding: 50px 0 20px 0;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

#footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.footer-glass-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.footer-glass-left {
  flex: 2;
  min-width: 260px;
}

.footer-glass-right {
  flex: 1;
  min-width: 180px;
}

#footer h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
}

#footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-links ul li a i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-glass-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer-glass-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#footer .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  
  position: right;
}

#footer .last-updated {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: #fff;
  font-style: normal;
  z-index: 996;
  backdrop-filter: blur(10px);
}

#footer .last-updated i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 5px;
  vertical-align: middle;
}

#footer .last-updated span {
  color: #fff;
  font-weight: 600;
}



/* Responsive */
@media (max-width: 767px) {
  .footer-glass-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .footer-glass-bottom {
    flex-direction: column;
    text-align: center;
  }

  #footer h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Freelancing
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Freelancing
--------------------------------------------------------------*/
.freelancing .freelance-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  height: 100%;
}

.freelancing .freelance-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.freelancing .freelance-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.freelancing .freelance-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.freelancing .freelance-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.freelancing .freelance-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  color: #45505b;
}

.freelancing .freelance-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #728394;
}

.freelancing .freelance-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

/* Blue - UI/UX Design */
.freelancing .iconbox-blue i { color: #47aeff; }
.freelancing .iconbox-blue:hover .icon i { color: #fff; }
.freelancing .iconbox-blue:hover .icon path { fill: #47aeff; }

/* Orange - Graphic Design */
.freelancing .iconbox-orange i { color: #ffa76e; }
.freelancing .iconbox-orange:hover .icon i { color: #fff; }
.freelancing .iconbox-orange:hover .icon path { fill: #ffa76e; }

/* Pink - Video Editing */
.freelancing .iconbox-pink i { color: #e80368; }
.freelancing .iconbox-pink:hover .icon i { color: #fff; }
.freelancing .iconbox-pink:hover .icon path { fill: #e80368; }

/* Yellow - Animation */
.freelancing .iconbox-yellow i { color: #ffbb2c; }
.freelancing .iconbox-yellow:hover .icon i { color: #fff; }
.freelancing .iconbox-yellow:hover .icon path { fill: #ffbb2c; }

/* Red - Sound Design */
.freelancing .iconbox-red i { color: #ff5828; }
.freelancing .iconbox-red:hover .icon i { color: #fff; }
.freelancing .iconbox-red:hover .icon path { fill: #ff5828; }

/* Teal - Web Design */
.freelancing .iconbox-teal i { color: #11dbcf; }
.freelancing .iconbox-teal:hover .icon i { color: #fff; }
.freelancing .iconbox-teal:hover .icon path { fill: #11dbcf; }

.freelancing .freelance-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef7ff;
  border: 1px solid #b6d9f7;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: #0563bb;
  font-weight: 600;
  margin-bottom: 15px;
}

.freelancing .freelance-availability i {
  font-size: 16px;
  color: #18d26e;
}


.freelancing .freelance-availability i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}


.freelancing .freelance-cta {
  display: inline-block;
  background: #0563bb;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  margin-left: 10px;
}

.freelancing .freelance-cta:hover {
  background: #0678e3;
  color: #fff;
}

.about img {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about img:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}







/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/* Large tablets and small desktops */
@media (max-width: 1199px) {
  .freelancing .freelance-box {
    padding: 50px 15px 60px 15px;
  }

  .services .icon-box {
    padding: 50px 15px 60px 15px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  #main {
    margin-left: 0;
  }

  .freelancing .freelance-box {
    padding: 40px 15px 50px 15px;
    margin-bottom: 20px;
  }

  .freelancing .freelance-box h4 {
    font-size: 18px;
  }

  .freelancing .freelance-box .icon {
    width: 80px;
    height: 80px;
  }

  .freelancing .freelance-box .icon i {
    font-size: 28px;
  }

  .freelancing .freelance-box .icon svg {
    width: 80px;
    height: 80px;
  }

  .freelancing .freelance-availability {
    font-size: 12px;
    padding: 6px 14px;
  }

  .freelancing .freelance-cta {
    font-size: 13px;
    padding: 8px 20px;
    margin-left: 6px;
  }

  .resume .resume-title {
    font-size: 22px;
  }

  .resume .resume-item h4 {
    font-size: 15px;
  }

  #footer .last-updated {
    font-size: 11px;
    padding: 5px 10px;
    bottom: 10px;
    left: 10px;
  }
}

/* Mobile landscape */
@media (max-width: 767px) {
  .freelancing .freelance-box {
    padding: 30px 10px 40px 10px;
    margin-bottom: 15px;
  }

  .freelancing .freelance-box h4 {
    font-size: 16px;
    margin: 8px 0 10px 0;
  }

  .freelancing .freelance-box p {
    font-size: 13px;
  }

  .freelancing .freelance-box .icon {
    width: 70px;
    height: 70px;
  }

  .freelancing .freelance-box .icon i {
    font-size: 24px;
  }

  .freelancing .freelance-box .icon svg {
    width: 70px;
    height: 70px;
  }

  .freelancing .freelance-availability {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .freelancing .freelance-cta {
    display: block;
    margin: 10px auto 0 auto;
    text-align: center;
    width: fit-content;
  }

  .resume .resume-item h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .resume .resume-item h5 {
    font-size: 13px;
  }

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

  .contact .info h4 {
    font-size: 18px;
  }

  .contact .info p {
    font-size: 13px;
  }

  #footer h3 {
    font-size: 26px;
  }

  #footer p {
    font-size: 13px;
  }

  #footer .last-updated {
    font-size: 11px;
    padding: 4px 10px;
    bottom: 8px;
    left: 8px;
  }

  .services .icon-box {
    padding: 30px 10px 40px 10px;
    margin-bottom: 20px;
  }

  .services .icon-box h4 {
    font-size: 18px;
  }
}

/* Mobile portrait */
@media (max-width: 575px) {
  .freelancing .freelance-box {
    padding: 25px 10px 35px 10px;
  }

  .freelancing .freelance-box h4 {
    font-size: 15px;
  }

  .freelancing .freelance-box .icon {
    width: 60px;
    height: 60px;
  }

  .freelancing .freelance-box .icon i {
    font-size: 22px;
  }

  .freelancing .freelance-box .icon svg {
    width: 60px;
    height: 60px;
  }

  .resume .resume-item {
    padding: 0 0 15px 15px;
  }

  .resume .resume-item h4 {
    font-size: 13px;
    line-height: 18px;
  }

  .facts .count-box span {
    font-size: 28px;
  }

  .facts .count-box p {
    font-size: 12px;
  }

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

  .contact .php-email-form button[type=submit] {
    width: 100%;
  }

  #footer .last-updated {
    font-size: 10px;
    padding: 4px 8px;
    bottom: 6px;
    left: 6px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
  }

  #hero p {
    font-size: 16px;
  }
}



/*--------------------------------------------------------------
# Freelancing Services - match Services section
--------------------------------------------------------------*/
.freelancing .freelance-services-row {
  justify-content: center;
}

.freelancing .freelance-services-row .freelance-service-col {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

@media (max-width: 991px) {
  .freelancing .freelance-services-row .freelance-service-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .freelancing .freelance-services-row .freelance-service-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Full Width Sections
--------------------------------------------------------------*/
.facts,
.services,
.contact,
#footer {
  margin-left: -15px;
  margin-right: -15px;
}

.facts .container,
.services .container,
.contact .container,
#footer .container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 991px) {
  .facts .container,
  .services .container,
  .contact .container,
  #footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .facts .container,
  .services .container,
  .contact .container,
  #footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.facts,
.services,
.contact,
#footer {
  margin-left: -100px;
  padding-left: 100px;
}

@media (max-width: 991px) {
  .facts,
  .services,
  .contact,
  #footer {
    margin-left: 0;
    padding-left: 0;
  }
}

#footer {
  background: linear-gradient(135deg, #023e7d 0%, #012a56 100%);
  
}

#footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

#footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

#footer .last-updated {
  position: fixed;
  bottom: 15px;
  left: 15px;
  
  background: #00000088;
  border: 1px solid #01122060;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: #ffc107;
  font-style: normal;
  z-index: 996;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

#footer .last-updated:hover {
  background: #0e3604;
  border: 1px solid #031f8a;    
  color: #ffc107;

}


#footer .last-updated i {
  font-size: 13px;
  color: #ffc107;
  vertical-align: middle;
}

#footer .last-updated span {
  color: #fff;
  font-weight: 700;
}

.resume-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0563bb, #034f96);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.35);
}
.resume-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 99, 187, 0.45);
  color: #fff;
}
.resume-download-btn i {
  font-size: 18px;
}



/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 65px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 996;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.whatsapp-float.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-float i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* WhatsApp in contact socials */
.contact-socials a.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.contact-socials a.whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}


.freelance-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #2ecc71;
  padding: 10px 18px;
  border: 1.5px solid #2ecc71;
  border-radius: 50px;
  background: rgba(46, 204, 113, 0.06);
}

.freelance-availability i {
  font-size: 15px;
  color: #2ecc71;
}

.freelance-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  background: #0563bb;
  color: #fff !important;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.35);
}

.freelance-cta:hover {
  background: #034f96;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 99, 187, 0.45);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  #footer .last-updated {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 10px;
    left: 10px;
  }
}



@media (max-width: 575px) {
  #footer .last-updated {
    font-size: 10px;
    padding: 4px 10px;
    bottom: 8px;
    left: 8px;
  }
}


/* ── CLIENTS SECTION ── */
.clients {
  padding: 50px 0;
  background: #fff;
}

.clients-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Fade edges */
.clients-strip::before,
.clients-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.clients-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0a1628;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #7eb8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoPulse 1.5s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  from { opacity: 0.7; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, #0563bb, #4facfe);
  border-radius: 50px;
  width: 0%;
  animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
  0% { width: 0%; }
  60% { width: 80%; }
  100% { width: 100%; }
}

.preloader-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ── DARK MODE TOGGLE ── */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.theme-toggle:hover {
  background: #0563bb;
  border-color: #0563bb;
  transform: rotate(20deg) scale(1.1);
}

.theme-toggle i {
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}

/* ── DARK MODE STYLES ── */
body.dark-mode {
  background: #0d1117;
  color: #e6edf3;
}

body.dark-mode #header {
  background: transparent;
}

body.dark-mode .nav-menu a,
body.dark-mode .nav-menu a:focus {
  background: rgba(255,255,255,0.08);
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.1);
}

body.dark-mode .nav-menu a span {
  color: #e6edf3;
}

body.dark-mode .about {
  background: #0d1117;
}

body.dark-mode .section-title h2 {
  color: #e6edf3;
}

body.dark-mode .section-title h2::before {
  background: #30363d;
}

body.dark-mode .skills {
  background: #161b22;
}

body.dark-mode .skills.section-bg {
  background: #161b22;
}

body.dark-mode .neu-skill-item {
  background: #1c2128;
  box-shadow: 4px 4px 8px #0d1117, -4px -4px 8px #252c36;
}

body.dark-mode .neu-skill-name {
  color: #e6edf3;
}

body.dark-mode .neu-track {
  background: #0d1117;
  box-shadow: inset 2px 2px 4px #080d12, inset -2px -2px 4px #1c2128;
}

body.dark-mode .resume {
  background: #0d1117;
}

body.dark-mode .education.section-bg,
body.dark-mode #education {
  background: #161b22;
}

body.dark-mode .tl-card {
  background: #1c2128;
  border-left-color: #0563bb;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

body.dark-mode .tl-item:hover .tl-card {
  background: #252c36;
}

body.dark-mode .tl-company {
  color: #8b949e;
}

body.dark-mode .tl-sub {
  color: #6e7681;
}

body.dark-mode .tl-desc {
  color: #8b949e;
  border-top-color: #30363d;
}

body.dark-mode .portfolio.section-bg {
  background: #161b22;
}

body.dark-mode .portfolio .portfolio-wrap {
  background: #1c2128;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

body.dark-mode .portfolio .portfolio-info {
  background: #1c2128;
}

body.dark-mode .portfolio .portfolio-wrap .portfolio-info h4 {
  color: #e6edf3;
}

body.dark-mode .portfolio .portfolio-wrap .portfolio-links a {
  background: #252c36;
  border-color: #30363d;
  color: #7eb8ff;
}

body.dark-mode .portfolio .mag-filters ul li {
  background: #1c2128;
  border-color: #30363d;
  color: #8b949e;
}

body.dark-mode .testimonials.section-bg {
  background: #161b22;
}

body.dark-mode .quote-card {
  background: #1c2128;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

body.dark-mode .quote-name {
  color: #e6edf3;
}

body.dark-mode .quote-text {
  color: #8b949e;
}

body.dark-mode .resume-download-btn {
  box-shadow: 0 4px 15px rgba(5,99,187,0.2);
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #0563bb;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(5,99,187,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, transform 0.12s ease;
}

.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: #0563bb;
  background: rgba(5,99,187,0.08);
}

.cursor-dot.clicking {
  transform: translate(-50%, -50%) scale(0.5);
}

@media (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (min-width: 769px) {
  * {
    cursor: none !important;
  }
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog.section-bg {
  background: #f8f9fa;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e8f5;
  text-decoration: none;
  color: #1a1f2e;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 99, 187, 0.12);
  border-color: #0563bb;
  color: #1a1f2e;
  text-decoration: none;
}

/* Featured card thumb */
.blog-card-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  flex-shrink: 0;
}

/* Small card — horizontal layout */
.blog-card-small {
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 24px;
}

.blog-card-small:last-child {
  margin-bottom: 0;
}

.blog-card-thumb-sm {
  width: 120px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  border-radius: 0;
}

/* Thumb backgrounds */
.blog-thumb-1 { background: linear-gradient(135deg, #0563bb, #034f96); }
.blog-thumb-2 { background: linear-gradient(135deg, #2D5016, #1a3009); }
.blog-thumb-3 { background: linear-gradient(135deg, #1a1a2e, #16213e); }

/* Card body */
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-tag {
  padding: 3px 10px;
  background: #eef3fa;
  color: #0563bb;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-read-time {
  font-size: 11px;
  color: #6b7a99;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
}

.blog-card-small .blog-card-title {
  font-size: 15px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0563bb;
  font-family: "Poppins", sans-serif;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-card-small {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .blog-card-small {
    flex-direction: column;
  }

  .blog-card-thumb-sm {
    width: 100%;
    height: 140px;
    font-size: 48px;
  }

  .blog-card-thumb {
    height: 180px;
    font-size: 56px;
  }

  .blog-card-title {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Secondary Pages — Shared Components
--------------------------------------------------------------*/

/* ── TOPBAR ── */
.sec-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e0e8f5;
  gap: 16px;
}

.sec-topbar-logo {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #0563bb;
  text-decoration: none;
  flex-shrink: 0;
}

.sec-topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sec-topbar-link {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4a5568 !important;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sec-topbar-link:hover {
  color: #0563bb !important;
  background: #eef3fa;
}

.sec-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #0563bb;
  color: #fff !important;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s ease;
  font-family: "Poppins", sans-serif;
  margin-left: 8px;
  flex-shrink: 0;
}

.sec-btn-back:hover {
  background: #034f96;
  transform: translateY(-1px);
  color: #fff !important;
}

@media (max-width: 900px) {
  .sec-topbar { padding: 0 20px; }
  .sec-topbar-link { display: none; }
}

/* ── FOOTER ── */
.sec-footer {
  background: linear-gradient(135deg, #023e7d 0%, #012a56 100%);
  color: #fff;
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.sec-footer::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.sec-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sec-footer-left {
  flex: 2;
  min-width: 260px;
}

.sec-footer-right {
  flex: 1;
  min-width: 180px;
}

.sec-footer-brand {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.sec-footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sec-footer-socials {
  display: flex;
  gap: 10px;
}

.sec-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sec-footer-socials a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.sec-footer-links-title {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.sec-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-footer-links li {
  margin-bottom: 8px;
}

.sec-footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.sec-footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.sec-footer-links li a i {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.sec-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .sec-footer-inner { flex-direction: column; gap: 24px; padding: 0 20px; }
  .sec-footer-bottom { padding: 20px 20px 0; }
}

/* ── BACK TO TOP ── */
.sec-back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sec-back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.sec-back-to-top:hover {
  background: #034f96;
  transform: translateY(-3px);
}

.sec-back-to-top.clicked {
  transform: scale(0.85);
  background: #023a75;
}

.sec-back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

/* ── WHATSAPP ── */
.sec-whatsapp {
  position: fixed;
  bottom: 65px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 996;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  text-decoration: none;
}

.sec-whatsapp.active {
  visibility: visible;
  opacity: 1;
}

.sec-whatsapp i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.sec-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ── DARK MODE TOGGLE ── */
.sec-theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  background: rgba(5,99,187,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(5,99,187,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sec-theme-toggle:hover {
  background: #0563bb;
  border-color: #0563bb;
  transform: rotate(20deg) scale(1.1);
}

.sec-theme-toggle i {
  font-size: 16px;
  color: #0563bb;
  transition: all 0.3s ease;
}

.sec-theme-toggle:hover i {
  color: #fff;
}

/* ── DARK MODE ── */
body.dark-mode .sec-topbar {
  background: rgba(13,17,23,0.95);
  border-bottom-color: #30363d;
}

body.dark-mode .sec-topbar-logo { color: #7eb8ff; }
body.dark-mode .sec-topbar-link { color: #8b949e !important; }
body.dark-mode .sec-topbar-link:hover { color: #e6edf3 !important; background: #1c2128; }
body.dark-mode .sec-btn-back { background: #1f6feb; }
body.dark-mode .sec-theme-toggle { background: rgba(31,111,235,0.15); border-color: rgba(31,111,235,0.3); }
body.dark-mode .sec-theme-toggle i { color: #7eb8ff; }

/* ── BLOG SECTION FIX ── */
#blog .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.blog-card-featured {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  max-height: 520px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 4px 20px rgba(5,99,187,0.08);
  border: 1px solid #e0e8f5;
  transition: all 0.3s ease;
}

.blog-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(5,99,187,0.15);
  border-color: #0563bb;
}

.blog-card-thumb {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  flex-shrink: 0;
}

.blog-thumb-1 { background: linear-gradient(135deg, #0563bb, #034f96); }
.blog-thumb-2 { background: linear-gradient(135deg, #2D5016, #1a3009); }
.blog-thumb-3 { background: linear-gradient(135deg, #1a1a2e, #0f3460); }

.blog-card-featured .blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-small {
  display: flex !important;
  flex-direction: row;
  align-items: stretch;
  height: auto !important;
  min-height: 160px;
  max-height: 200px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 4px 20px rgba(5,99,187,0.08);
  border: 1px solid #e0e8f5;
  transition: all 0.3s ease;
}

.blog-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(5,99,187,0.14);
  border-color: #0563bb;
}

.blog-card-thumb-sm {
  width: 120px !important;
  min-width: 120px !important;
  max-width: 120px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}

.blog-card-small .blog-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  background: #e8f0fd;
  color: #0563bb;
  border-radius: 50px;
}

.blog-read-time {
  font-size: 12px;
  color: #6b7a99;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: 16px !important;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-small .blog-card-title {
  font-size: 14px !important;
  margin-bottom: 6px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #6b7a99;
  line-height: 1.6;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.blog-card-small .blog-card-excerpt {
  font-size: 13px;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #0563bb;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

#blog .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#blog .col-lg-6:last-child .blog-card-small {
  margin-bottom: 0 !important;
  flex: 1;
}

@media (max-width: 991px) {
  .blog-card-featured { max-height: none; margin-bottom: 16px; }
  .blog-card-small { max-height: none; }
  .blog-card-thumb-sm { width: 100px !important; min-width: 100px !important; }
}

@media (max-width: 576px) {
  .blog-card-small { flex-direction: column; }
  .blog-card-thumb-sm { width: 100% !important; min-width: 100% !important; height: 100px !important; }
}

/* ── CURSOR — YELLOW ── */
.cursor-dot {
  width: 8px !important;
  height: 8px !important;
  background: #f5c518 !important;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-dot.clicking {
  transform: translate(-50%, -50%) scale(0.6) !important;
}

.cursor-ring {
  width: 36px !important;
  height: 36px !important;
  border: 2px solid #f5c518 !important;
  background: transparent !important;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hovering {
  width: 52px !important;
  height: 52px !important;
  border-color: rgba(245, 197, 24, 0.5) !important;
  background: rgba(245, 197, 24, 0.08) !important;
}