/**
* Template Name: Style
* Template URL: https://bootstrapmade.com/style-bootstrap-portfolio-template/
* Updated: Jul 02 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
-/*--------------------------------------------------------------
# Professional Elegant Background & Global Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Professional Elegant Background & Global Styles - No Blur
--------------------------------------------------------------*/

/* ================= GLOBAL COLORS & FONTS ================= */
/* ================= IMPROVED GLASS CARDS ================= */
/* ================= GLOBAL RESET TO FIX SCROLLING ================= */
:root {
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Quicksand", sans-serif;

  /* Professional Blue Palette (Not White) */
  --accent-color: #4f46e5;
  --bg-base: #eef2ff; /* Very soft faint blue base */
  --surface-color: rgba(255, 255, 255, 0.45); 
  --header-footer-bg: rgba(232, 235, 255, 0.85); 
  --card-border: rgba(255, 255, 255, 0.7);
  
  --heading-color: #1e1b4b; 
  --default-color: #3730a3;
  --shadow-main: 0 10px 30px -5px rgba(79, 70, 229, 0.1);
}

/* ================= RESET & GLOBAL LAYOUT ================= */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit; /* */
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ================= DYNAMIC BLUE MESH ================= */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  background: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(129, 140, 248, 0.12) 0px, transparent 50%);
}

/* ================= FULL-WIDTH CONTAINERS ================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-footer-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 5%;
  width: 100%;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 5%; /* Side gutters for mobile/desktop */
}

/* ================= IMPROVED GLASS CARDS ================= */
main, section, .card, .service-item {
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem; 
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-main);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  width: 100%; /* Fill the container */
}

/* ================= MOBILE VIEW ADJUSTMENTS (The Fix) ================= */
@media (max-width: 768px) {
  header {
    padding: 0.8rem 15px;
  }

  main {
    padding: 1.5rem 12px; /* Small side space so cards don't touch edges */
  }

  main, section, .card, .service-item {
    padding: 1.5rem 1rem; /* Reduced inner padding to stop the "narrow" look */
    margin-bottom: 1.5rem;
    border-radius: 16px;
    width: 100%; /* Expand to full width of main padding */
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%; /* */
  }

  h1 {
    font-size: 1.75rem; 
    line-height: 1.2;
    word-wrap: break-word; /* */
  }
}

/* ================= FOOTER ================= */
footer {
  margin-top: auto;
  padding: 3rem 5%;
  background: var(--header-footer-bg);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--card-border);
  text-align: center;
  width: 100%;
}





/*--------------------------------------------------------------
# Header & Navigation Menu
--------------------------------------------------------------*/
.header {
  /* Updated to a clean, professional "Glass" look */
  --background-color: rgba(255, 255, 255, 0.8); 
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;
  
  /* Core Styles */
  background: var(--background-color);
  color: #333333; /* Standard dark grey for better readability */
  padding: 15px 0;
  
  /* The "Glassmorphism" Effect */
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  
  /* Subtle separation from content */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  
  /* Smooth state changes */
  transition: all 0.3s ease-in-out;
}

.header .logo {
  line-height: 1;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Desktop Nav Menu
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navmenu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .navmenu ul.nav-links,
  .navmenu ul.social-links {
    display: flex !important;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .navmenu a {
    color: var(--nav-color);
    text-decoration: none;
    font-family: var(--nav-font);
    font-weight: 600;
    padding: 0 15px;
    height: 80px;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Mobile Nav Menu - Fixed Width & Full Height
--------------------------------------------------------------*/
@media (max-width: 991px) {
  /* 1. Ensure the Hamburger stays visible */
  .mobile-nav-toggle {
    display: block;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--heading-color);
    z-index: 10001;
    position: fixed;
    top: 15px;
    right: 15px;
  }

  /* 2. Fix Height and Width of the Menu */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 300px;  /* Increased width for better readability */
    height: 100vh; /* Force full viewport height */
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 10000;
    
    /* Layout Fixes */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start from top, don't center vertically */
    align-items: flex-start;    /* Align links to the left */
    padding: 80px 20px 40px 20px; /* Top padding leaves room for toggle */
    
    /* Enable Scrolling */
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
  }

  /* Show menu when active class is added by JS */
  .navmenu.active {
    right: 0;
  }

  /* 3. Adjusting the Links list */
  .navmenu ul.nav-links,
  .navmenu ul.social-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 5px; /* Tighter gap for better vertical fit */
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left; /* Standard sidebar alignment */
  }

  .navmenu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--default-color);
    display: block;
    width: 100%;
    padding: 12px 10px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0; /* Adds a clean separator */
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--accent-color);
    background: #f9f9f9;
  }

  /* Social links row style */
  .navmenu ul.social-links {
    flex-direction: row; 
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Global Footer - Advanced & Attractive
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #8a6d1e, #153f81, #0f4f6d, #1316a1);
  background-size: 400% 400%;
  animation: footerGradient 20s ease infinite;
  font-size: 14px;
  padding: 50px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Gradient animation */
@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Copyright text */
.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer .copyright p:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  text-shadow: 0 2px 6px rgba(255,255,255,0.4);
}

/* Social links container */
.footer .social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Social links style */
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  transition: all 0.4s ease;
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}

/* Hover effect for icons */
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 15px rgba(79,70,229,0.3);
  background-color: rgba(255,255,255,0.15);
}

/* Footer credits */
.footer .credits {
  margin-top: 15px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s ease;
}

.footer .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.footer .credits a:hover {
  text-decoration: underline;
  text-shadow: 0 2px 6px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 100px 0 60px 0; /* top space for header, bottom normal */
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* keep full screen */
  display: flex;
  align-items: center;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  z-index: -1;
  filter: blur(50px);
}



.hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding: 60px 30px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero .hero-content {
    padding: 40px 20px;
  }
}

.hero .content-wrapper {
  max-width: 600px;
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;                     /* start hidden */
  transform: translateY(20px);    /* start slightly below */
  animation: fadeSlideIn 1s forwards;  /* fade + slide animation */
  animation-delay: 0.5s;          /* delay for timing */
}
/* 1. Animated Gradient Effect */
.text-gradient {
  display: block;
  background: linear-gradient(
    to right, 
    #04AA6D, #007bff, #04AA6D
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3s linear infinite;
  transition: transform 0.3s ease;
}

.hero .hero-title .typed {
  font-weight: 700;
  background: linear-gradient(90deg, #16367c, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.8rem;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2.2rem;
    gap: 8px;
  }
}

/* Keyframes for fade + slide effect */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero .lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
}


@media (max-width: 768px) {
  .hero .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-stats .stat-item .purecounter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .hero .hero-actions {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero .social-links {
    justify-content: center;
  }
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .social-links a i {
  font-size: 1.2rem;
}

.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

@media (max-width: 991px) {
  .hero .hero-image {
    min-height: auto;
    padding: 40px 30px;
  }
}

.hero .image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.hero .hero-main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  z-index: 2;
}

.hero .image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 20px;
  z-index: 1;
}

.hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hero .floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
   backdrop-filter: blur(12px);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
  color: #0f172a;
   border: 1px solid rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .hero .floating-card {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

.hero .floating-card i {
  font-size: 1.5rem;
  color: #2563eb;
}

@media (max-width: 768px) {
  .hero .floating-card i {
    font-size: 1.2rem;
  }
}

.hero .floating-card span {
  font-weight: 600;
  color: var(--default-color);
}

.hero .floating-card.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

@media (max-width: 768px) {
  .hero .floating-card.card-1 {
    top: 5%;
    left: -5%;
  }
}

.hero .floating-card.card-2 {
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

@media (max-width: 768px) {
  .hero .floating-card.card-2 {
    top: 70%;
    right: -10%;
  }
}

.hero .floating-card.card-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 4s;
}

@media (max-width: 768px) {
  .hero .floating-card.card-1 {
    top: 5%;
    left: 2%;
  }
  .hero .floating-card.card-2 {
    bottom: 5%;
    right: 2%;
    top: auto; /* Prevents it from staying in the middle */
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-box {
  animation: float 4s ease-in-out infinite;
}
.floating-box:nth-child(2) { animation-delay: 1s; } /* Offset them */

/* ===== PROFESSIONAL HERO NAME CARD ===== */
.hero-name-container {
  position: relative;
  /* CHANGE 1: Remove fixed 380px height so the box shrinks to fit text */
  height: auto !important; 
  min-height: 200px; 
  
  /* CHANGE 2: Reduce padding so the box is shorter */
  padding: 30px 20px; 
  margin: 10px 0;

  border-radius: 25px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-name-container::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(101, 118, 155, 0.15), transparent 60%);
  animation: rotateGlow 18s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-name {
  /* CHANGE 3: Use clamp so the text gets smaller on mobile */
  font-size: clamp(24px, 8vw, 46px); 
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 16px;
  color: #cbd5e1;
  margin-top: 12px;
  z-index: 2;
  letter-spacing: 1px;
}

/* ===== PREMIUM FLOATING CARDS ===== */
.hero .floating-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-weight: 600;
}

/* ===== PROFESSIONAL BUTTON LOOK ===== */
.hero .hero-actions .btn {
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.hero .hero-actions .btn.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
}

.hero .hero-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

/* Softer background */
.hero::before {
  opacity: 0.05;
  filter: grayscale(20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Profile Image Wrapper */
.about .profile-image-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.about .profile-image-wrapper .profile-image {
  width: 320px;
  height: 320px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about .profile-image-wrapper .profile-image img.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  margin: 10px auto;
  display: block;
}
.about .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-top: 5px;
}

/* About Content */
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.skills-grid .skill-item {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.skills-grid .skill-icon {
  font-size: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Full Width Timeline
--------------------------------------------------------------*/
.journey-timeline-wrapper {
  width: 100%;
  margin-top: 40px;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(37,117,252,0.05), rgba(37,117,252,0.1));
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2575fc, #6a11cb);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 90px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px 25px 20px 90px;
  box-shadow: 0 5px 20px rgba(37,117,252,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37,117,252,0.2);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(37,117,252,0.3);
}

.timeline-item .year {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border-radius: 12px;
  animation: fadeInLeft 1s ease;
}

.timeline-item .qualification-list {
  list-style: disc;
  padding-left: 15px;
  color: #333;
}
.timeline-item .qualification-list li {
  margin-bottom: 6px;
  font-size: 15px;
  animation: fadeInUp 0.8s ease forwards;
}

/* CTA Section */
.cta-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta-section .fun-fact {
  font-size: 16px;
  font-weight: 500;
  color: #2575fc;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-section .action-buttons .btn {
  margin: 5px;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .action-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  box-shadow: 0 10px 30px rgba(37,117,252,0.3);
}
.cta-section .action-buttons .btn-outline:hover {
  background: #2575fc;
  color: #fff;
  border-color: #2575fc;
}

/* Animations */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(10px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInLeft {
  0% {opacity: 0; transform: translateX(-10px);}
  100% {opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media (max-width: 991px) {
  .journey-timeline::before { left: 20px; }
  .timeline-item { padding-left: 70px; }
  .timeline-item::before { left: 10px; }
}
@media (max-width: 768px) {
  .about .profile-image-wrapper .profile-image { width: 220px; height: 220px; }
  .timeline-item { padding-left: 50px; }
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.skills .skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
  border-color: var(--accent-color);
}

.skills .skill-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.skills .skill-header i {
  font-size: 28px;
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
}

.skills .skill-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.skills .skill-item {
  margin-bottom: 15px;
}

.skills .skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--heading-color);
}

.skills .skill-bar {
  width: 100%;
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skills .skill-bar .progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 10px;
  width: 0;
  animation: fillBar 2s forwards ease-in-out;
  position: relative;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--progress); }
}

/* Optional shimmer effect */
.skills .skill-bar .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -50%; }
  100% { left: 100%; }
}

@media (max-width: 991px) {
  .skills .skill-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .skills .skill-card {
    text-align: center;
  }

  .skills .skill-header {
    flex-direction: column;
    gap: 8px;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.resume .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.resume .section-header h2 i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.resume .section-header .section-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------------- Experience Cards ---------------- */
.resume .experience-section {
  padding-right: 1rem;
}

.resume .experience-section .experience-card {
  background: linear-gradient(135deg, rgba(37,117,252,0.05), rgba(106,17,203,0.1));
  border-radius: 15px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.resume .experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2575fc, #6a11cb);
}
.resume .experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(37,117,252,0.3);
}

.resume .experience-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.resume .experience-card .role-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.resume .experience-card .role-info h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-color);
  margin: 0;
}
.resume .experience-card .duration {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.resume .experience-card .card-body p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .experience-card .achievements {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.resume .experience-card .achievements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.resume .experience-card .achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.resume .project-images {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;

  margin-top: 10px;
}
.resume .project-images img {
  width: 100%;
  max-height: 300px; /* Increase from default */
  object-fit: cover; /* Keep aspect ratio, cover container */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume .project-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37,117,252,0.3);
}

.resume .project-link a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.resume .project-link a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,117,252,0.3);
}

/* ---------------- Education Timeline ---------------- */
.resume .education-section {
  padding-left: 1rem;
}
.resume .education-section .education-timeline {
  position: relative;
}
.resume .timeline-track {
  position: absolute;
  left: 0.75rem;
  top: 2rem;
  bottom: 2rem;
  width: 3px;
  background: linear-gradient(to bottom, #2575fc, #6a11cb);
  border-radius: 2px;
}

.resume .education-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}
.resume .timeline-marker {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: #6a11cb;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37,117,252,0.25);
}
.resume .education-content {
  background: linear-gradient(135deg, rgba(37,117,252,0.05), rgba(106,17,203,0.1));
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.resume .education-content:hover {
  box-shadow: 0 10px 25px rgba(37,117,252,0.25);
}
.resume .degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.resume .degree-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.resume .degree-header .year {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.resume .institution {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  margin-bottom: 0.8rem;
}
.resume .education-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
  .resume .experience-section,
  .resume .education-section {
    padding: 0;
    margin-bottom: 3rem;
  }
  .resume .section-header h2 { font-size: 1.6rem; }
  .resume .experience-card .card-header { flex-direction: column; gap: 0.5rem; }
  .resume .education-item .degree-header { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 576px) {
  .resume .section-header h2 { font-size: 1.4rem; }
  .resume .section-header h2 i { font-size: 1.2rem; }
  .resume .experience-card { padding: 1.3rem; }
  .resume .education-item { padding-left: 2rem; }
  .resume .timeline-track { left: 0.5rem; }
  .resume .timeline-marker { left: 0; }
  .resume .degree-header .year { align-self: flex-start; }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  height: 100%;
  padding: 2rem;
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 10%));
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 0;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), rgba(79, 70, 229, 0.3), rgba(37, 99, 235, 0.3));
  transform: skewY(-20deg);
  transition: all 0.5s ease-in-out;
}

.services .service-item:hover::before {
  height: 100%;
}

.services .service-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
}

.services .service-item:hover .icon i {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
  filter: drop-shadow(0 5px 10px rgba(37, 99, 235, 0.4));
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
  position: relative;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: linear-gradient(45deg, var(--accent-color), #4f46e5);
  transition: all 0.4s ease-in-out;
}

.services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  transition: color 0.3s ease;
}

.services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--accent-color);
}

.services .service-item .card-links {
  margin-top: auto;
}

.services .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .service-item .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateX(5px);
}

/* Touch / Mobile Hover Simulation */
@media (hover: none) {
  .services .service-item:hover::before {
    height: 0;
  }
  .services .service-item:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
  }
  .services .service-item:hover .icon i {
    transform: none;
    filter: none;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .services .service-item {
    padding: 1.75rem;
  }

  .services .service-item h3 {
    font-size: 1.35rem;
  }

  .services .service-item .icon i {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .services .service-item {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .services .service-item h3 {
    font-size: 1.25rem;
  }

  .services .service-item .icon i {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/* Filters */
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  color: var(--contrast-color);
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, var(--accent-color), #4f46e5);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.2);
}

.portfolio .portfolio-filters li.filter-active {
  background: linear-gradient(135deg, var(--accent-color), #4f46e5);
  color: var(--contrast-color);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

/* Portfolio Entries */
.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px) scale(1.1);
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.1) contrast(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple Touch Effect */
.portfolio .portfolio-entry:active {
  transform: scale(0.97);
  transition: transform 0.2s ease;
}

/* Responsive */
@media (max-width: 991px) {
  .portfolio .portfolio-entry .entry-image {
    aspect-ratio: 3/2;
  }
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-overlay {
    padding: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

/* Info Boxes */
.contact .info-box {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact .info-box p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact .info-box a {
  color: var(--contrast-color);
  font-weight: 600;
  transition: all 0.3s;
}

.contact .info-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-3px);
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: #fff;
}

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

.contact .info-item .content h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact .contact-form {
  background: linear-gradient(135deg, #f9fafb, #e0e7ff);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact .contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2563eb;
}

.contact .contact-form p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background-color: #fff;
  color: #111827;
  transition: all 0.3s ease;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
  border-color: #2563eb;
}

.contact .contact-form .btn {
  background-color: #2563eb;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.portfolio-details .portfolio-details-media .main-image:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 45px rgba(37, 99, 235, 0.2);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* CTA Buttons */
.portfolio-details .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .cta-buttons .btn-view-project:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.portfolio-details .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio-details .cta-buttons .btn-next-project:hover {
  background-color: rgba(79, 70, 229, 0.2);
  transform: translateY(-3px) scale(1.03);
}

.portfolio-details .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}


.starter-section {
  :root {
  --accent-color: #6C63FF;
  --heading-color: #1F1F2E;
  --default-color: #55556B;
  --surface-color: #FFFFFF;
  --background-color: #F7F8FC;
  --contrast-color: #ffffff;

  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
}

body {
  font-family: var(--body-font);
  background: var(--background-color);
  color: var(--default-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.navmenu ul {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  position: relative;
  transition: 0.3s;
}

.navmenu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-color);
  transition: 0.3s;
}

.navmenu a:hover::after,
.navmenu .active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .navmenu ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}

.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #eef0ff 0%, #f9faff 100%);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-top: 15px;
}

.hero .btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(108,99,255,0.3);
}
.hero-image img {
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: 0.5s;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.03);
}
section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}
.skill-card,
.service-item,
.portfolio-entry,
.testimonial-item {
  border-radius: 18px !important;
  transition: 0.3s ease-in-out;
}

.skill-card:hover,
.service-item:hover,
.portfolio-entry:hover {
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero {
    text-align: center;
  }

  .hero-image img {
    margin-top: 40px;
    transform: none;
  }
}
   




}

