@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  /* gradient */

  --bg-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(240, 1%, 25%) 3%, 
    hsl(0, 0%, 19%) 97%
  );
  --bg-gradient-jet: linear-gradient(
    to bottom right, 
    hsla(240, 1%, 18%, 0.251) 0%, 
    hsla(240, 2%, 11%, 0) 100%
  ), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(
    to bottom right, 
    hsl(0, 0%, 100%) 0%, 
    hsla(36, 100%, 69%, 0) 50%
  );
  --bg-gradient-yellow-2: linear-gradient(
    135deg, 
    hsla(44, 100%, 95%, 0.251) 0%, 
    hsla(35, 100%, 68%, 0) 59.86%
  ), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(0, 0%, 25%) 0%, 
    hsla(0, 0%, 25%, 0) 50%
  );
  --text-gradient-yellow: linear-gradient(
    to right, 
    hsl(0, 0%, 100%), 
    hsl(0, 0%, 73%)
  );

  /* solid */

  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(45, 100%, 96%);
  --vegas-gold: hsl(46, 27%, 85%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(0, 19%, 93%);

  /**
   * typography
   */

  /* font-family */
  --ff-heading: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /**
   * shadow
   */

  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;

}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--jet);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 2rem;
}

.company-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  width: 40px;
  height: auto;
}

.logo-text {
  color: var(--white-1);
  font-size: var(--fs-1);
  font-weight: var(--fw-600);
  font-family: var(--ff-heading);
  margin: 0;
  line-height: 1.2;
}

.logo-subtitle {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  margin: 0;
  margin-top: -2px;
}

.desktop-nav {
  display: none;
}

.desktop-nav .nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .nav-link {
  color: var(--light-gray);
  text-decoration: none;
  font-size: var(--fs-5);
  font-weight: var(--fw-400);
  transition: color var(--transition-1);
  position: relative;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--white-1);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: var(--white-1);
  transition: all var(--transition-1);
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 0;
  background: var(--bg-gradient-onyx);
  position: relative;
  overflow: hidden;
}

.hero .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: var(--fw-600);
  font-family: var(--ff-heading);
  color: var(--white-1);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--white-1);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--white-1);
  margin-bottom: 1.5rem;
  font-weight: var(--fw-400);
  direction: rtl;
  text-align: center;
}

.hero-description {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: var(--fw-600);
  color: var(--white-1);
  margin-bottom: 0.5rem;
  display: block;
  transition: transform 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.stat-number:hover {
  transform: scale(1.05);
}

.stat-label {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--light-gray);
  font-weight: var(--fw-400);
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: var(--fw-500);
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all var(--transition-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--white-1);
  color: var(--eerie-black-1);
  border: 2px solid var(--white-1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 244, 241, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white-1);
  border: 2px solid var(--white-1);
}

.btn-outline:hover {
  background: var(--white-1);
  color: var(--eerie-black-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Modern button style inspired by Tekvora */
.btn-modern {
  background: var(--white-1);
  color: var(--eerie-black-1);
  border: 2px solid var(--white-1);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--eerie-black-1), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--eerie-black-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.btn-modern:hover {
  color: var(--white-1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  border-color: var(--white-1);
}

.btn-modern:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-modern:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}

/* Alternative modern button with gradient effect */
.btn-gradient {
  background: linear-gradient(135deg, var(--white-1), var(--white-2));
  color: var(--eerie-black-1);
  border: 2px solid transparent;
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-gradient:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  animation-duration: 1s;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--smoky-black);
  border-radius: 48px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-gradient:hover {
  color: var(--white-1);
}

.hero-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 350px;
}

.hero-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out, float 6s ease-in-out 1s infinite;
}

.hero-img:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Disable right-click for all images */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-context-menu: none;
  pointer-events: auto;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
  animation: float 6s ease-in-out infinite;
}

/* Building Construction Animation Styles */
.building-construction {
  overflow: visible;
}

.building-construction .foundation {
  transform-origin: bottom;
}

.building-construction .building-main {
  transform-origin: bottom;
}

.building-construction .building-top {
  transform-origin: bottom;
}

.building-construction .windows-row-1 rect,
.building-construction .windows-row-2 rect {
  opacity: 0;
}

.building-construction .crane {
  transform-origin: bottom;
}

.building-construction .floating-elements {
  animation: constructionAmbient 12s ease-in-out infinite;
}

/* Additional construction-themed animations */
@keyframes constructionPulse {
  0%, 100% { 
    filter: drop-shadow(0 10px 30px rgba(255, 246, 240, 0.2));
  }
  50% { 
    filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.4));
  }
}

@keyframes constructionAmbient {
  0%, 100% { 
    transform: translateY(0px);
    opacity: 0.8;
  }
  25% { 
    transform: translateY(-2px);
    opacity: 0.9;
  }
  50% { 
    transform: translateY(0px);
    opacity: 1;
  }
  75% { 
    transform: translateY(-1px);
    opacity: 0.9;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--white-1);
  color: var(--smoky-black);
}

:focus { outline-color: var(--white-1); }

html { 
  font-family: var(--ff-body);
  width: 100%;
  height: 100%;
}

body { 
  background: var(--smoky-black);
  overflow-x: hidden;
  width: 100%;
  min-width: 100vw;
  margin: 0;
  padding: 0;
}

/* Prevent horizontal scroll on mobile */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Fix mobile touch and zoom */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Ensure all elements stay within viewport */
  *, *::before, *::after {
    max-width: 100vw;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Fix potential image overflow */
  img, svg {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve touch targets */
  button, .btn, .nav-link, .social-link {
    min-height: 44px;
    min-width: 44px;
  }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
.article-title,
.h1, .h2, .h3, .h4, .h5 {
  color: var(--white-2);
  text-transform: capitalize;
  font-family: var(--ff-heading);
}

.h1 { font-size: var(--fs-1); }
.h2 { font-size: var(--fs-2); }
.h3 { font-size: var(--fs-3); }
.h4 { font-size: var(--fs-4); }
.h5 { font-size: var(--fs-5); }

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--white-1);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 20px; }

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}





/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 0;
  margin-bottom: 75px;
  width: 100%;
  min-width: 100%;
}





/*-----------------------------------*\
  #MOBILE MENU
\*-----------------------------------*/

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-gradient-jet);
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--jet);
  z-index: 999;
  padding: 2rem 1.5rem;
  transition: left var(--transition-2);
  overflow-y: auto;
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 85%;
    max-width: 300px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 360px) {
  .mobile-menu {
    width: 90%;
    padding: 1.25rem 0.75rem;
  }
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 4rem;
}

.mobile-menu .nav-list li {
  margin-bottom: 0.5rem;
}

.mobile-menu .nav-link {
  color: var(--light-gray);
  text-decoration: none;
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  display: block;
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--jet);
  border-radius: 8px;
  transition: all var(--transition-1);
  margin-bottom: 0.5rem;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: var(--white-1);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-1);
  transform: translateX(5px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-2);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #ABOUT SECTION
\*-----------------------------------*/

.about-section {
  padding: 40px 20px 80px 20px;
  background: var(--bg-gradient-jet);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-1), transparent);
}

.about-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.about-content {
  display: grid;
  gap: 0;
  align-items: center;
}

.about-text {
  color: var(--light-gray);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.8;
  font-weight: var(--fw-400);
}

.about-text p {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 3px;
  height: 20px;
  background: var(--white-1);
  border-radius: 2px;
}

.company-credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--eerie-black-2);
  border-radius: 16px;
  border: 1px solid var(--jet);
  transition: all var(--transition-2);
  position: relative;
  overflow: hidden;
}

.credential::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.credential:hover::before {
  left: 100%;
}

.credential:hover {
  border-color: var(--white-1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.credential-icon {
  color: var(--white-1);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition-1);
}

.credential:hover .credential-icon {
  transform: scale(1.2);
}

.credential span {
  color: var(--light-gray);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: var(--fw-500);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--jet);
}

.about-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-1);
}

.about-stats .stat:hover {
  transform: translateY(-3px);
  border-color: var(--white-1);
}

.content-wrapper {
  padding-top: 0px;
}


/* Why Choose Us Section */
.why-choose-us {
  margin-top: 3rem;
  padding: 2rem 0;
}

.why-choose-us .section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--fw-600);
  color: var(--white-1);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-yellow-crayola);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-yellow-crayola), var(--golden-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  color: white;
  stroke: white;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: var(--fw-500);
  color: var(--white-1);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/**
 * #SERVICES SECTION
 */

.services-section {
  padding: 20px 20px 40px 20px;
  background: var(--eerie-black-1);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-1), transparent);
}

.services-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-600);
  font-family: var(--ff-heading);
  color: var(--white-1);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  margin-top: 2rem;
  background: var(--white-1);
  border-radius: 2px;
}

.services-title {
  position: relative;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--white-2);
  font-weight: var(--fw-400);
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 20px;
}

/* Mobile: 1 column, Tablet: 2 columns, Desktop: 3 columns */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
  }
}

.service-card {
  background: var(--bg-gradient-jet);
  border: 1px solid var(--jet);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
  border-color: var(--white-1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--white-1), var(--white-2));
  transform: scaleX(0);
  transition: transform var(--transition-2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  transition: all var(--transition-2);
  opacity: 0;
}

.service-card:hover::after {
  opacity: 1;
  top: -20%;
  right: -20%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white-1);
  transition: all var(--transition-2);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  background: var(--white-1);
  color: var(--eerie-black-1);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  transition: all var(--transition-1);
}

.service-title {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: var(--fw-600);
  color: var(--white-1);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  flex-grow: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-description {
  color: var(--light-gray);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.7;
  font-weight: var(--fw-400);
  flex-grow: 1;
  display: flex;
  align-items: center;
}




/**
 * #testimonials 
 */

.testimonials { 
  padding: 40px 20px 80px 20px;
  background: var(--bg-gradient-jet);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-1), transparent);
}

.testimonials .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.testimonials-title { 
  margin-bottom: 20px; 
  color: var(--white-1);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-600);
  font-family: var(--ff-heading);
  text-align: center;
}

.testimonials-list {
  display: flex;
  gap: 20px;
  padding: 0 20px 25px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.testimonials-list::-webkit-scrollbar {
  height: 8px;
}

.testimonials-list::-webkit-scrollbar-track {
  background: var(--jet);
  border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb {
  background: var(--white-1);
  border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb:hover {
  background: var(--light-gray);
}

.testimonials-item {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Base Container Mobile Styles */
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
  
  /* Header Mobile Styles */
  .header {
    padding: 0.75rem 0;
  }
  
  .header .container {
    padding: 0 1rem;
  }
  
  .company-logo {
    gap: 0.5rem;
  }
  
  .nav-logo {
    width: 35px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-btn {
    width: 35px;
    height: 35px;
    gap: 5px;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }

  /* Hero Mobile Styles */
  .hero {
    padding: 100px 15px 60px;
    min-height: 90vh;
  }
  
  .hero .container {
    padding: 0;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    margin: 2rem 0 1.5rem;
  }
  
  .stat {
    padding: 1rem 0.5rem;
  }
  
  .stat-number {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    line-height: 1.2;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-banner {
    margin-top: 3rem;
  }
  
  .hero-image {
    max-width: 280px;
  }

  .hero-img {
    display: none; /* Hide hero image on mobile */
  }

  .hero-img:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  }

  /* About Section Mobile */
  .about-section {
    padding: 40px 15px 60px;
  }
  
  .about-content {
    gap: 2.5rem;
  }
  
  .about-text {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }
  
  .about-text p {
    margin-bottom: 1.75rem;
    padding-left: 0.75rem;
  }
  
  .about-text p::before {
    height: 16px;
    top: 0.4rem;
  }
  
  .company-credentials {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  
  .credential {
    padding: 1.25rem 1rem;
  }
  
  .credential span {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
  }
  
  .about-stats .stat {
    padding: 1.25rem 1rem;
  }
  
  .about-stats .stat-number {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
  }
  
  .about-stats .stat-number:hover {
    transform: scale(1.05);
  }
  
  .about-stats .stat-label {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }

  /* Why Choose Us Mobile */
  .why-choose-us {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
  }

  .why-choose-us .section-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 10px;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 40px 15px 50px;
  }
  
  .section-header {
    padding: 0 10px;
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .section-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }
  
  .services-grid {
    padding: 0 10px;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 0.5rem;
    min-height: auto;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }
  
  .service-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .service-title {
    font-size: clamp(1rem, 4vw, 1.15rem);
    min-height: auto;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .service-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.6;
  }

  /* Testimonials Mobile */
  .testimonials {
    padding: 40px 15px 60px;
  }
  
  .testimonials-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 1.5rem;
  }
  
  .testimonials-item {
    min-width: 290px;
    max-width: 290px;
  }
  
  .testimonials-list {
    padding: 0 15px 30px 15px;
    gap: 15px;
  }
  
  .testimonials-text {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.6;
  }
  
  .testimonials-item-title {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }
  
  .content-card {
    padding: 1.5rem 1.25rem;
    padding-top: 2rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 15px 2rem;
    margin-top: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo-text {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    text-align: center;
    display: block;
    width: 100%;
  }
  
  .footer-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-title {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    margin-bottom: 1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-link {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    padding: 0.25rem 0;
  }
  
  .contact-item {
    justify-content: center;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    gap: 0.6rem;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .footer-copyright p {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }

  /* Footer Mobile */
  .footer {
    padding: 30px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

  /* Contact Section Mobile */
  .contact {
    padding: 40px 15px 50px;
  }
  
  .mapbox {
    height: 200px;
    margin-bottom: 25px;
  }
  
  .contact-form {
    background: var(--eerie-black-2);
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--jet);
    margin-bottom: 2rem;
  }
  
  .form-title {
    color: var(--white-1);
    margin-bottom: 1.5rem;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    text-align: center;
    font-family: var(--ff-heading);
  }
  
  .input-wrapper {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: clamp(0.9rem, 3vw, 1rem);
    background: var(--eerie-black-1);
    border: 1px solid var(--jet);
    transition: all var(--transition-1);
  }
  
  .form-input:focus {
    border-color: var(--white-1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  }
  
  textarea.form-input {
    min-height: 100px;
    height: 120px;
    margin-bottom: 15px;
  }
  
  .form-btn {
    background: var(--white-1);
    color: var(--eerie-black-1);
    border: 2px solid var(--white-1);
    padding: 14px 20px;
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-weight: var(--fw-500);
    transition: all var(--transition-1);
  }
  
  .form-btn:hover {
    background: transparent;
    color: var(--white-1);
    transform: translateY(-2px);
  }

@media (max-width: 480px) {
  /* Extra small mobile styles */
  .container {
    padding: 0 10px;
    max-width: 100%;
  }
  
  .header .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    padding: 90px 10px 50px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .about-section,
  .services-section,
  .testimonials {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .section-header {
    padding: 0 10px;
  }
  
  .services-grid {
    padding: 0 10px;
  }
  
  .testimonials-item {
    min-width: 250px;
    max-width: 250px;
  }
  
  .testimonials-list {
    padding: 0 10px 25px 10px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.25rem 0.75rem;
  }
  
  .contact-form {
    padding: 1.25rem 1rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
}

.testimonials-avatar-box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15px, -25px);
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
}

.testimonials-item-title {
  margin-bottom: 7px;
  color: var(--white-1);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  font-family: var(--ff-heading);
}

.testimonials-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonials-item time {
  color: var(--white-2);
  font-size: var(--fs-7);
  font-weight: var(--fw-300);
}


/**
 * #testimonials-modal
 */

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: all 300ms ease;
}

.modal-container.active {
  pointer-events: all;
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsl(0, 0%, 5%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 0.8;
  visibility: visible;
}

.testimonials-modal {
  background: var(--eerie-black-2);
  position: relative;
  padding: 15px;
  margin: 15px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  transform: scale(1.2);
  transition: var(--transition-1);
}

.modal-container.active .testimonials-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--onyx);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-2);
  font-size: 18px;
  opacity: 0.7;
  transition: var(--transition-1);
}

.modal-close-btn:hover,
.modal-close-btn:focus { opacity: 1; }

.modal-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.modal-avatar-box {
  background: var(--bg-gradient-onyx);
  width: max-content;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-2);
}

.modal-img-wrapper > img:first-child { margin-bottom: 20px; }

.modal-title { margin-bottom: 4px; }

.modal-content time {
  font-size: var(--fs-6);
  color: var(--light-gray-70);
  font-weight: var(--fw-300);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


/**
 * #clients 
 */

.clients { margin-bottom: 15px; }

.clients-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px;
  padding-bottom: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 25px;
}

.clients-item {
  min-width: 50px;
  scroll-snap-align: start;
}

.clients-item img {
  width: 100%;
  filter: grayscale(1);
  transition: var(--transition-1);
}

.clients-item img:hover { filter: grayscale(0); }





/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.article-title { margin-bottom: 30px; }


/**
 * #education and #experience 
 */

.timeline { margin-bottom: 30px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item { position: relative; }

.timeline-item:not(:last-child) { margin-bottom: 20px; }

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--white-1);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


/**
 * #skills 
 */

.skills-title { margin-bottom: 20px; }

.skills-list { padding: 20px; }


.skills-item:not(:last-child) { margin-bottom: 15px; }

.skill .title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.skill .title-wrapper data {
  color: var(--light-gray);
  font-size: var(--fs-7);
  font-weight: var(--fw-300);
}

.skill-progress-bg {
  background: var(--jet);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}

.skill-progress-fill {
  background: var(--text-gradient-yellow);
  height: 100%;
  border-radius: inherit;
}





/*-----------------------------------*\
  #
\*-----------------------------------*/

.filter-list { display: none; }

.filter-select-box {
  position: relative;
  margin-bottom: 25px;
}

.filter-select {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.filter-select.active .select-icon { transform: rotate(0.5turn); }

.select-list {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in-out;
}

.filter-select.active + .select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.select-item button:hover { --eerie-black-2: hsl(240, 2%, 20%); }

.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 10px;
}

.project-item { display: none; }

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease-in-out forwards;
}

@keyframes scaleUp {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

.project-item > a { width: 100%; }

.project-img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.project-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.project-item > a:hover .project-img::before { background: hsla(0, 0%, 0%, 0.3); }

.project-item-icon-box {
  --scale: 0.8;

  background: var(--jet);
  color: var(--white-1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  font-size: 20px;
  padding: 18px;
  border-radius: 12px;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.project-item > a:hover .project-item-icon-box {
  --scale: 1;
  opacity: 1;
}

.project-item-icon-box ion-icon { --ionicon-stroke-width: 50px; }

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-title,
.project-category {
  margin-left: 10px;
}

.project-title {
  color: var(--white-2);
  font-size: var(--fs-5);
  font-weight: var(--fw-400);
  text-transform: capitalize;
  line-height: 1.3;
}

.project-category {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
}




/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1);
}

.contact-form { margin-bottom: 10px; }

.form-title {
  color: var(--white-2);
  margin-bottom: 20px;
}

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder { font-weight: var(--fw-500); }

.form-input:focus { border-color: var(--white-1); }

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--white-1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { background: var(--bg-gradient-yellow-1); }

.form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { background: var(--border-gradient-onyx); }

.form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive larger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * client
   */

  .clients-item { min-width: calc(33.33% - 10px); }



  /**
   * #, BLOG 
   */

  .project-img,
  .blog-banner-box { height: auto; }

}





/**
 * responsive larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;

  }



  /**
   * #REUSED STYLE
   */

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }



  /**
   * #MAIN
   */

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }



  /**
   * #SIDEBAR
   */

  .sidebar {
    max-height: max-content;
  }

  .sidebar.active { max-height: max-content; }

  .sidebar-info { gap: 25px; }

  .avatar-box { border-radius: 30px; }

  .avatar-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }



  /**
   * #CONTACT
   */

  .input-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .form-btn {
    width: max-content;
    margin-left: auto;
  }
  
}





/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .sidebar, article { width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 100px; }



  /**
   * SIDEBAR
   */

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }



  /**
   * NAVBAR
   */

  .navbar-link { --fs-8: 15px; }



  /**
   * HEADER
   */

  .desktop-nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .header .container {
    padding: 0 2rem;
  }

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 4rem;
    padding: 0 2rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-title .highlight {
    display: inline;
  }

  .hero-subtitle {
    text-align: left;
    direction: rtl;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin: 2rem 0;
  }

  /**
   * ABOUT
   */

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .company-credentials {
    grid-template-columns: 1fr;
  }

  /**
   * SERVICES
   */

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* testimonials */

  .testimonials-title { margin-bottom: 25px; }

  .testimonials-list {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .content-card {
    padding: 30px;
    padding-top: 25px;
  }

  .testimonials-avatar-box {
    transform: translate(30px, -30px);
    border-radius: 20px;
  }

  .testimonials-item-title { margin-bottom: 10px; }

  .testimonials-text {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  /* clients */

  .clients-list { gap: 50px; }

  .clients-item { min-width: calc(25% - 38px); }



  /**
   * #RESUME
   */

  .timeline-list { margin-left: 65px; }

  .timeline-item:not(:last-child)::before { left: -40px; }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }

  .skills-item:not(:last-child) { margin-bottom: 25px; }



  /**
   * #, BLOG
   */

  .project-img, .blog-banner-box { border-radius: 16px; }

  .blog-posts-list { gap: 30px; }

  .blog-content { padding: 25px; }



  /**
   * #CONTACT
   */

  .mapbox { height: 380px; }

  .mapbox figure { padding: 5px; }

  .contact-form { padding: 30px; }

  .form-input { padding: 15px 20px; }

  textarea.form-input { margin-bottom: 30px; }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon { font-size: 18px; }

}





/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
    * shadow
    */

    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);

  }



  /**
   * REUSED STYLE
   */

  .sidebar, article {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
  }



  /**
   * MAIN 
   */

  main { margin-bottom: 60px; }

  .main-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }



  /**
   * HEADER
   */

  .header .container {
    padding: 0 3rem;
    max-width: 100%;
  }

  /**
   * HERO
   */

  .hero .container {
    padding: 0 3rem;
    gap: 6rem;
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /**
   * SERVICES
   */

  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
  }

  /**
   * ABOUT
   */

  .about-content {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }

  .company-credentials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-section .container {
    padding: 0 3rem;
  }

  .services-section .container {
    padding: 0 3rem;
  }

}

/**
 * responsive larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HERO
   */

  .hero .container {
    max-width: 100%;
    padding: 0 4rem;
  }

  /**
   * SERVICES
   */

  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem;
  }

  .services-section .container {
    max-width: 100%;
    padding: 0 4rem;
  }

  /**
   * ABOUT
   */

  .about-section .container {
    max-width: 100%;
    padding: 0 4rem;
  }

}





/**
 * responsive larger than 1250px screen
 */

@media (min-width: 1250px) {

  /**
   * RESET
   */

  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
                inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.15); }

  body::-webkit-scrollbar-button { height: 60px; }



  /**
   * REUSED STYLE
   */

  .sidebar, article { width: auto; }

  article { min-height: 100%; }



  /**
   * MAIN
   */

  main {
    max-width: 100%;
    margin-inline: auto;
    display: block;
    width: 100%;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }



  /**
   * SIDEBAR
   */

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    width: 25%;
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  .sidebar.active { max-height: max-content; }

  .sidebar-info { flex-direction: column; }

  .avatar-box img { width: 150px; }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list { grid-template-columns: 1fr; }

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list { justify-content: center; }



  /**
   * RESUME
   */

  .timeline-text { max-width: 700px; }

}

/* No sidebar - full width layout */
.main-content {
  width: 100%;
  max-width: none;
}

/* Article takes full width */
article {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-gradient-jet);
  border: 1px solid var(--jet);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  min-width: 300px;
  max-width: 400px;
}

.notification-success {
  border-color: #10b981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.notification-error {
  border-color: #ef4444;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-1);
}

.notification-content ion-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.notification-error .notification-content ion-icon {
  color: #ef4444;
}

.notification-content span {
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
}

@media (max-width: 768px) {
  .notification {
    top: 15px;
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: none;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background: linear-gradient(135deg, var(--eerie-black-1) 0%, var(--eerie-black-2) 100%);
  color: var(--white-2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-brand {
  text-align: center;
  max-width: 100%;
}

.footer-logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  color: var(--white-1);
  margin-bottom: 0.5rem;
}

.footer-logo-subtitle {
  font-size: var(--fs-6);
  color: var(--white-2);
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: var(--fs-6);
  line-height: 1.6;
  color: var(--white-2);
  max-width: 400px;
  margin: 0 auto 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white-2);
  transition: all var(--transition-1);
}

.social-link:hover {
  background: var(--white-1);
  color: var(--eerie-black-1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-column {
  margin-bottom: 1rem;
  min-width: 0;
}

.footer-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  color: var(--white-1);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--white-1);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: var(--white-2);
  text-decoration: none;
  font-size: var(--fs-6);
  transition: all var(--transition-1);
}

.footer-link:hover {
  color: var(--white-1);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: var(--fs-6);
}

.contact-item ion-icon {
  color: var(--white-1);
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-item .contact-link {
  color: var(--white-2);
  text-decoration: none;
  transition: all var(--transition-1);
}

.contact-item .contact-link:hover {
  color: var(--white-1);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright p {
  color: var(--white-2);
  font-size: var(--fs-7);
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.4;
}

.arabic-text {
  font-size: var(--fs-8);
  color: var(--white-2);
  opacity: 0.8;
  text-align: center;
  margin-top: 0.2rem;
  display: block;
}



/* Desktop Footer Layout */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-brand {
    text-align: left;
    padding-right: 2rem;
  }

  .footer-description {
    margin: 0 0 2rem;
    max-width: none;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .footer-copyright {
    margin-bottom: 0;
    text-align: center;
    align-items: center;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .footer-copyright p {
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .arabic-text {
    text-align: left;
  }

}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 3rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-brand {
    padding-right: 3rem;
  }

  .footer-links {
    display: contents;
  }

  .footer-column {
    margin-bottom: 0;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .footer-description {
    font-size: var(--fs-6);
  }
}

@media (min-width: 1200px) {
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}
