/* ===============================================
   FONTS
   =============================================== */
@font-face {
  font-family: "Stringer";
  src: url("https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/6672f952b36b0a9463c9d316_Stringer-Light-Web.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Stringer";
  src: url("https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/6672f9522072572b2dccc510_Stringer-Thin-Web.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/662462bdf272d3d1afb6e628_Geist-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/662462fa67bca134a1a18128_GeistMono-SemiBold.woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/662462faf971285a23464ef4_GeistMono-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('https://cdn.prod.website-files.com/66245c2c8b72c9616045fa9b/662462fa21820a6357c20552_GeistMono-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* ===============================================
   RESET & BASE STYLES
   =============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Stringer', sans-serif;
  font-size: 15.13px;
  font-weight: 500;
  line-height: 25.72px;
  color: #000;
  background-color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app-wrapper {
  position: relative;
  background-color: rgb(213, 214, 208);
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.container {
  max-width: 1512.97px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30.26px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.slide-down {
  opacity: 0;
  transform: translateY(-100px);
  animation: slideDown 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
}

/* ===============================================
   NAVIGATION STYLES
   =============================================== */
.navbar {
  background-color: rgba(251, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 32px;
}

.logo a {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.logo a:hover {
  color: #666;
}

/* Hero Profile in Navbar */
.logo .hero-profile {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo .hero-profile-image {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.03) -5px 5px 3px 0px,
              rgba(0,0,0,0.1) -3px 3px 3px 0px,
              rgba(0,0,0,0.17) -1px 1px 2px 0px,
              rgba(0,0,0,0.19) 0px 0px 1px 0px;
  flex-shrink: 0;
}

.logo .hero-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo .hero-profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo .hero-profile-info span:first-child {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.logo .hero-profile-info span:last-child {
  color: #666;
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.logo a:hover .hero-profile-info span:first-child {
  color: #333;
}

.logo a:hover .hero-profile-image {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
}

.nav-link.active {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Hero Section */
.hero-section {
  padding: 113.47px 0;
}

.hero-content {
  max-width: 33.33%;
}

.hero-title {
  font-size: 60.52px;
  font-weight: 100;
  line-height: 51.44px;
  letter-spacing: -2.42px;
  margin-bottom: 30px;
  animation-delay: 0.2s;
}

.hero-description {
  font-size: 20.8px;
  font-weight: 300;
  line-height: 33.29px;
  margin-bottom: 15px;
}

.hero-profile {
  display: inline-flex;
  align-items: center;
  gap: 11.35px;
  margin-top: 15px;
  animation-delay: 0.6s;
}

.hero-profile-image {
  position: relative;
  width: 37.82px;
  height: 37.82px;
  border-radius: 5.67px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.03) -5px 5px 3px 0px,
              rgba(0,0,0,0.1) -3px 3px 3px 0px,
              rgba(0,0,0,0.17) -1px 1px 2px 0px,
              rgba(0,0,0,0.19) 0px 0px 1px 0px;
}

.hero-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-profile-info {
  display: flex;
  flex-direction: column;
  gap: 1.89px;
}

.hero-profile-info span {
  color: #666;
  font-size: 9.46px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.76px;
  line-height: 13.24px;
  text-transform: uppercase;
}

/* ===============================================
   MAIN CONTENT STYLES
   =============================================== */
.main-content {
  font-size: 15.13px;
  line-height: 25.72px;
}

#main-content {
  min-height: 80vh;
  padding-top: 80px;
}

/* Loading Spinner */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================================
   HOME SECTION
   =============================================== */
.home-section {
  background: linear-gradient(rgb(251, 250, 245), rgb(213, 214, 208));
  min-height: calc(100vh - 60px);
  padding: 80px 0 60px;
}

.home-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.8s ease-out;
}

.home-intro h1 {
  font-size: 60px;
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #000;
}

.home-intro h1 span {
  font-weight: 300;
  color: #000;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Expertise Box */
.expertise-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.expertise-box h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.expertise-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.expertise-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.expertise-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* View Solutions - deep navy blue */
.btn-primary {
  background-color: #1a3c6e;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0f2547;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(26, 60, 110, 0.35);
}

/* Technical Insights - teal blue */
.btn-outline {
  background-color: #0e76a8;
  color: #fff;
  border: none;
}

.btn-outline:hover {
  background-color: #0a5a80;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(14, 118, 168, 0.35);
}

/* LinkedIn - original LinkedIn blue */
.btn-linkedin {
  background-color: #0077b5;
  color: #fff;
}

.btn-linkedin:hover {
  background-color: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 119, 181, 0.35);
}

/* View Resume - steel blue */
.btn-resume {
  background-color: #2e6da4;
  color: #fff;
}

.btn-resume:hover {
  background-color: #1e4f7a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(46, 109, 164, 0.35);
}

/* ===============================================
   PROJECTS SECTION
   =============================================== */
.projects-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}


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

.project-info {
  padding: 30px;
}

.project-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.project-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #666;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.no-content {
  text-align: center;
  color: #999;
  font-size: 16px;
  padding: 60px 20px;
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog-section {
  padding: 80px 0;
  background-color: rgb(251, 250, 245);
}

.blog-search-form {
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  gap: 15px;
}

.search-input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* ===============================================
   BLOG POST DETAIL
   =============================================== */
.blog-post-detail {
  padding: 80px 0;
  background-color: #fff;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.post-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: #000;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #999;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.post-content {
  max-width: 800px;
  margin: 40px auto;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.post-content p {
  margin-bottom: 20px;
}

/* Headers in blog posts */
.post-content h1 {
  font-size: 2.5em;
  font-weight: 300;
  margin: 40px 0 20px;
  color: #000;
  letter-spacing: -0.02em;
}

.post-content h2 {
  font-size: 2em;
  font-weight: 300;
  margin: 35px 0 18px;
  color: #000;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.post-content h3 {
  font-size: 1.5em;
  font-weight: 400;
  margin: 30px 0 15px;
  color: #222;
}

/* Lists in blog posts */
.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.post-content ul li {
  list-style-type: disc;
}

.post-content ol li {
  list-style-type: decimal;
}

/* Code blocks and inline code */
.post-content code {
  font-family: 'Geist Mono', monospace;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d63384;
  font-weight: 500;
}

.post-content pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 25px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.post-content pre code {
  display: block;
  background-color: transparent;
  padding: 20px;
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
  font-weight: 400;
}

/* Language badge for code blocks */
.post-content pre code[class*="language-"]::before {
  content: attr(class);
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-bottom-left-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-content pre code.language-java::before {
  content: 'java';
  background-color: rgba(237, 109, 49, 0.2);
  color: #f89820;
}

.post-content pre code.language-javascript::before,
.post-content pre code.language-js::before {
  content: 'javascript';
  background-color: rgba(247, 223, 30, 0.2);
  color: #f7df1e;
}

.post-content pre code.language-python::before {
  content: 'python';
  background-color: rgba(53, 114, 165, 0.2);
  color: #3572a5;
}

.post-content pre code.language-bash::before,
.post-content pre code.language-shell::before {
  content: 'bash';
  background-color: rgba(137, 224, 81, 0.2);
  color: #89e051;
}

.post-content pre code.language-sql::before {
  content: 'sql';
  background-color: rgba(0, 119, 204, 0.2);
  color: #0077cc;
}

.post-content pre code.language-xml::before,
.post-content pre code.language-html::before {
  content: 'html';
  background-color: rgba(227, 76, 38, 0.2);
  color: #e34c26;
}

.post-content pre code.language-css::before {
  content: 'css';
  background-color: rgba(86, 61, 124, 0.2);
  color: #563d7c;
}

.post-content pre code.language-json::before {
  content: 'json';
  background-color: rgba(41, 128, 185, 0.2);
  color: #2980b9;
}

/* Scrollbar for code blocks */
.post-content pre code::-webkit-scrollbar {
  height: 8px;
}

.post-content pre code::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.post-content pre code::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.post-content pre code::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Blockquotes */
.post-content blockquote {
  border-left: 4px solid rgba(0, 0, 0, 0.2);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #555;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
}

/* Links in blog posts */
.post-content a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content a:hover {
  color: #004499;
}

/* Horizontal rules */
.post-content hr {
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

/* Strong and emphasis */
.post-content strong {
  font-weight: 600;
  color: #000;
}

.post-content em {
  font-style: italic;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.back-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}

/* ===============================================
   ALL WORK SECTION
   =============================================== */
.all-work-section {
  position: relative;
  padding-top: 113.47px;
}

.all-work-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1.44px;
  text-align: center;
  margin-bottom: 60px;
}

.work-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 50;
  margin: 0 auto;
}

.work-carousel {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s ease;
  gap: 56px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18.91px;
  min-width: 195.8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: scale(1.05);
}

.work-card-link {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: #666;
  display: block;
  overflow: hidden;
  border-radius: 31.33px;
  transition: transform 0.3s ease;
}

.work-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-image {
  transform: scale(1.1);
}

.work-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 18.91px;
  font-weight: 600;
  line-height: 26.48px;
  margin-bottom: 15px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background-color: rgb(245, 245, 240);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background-color: rgb(245, 245, 240);
  color: #000;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #000;
  transform: scale(1.2);
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog-section {
  padding-top: 113.47px;
}

.blog-container {
  display: flex;
  gap: 40px;
}

.blog-sidebar {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 31.33px;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
}

.blog-drafts {
  font-size: 14px;
  color: #666;
}

.blog-main {
  flex: 1;
}

.blog-post {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-post-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.blog-post-excerpt {
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

/* ===============================================
   FOOTER STYLES
   =============================================== */
.footer {
  background: linear-gradient(rgb(213, 214, 208), rgb(251, 250, 245));
  padding: 60px 0 30px;
  text-align: center;
}

.footer .container {
  max-width: 1200px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #333;
  transform: scale(1.1) rotate(5deg);
}

.visitor-count {
  margin: 20px 0;
  font-size: 16px;
  color: #666;
}

#visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  transition: all 0.3s ease;
}

#visitor-counter:hover {
  background-color: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

#visitor-counter i {
  font-size: 18px;
  color: #000;
}

#visitor-number {
  font-weight: 600;
  color: #000;
}

.footer p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===============================================
   RESPONSIVE STYLES
   =============================================== */
@media (min-width: 768px) {
  body {
    font-size: 15.67px;
    line-height: 26.63px;
  }

  .container {
    max-width: 1566.7px;
    width: 1203.2px;
    padding: 0;
  }

  .home-intro h1 {
    font-size: 102.4px;
    line-height: 87.04px;
    letter-spacing: -4.1px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    padding: 1rem 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(251, 250, 245, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

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

  .nav-menu li {
    padding: 10px 0;
  }

  .nav-link {
    display: block;
    padding: 12px 20px;
  }

  .home-intro h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 18px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

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

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

  .blog-search-form {
    flex-direction: column;
  }

  .post-title {
    font-size: 36px;
  }

  .post-meta {
    flex-direction: column;
    gap: 10px;
  }

  .post-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .home-intro h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .expertise-box {
    padding: 25px;
  }

  .project-info,
  .blog-content {
    padding: 20px;
  }
}

/* ===============================================
   CUSTOM ANIMATIONS
   =============================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

