/* =======================
   GLOBAL RESET & BASE
   ======================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

/* Remove blue tap/click highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* ===== DESKTOP NAV SHOW / MOBILE HIDDEN ===== */
.desktop-nav {
  display: flex;
}

#nav-menu {
  display: none;
}

.hamburger {
  display: none;
}

@media(max-width:768px) {
  .desktop-nav {
    display: none;
  }
  #nav-menu {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}




/* === Close Button (Slide Menu) === */
/* Close Button at same place hamburger appears */
#nav-menu .close-btn {
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 32px;
  color: #b74b4b;
  cursor: pointer;
}

#close-btn {
  font-size: 7rem;      /* size if you want bigger */
  cursor: pointer;
  color: #b74b4b;
  padding: 0;             /* remove extra padding */
  margin-top: -9rem;    /* move UP (increase if needed) */
  margin-right: 3rem;
  align-self: flex-end;   /* keep it on the right side */
}



#nav-menu.open #close-btn {
    opacity: 1;
    transition: opacity .3s ease;
}


#close-btn i {
  font-size: 2.2rem;         /* Size of X */
  font-weight: bold;
  color: #b74b4b;
  transition: .2s ease;
}

/* Hover effect */
#close-btn:hover i {
  transform: rotate(90deg);  /* Nice twist effect 😎 */
  color: #ff7676;
}



#nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background: #161616;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 8rem 0 0 2rem;
  border-left: 3px solid #b74b4b;
  transform: translateX(100%);
  transition: .3s ease;
}

#nav-menu.open {
  transform: translateX(0);
}

#nav-menu.open { transform: translateX(0); }


html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  color: white;
  overflow-x: hidden;
  display: block;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: #b74b4b;
  cursor: pointer;
  transition: .5s ease;
}

.logo:hover {
  transform: scale(1.1);
}

nav a {
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  margin-left: 4rem;
  transition: .3s ease;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
  color: #b74b4b;
  border-bottom: 3px solid #b74b4b;
}

/* HAMBURGER HIDDEN DESKTOP */
.hamburger {
  display: none;
  font-size: 3rem;
  color: #b74b4b;
  cursor: pointer;
}

/* =======================
   HOME SECTION
   ======================= */
section {
  padding: 5rem 9%;
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  padding-top: 6rem;
  flex-wrap: wrap;
}

.home-content h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-content h3 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.home-content p {
  font-size: 1.6rem;
}

span { color: #b74b4b; }

.home-img img {
  width: 32vw;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 25px #b74b4b;
  cursor: pointer;
  transition: .3s ease;
}

.social-icons a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 3rem .8rem 3rem 0;
  border: .2rem solid #b74b4b;
  color: #b74b4b;
  font-size: 2rem;
  transition: .3s;
}

.social-icons a:hover {
  background: #b74b4b;
  color: black;
  transform: scale(1.3) translateY(-5px);
  box-shadow: 0 0 25px #b74b4b;
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  color: #b74b4b;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 4rem;
  border: 2px solid #b74b4b;
  letter-spacing: .3rem;
  transition: .3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #b74b4b;
  color: black;
  box-shadow: 0 0 25px #b74b4b;
}

nav a:hover {
  color: #ff6b6b;
}

/* =======================
   TYPING EFFECT
   ======================= */


.typing-text span {
  border-right: 3px solid #b74b4b;
  padding-right: 4px;
  animation: cursor .6s step-end infinite;
}

#article{
  color: white;
}

@keyframes cursor {

  50% { border-color: transparent; }
}





/* =======================
   MOBILE RESPONSIVE
   ======================= */
@media(max-width:768px) {

  header { padding: 1rem 5%; background: #000; }
  .hamburger { display: block; }

  /* Side Menu */
  #nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: #161616;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 8rem 0 0 2rem;
    border-left: 3px solid #b74b4b;
    transform: translateX(100%);
    transition: .3s ease;
  }
  #nav-menu.active { transform: translateX(0); }

  nav a {
    font-size: 2rem;
    margin: 0;
    padding-bottom: .5rem;
  }

  .home {
    flex-direction: column;
    text-align: center;
    margin-top: 70px;
    padding: 2rem 5% 3rem;
    min-height: auto;
  }

  .home-content h1 { font-size: 3rem; }
  .home-content h3 { font-size: 1.8rem; }
  .home-content p  { font-size: 1.2rem; line-height: 1.3; }

  .home-img img { width: 70vw; margin-top: 2rem; }
}


/* =======================
   PROFILE CARD DESIGN
   ======================= */

.profile-cart{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background-color: #000000;
    border-radius: 24px;
    padding: 25px;
    box-shadow:  0 5px 10px rgba(102, 22, 22, 0.3);
    border: 1px solid #b74b4b50;

}

.profile-cart::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 36%;
    width: 100%;
    border-radius: 24px 24px 0 0 ;
    background-color: #000000;

}

.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 3px;
    margin-bottom: 10px;
    
}

.image .profile-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff8c;
}

.profile-cart .text-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}


.text-data .name{
    font-size: 22px;
    font-weight: 500;
}

.text-data .job{
    padding-top: 5px;
    font-size: 15px;
    font-weight: 400;
}


.profile-cart .media-buttons{
    display: flex;
    align-items: center;
    margin-top: 15px;
}


.media-buttons .link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #162c67;
    text-decoration: none;
}


.profile-cart .buttons{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.buttons .button{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 25px;
    margin: 0 10px;
    background-color: #162c67;
    padding: 8px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.buttons .button:hover{
    background-color: #0e4bf1;
}


.profile-cart .analytics{
    display: flex;
    align-items: center;
    margin-top: 25px;
}


.analytics .data{
    display: flex;
    align-items: center;
    color: #333;
    padding: 0 20px;
    border-right: 2px solid #e7e7e7;

}

.data i{
    font-size: 18px;
    margin-right: 6px;
}

.data:last-child{
    border-right: none;
}

/* Center the entire card section */
.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;   /* fills screen height */
}

/* Make sure body doesn't push weirdly */
body {
  display: flex;
  justify-content: center;
}

/* Click outside of silde panel need to close */

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 998;
}

#overlay.show {
  display: block;
}

/* BIGGER TEXT ON LAPTOPS + DESKTOPS */
@media(min-width:1024px) {

  .home-content h1 {
    font-size: 7rem;
  }

  .home-content h3 {
    font-size: 4.5rem;
  }

  .home-content p {
    font-size: 1.9rem;
    line-height: 1.6;
  }

  nav a {
    font-size: 2rem;
  }

  .social-icons a {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.3rem;
  }

  .btn {
    font-size: 1.9rem;
    padding: 1.2rem 3.2rem;
  }
}

/* Scroll Animation */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* BIGGER HEADER FOR DESKTOP + LARGE SCREENS */
@media(min-width: 1024px) {

.desktop-nav a {
  font-size: 3rem;
}

.logo{
  font-size: 3rem;
}
}

/* BIGGER full profile card on desktops */
@media (min-width: 1024px) {

  .profile-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .profile-cart {
    transform: scale(1.35);   /* SCALE EVERYTHING */
    transform-origin: center; /* Keep centered */
  }

  .profile-cart {
  transition: transform 0.25s ease;
}

}

/* Hover grow effect for buttons */
.buttons .button {
  transition: transform 0.2s ease, background 0.2s ease;
}

.buttons .button:hover {
  transform: scale(1.15);
  background: #b74b4b;
  color: #fff;
}

/* Hover grow for GitHub / LinkedIn / Telegram icons */
.media-buttons a i {
  transition: transform 0.2s ease, color 0.2s ease;
}

.media-buttons a:hover i {
  transform: scale(1.4);
  color: #b74b4b;
}

/* Bigger service text for desktop screens */
@media (min-width: 1024px) {
  .services-section, .skills-section, .education-section, .experience-section, .contact-section {
    font-size: 1.8rem;
    width: 60%;
    margin: 6rem auto;
    line-height: 1.9;
  }

  .services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .services-section ul li {
    margin: .7rem 0;
  }
}

/* SERVICES PAGE MATCH HOME PAGE */
.services-page {
  max-width: 1200px;
  padding: 100px 8%;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.7;
  color: white;
}

.services-page .title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #b74b4b;
}

.services-page ul {
  list-style: none;
  padding-left: 0;
}

.services-page ul li {
  margin-bottom: 12px;
  font-size: 2rem;
  position: relative;
  padding-left: 30px;
}

.services-page ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b74b4b;
  font-size: 2.3rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  margin-bottom: 14px;
}

.services-list li i {
  font-size: 2.2rem;
  color: #b74b4b;
  min-width: 28px;
}

/* CENTER SERVICES SECTION ON ALL DEVICES */
.services-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 5% 60px;
  text-align: center;
}

/* Title centered */
.services-page .title {
  font-size: 3.2rem;
  margin-bottom: 30px;
  color: #b74b4b;
  font-weight: 700;
}

/* UL centered but keep text aligned left */
.services-page ul {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
}

/* LI icon styles */
.services-page ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

/* Icon color + size */
.services-page ul li i {
  font-size: 2rem;
  color: #b74b4b;
}

/* ===== PROFESSIONAL SERVICES SECTION ===== */

.services-section {
    padding-top: 140px;
    text-align: center;
}

.services-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d96b6b;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.services-wrapper {
    max-width: 900px;
    margin: auto;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li i {
    font-size: 1.2rem;
    color: #d96b6b;
    min-width: 22px;
}

/* Hover with subtle feel */
.services-list li:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Mobile Optimized */
@media (max-width:768px) {
    .services-title {
        font-size: 2rem;
    }
    .services-list li {
        font-size: 1rem;
        padding: 10px;
    }
    .services-list li i {
        font-size: 1rem;
    }
}

/* ===== SKILLS PAGE (PROFESSIONAL) ===== */

.skills-section {
    padding-top: 140px;
    text-align: center;
}

.skills-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d96b6b;
    margin-bottom: 45px;
}

.skills-wrapper {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.skill-group h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.skill-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.skill-group li:last-child {
    border-bottom: none;
}

.skill-group li i {
    font-size: 1.2rem;
    color: #d96b6b;
}

/* Hover for desktop */
.skills-wrapper li:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* ---- MOBILE ---- */
@media (max-width:768px){
    .skills-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .skills-title {
        font-size: 2rem;
    }
}

/* ===== SKILLS PAGE (BIGGER TEXT, PC) ===== */

.skills-title {
    font-size: 4rem;   /* Was 2.6rem */
}

.skill-group h3 {
    font-size: 2.5rem;   /* Was 1.4rem */
}

.skill-group li {
    font-size: 1.7rem;  /* Was ~1.05rem */
    padding: 10px 0;
}

.skill-group li i {
    font-size: 1.4rem;  /* Slightly larger icons */
}

/* ---- MOBILE FONT SIZE SAFE ---- */
@media (max-width:768px){
    .skills-title {
        font-size: 2.2rem;
    }

    .skill-group h3 {
        font-size: 1.3rem;
    }

    .skill-group li {
        font-size: 1.05rem;
    }
}

/* ===== HIRE ME - PROFESSIONAL STYLING ===== */

.hire {
    width: 100%;
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.hire-title {
    font-size: 3.2rem;
    color: #d96b6b;
    font-weight: 700;
    margin-bottom: 5px;
}

.hire-sub {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: .85;
}

/* Main card box */
.hire-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 45px;
    border-radius: 14px;
    text-align: left;
}

/* Intro text */
.hire-intro {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* List styles */
.hire-services {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.hire-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.15rem;
}

.hire-services li:last-child {
    border-bottom: none;
}

.hire-services li i {
    font-size: 1.4rem;
    color: #d96b6b;
}

/* Buttons */
.hire-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.hire-btn {
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 1.15rem;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
}

.hire-btn.primary {
    background: #d96b6b;
    color: #fff;
}

.hire-btn.primary:hover {
    background: #c4544e;
    transform: translateY(-3px);
}

.hire-btn.outline {
    border: 2px solid #d96b6b;
    color: #d96b6b;
}

.hire-btn.outline:hover {
    background: #d96b6b;
    color: #fff;
    transform: translateY(-3px);
}

/* Desktop enhancement */
@media(min-width:1024px){
    .hire-title { font-size: 3.6rem; }
    .hire-sub { font-size: 1.6rem; }

    .hire-card {
        padding: 55px 60px;
        border-radius: 18px;
    }

    .hire-intro { font-size: 1.3rem; }

    .hire-services li { font-size: 1.25rem; }
}

/* ===== XL HIRE PAGE (Desktop + Laptop ONLY) ===== */
@media (min-width:1200px){

  .hire-title {
    font-size: 4.6rem;
  }

  .hire-sub {
    font-size: 2.1rem;
    margin-bottom: 50px;
  }

  .hire-card {
    max-width: 1200px;
    padding: 90px 100px;
    border-radius: 28px;
    transform: scale(1.02);
  }

  .hire-intro {
    font-size: 1.65rem;
    line-height: 2.05;
    margin-bottom: 45px;
  }

  .hire-services li {
    font-size: 1.7rem;
    padding: 16px 0;
  }

  .hire-services li i {
    font-size: 2rem;
  }

  .hire-actions {
    margin-top: 50px;
    gap: 40px;
  }

  .hire-btn {
    font-size: 1.7rem;
    padding: 18px 48px;
    border-radius: 40px;
  }
}

/* ===== CONTACT PAGE ===== */

.contact {
    width: 100%;
    text-align: center;
    padding-top: 140px;
}

.contact-title {
    font-size: 3rem;
    color: #d96b6b;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-sub {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: .85;
}

.contact-box {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 45px;
    grid-template-columns: 1fr;
}

/* Left info panel */
.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #fff;
}

.contact-info p {
    font-size: 1.25rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #d96b6b;
    font-size: 1.4rem;
}

.contact-socials {
    margin-top: 20px;
}

.contact-socials a {
    margin-right: 15px;
    font-size: 1.9rem;
    color: #fff;
    transition: 0.2s;
}

.contact-socials a:hover {
    color: #d96b6b;
    transform: scale(1.15);
}

/* Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1rem;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    background: #d96b6b;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    transition: 0.25s;
}

.contact-form button:hover {
    background: #c4544e;
    transform: translateY(-3px);
}

/* Desktop layout */
@media(min-width:1024px){
    .contact-box {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-title { font-size: 3.6rem; }
    .contact-sub { font-size: 1.6rem; }
    .contact-info p { font-size: 1.4rem; }
    .contact-form button { font-size: 1.3rem; }
}

/* ===== XL CONTACT PAGE (Desktop Only) ===== */
@media (min-width:1200px){

  .contact-title {
    font-size: 4.6rem;
    margin-bottom: 15px;
  }

  .contact-sub {
    font-size: 2rem;
    margin-bottom: 55px;
  }

  .contact-box {
    gap: 80px;
    max-width: 1300px;
  }

  .contact-info h3 {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .contact-info p {
    font-size: 1.65rem;
    gap: 12px;
    padding: 6px 0;
  }

  .contact-info i {
    font-size: 2rem;
  }

  .contact-socials a {
    font-size: 2.4rem;
    margin-right: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 20px;
    font-size: 1.45rem;
    border-radius: 10px;
  }

  .contact-form textarea {
    height: 200px;
  }

  .contact-form button {
    padding: 20px;
    font-size: 1.7rem;
    border-radius: 12px;
    margin-top: 10px;
  }
}


/* Same look for all social icons */
.contact-socials a i,
.social-icons a i {
    font-size: 28px;        /* ⬅️ Bigger icon size */
    color: #d17a75;
    transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover effect */
.contact-socials a:hover i,
.social-icons a:hover i {
    color: #ff998f;
    transform: scale(1.25);
}


.about-section {
    width: 80%;
    margin: 100px auto;
    text-align: center;
    color: #fff;
}

.about-title {
    font-size: 3rem;
    color: #d17a75;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-list {
    font-size: 1.2rem;
    list-style: none;
    margin-bottom: 20px;
}
.about-list li {
    margin: 8px 0;
}

.home {
    margin-top: 120px;
}

.about-section {
    margin-top: 180px;   /* slightly lower */
    width: 80%;
}

/* Fine-tune Hands-On Practice horizontal position */
@media (min-width: 1024px){
.skill-group.full-width {
    grid-column: 1 / span 2 !important;   /* stay centered across both columns */
    width: fit-content;                   /* shrink to its own width */
    margin: 40px auto 0;                  /* center by default */
    transform: translateX(-230px);         /* move slightly left */
}
}

.experience {
    padding: 100px 0;
    width: 70%;
    margin: auto;
    color: white;
}

.size{
  color: #d36a6a;
}

.exp-box {
    margin-bottom: 50px;
    border-left: 3px solid #d36a6a;
    padding-left: 20px;
}

.exp-box h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #d36a6a;
}

.exp-box h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.exp-box .time {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #bbbbbb;
}

.exp-box ul li {
    list-style: none;
    margin: 6px 0;
    font-size: 1rem;
}

.exp-box ul li:before {
    content: "•";
    color: #d36a6a;
    margin-right: 8px;
}

.experience {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}

/* Center each experience block */
.exp-box {
    width: 60%;
    text-align: left;
    margin-bottom: 60px;
}

/* Vertical line stays attached */
.exp-box::before {
    left: -20px;
}


/* ==== Bigger Experience Page (Desktop Only) ==== */
@media (min-width:1200px){

  .experience {
      width: 80%;
      padding-top: 130px;
  }

  .section-title {
      font-size: 6rem;
      margin-bottom: 60px;
  }

  .exp-box {
      border-left: 4px solid #d36a6a;
      padding-left: 30px;
      margin-bottom: 65px;
  }

  .exp-box h3 {
      font-size: 4rem;
  }

  .exp-box h4 {
      font-size: 2rem;
      margin-bottom: 5px;
  }

  .exp-box .time {
      font-size: 1.7rem;
      margin-bottom: 15px;
  }

  .exp-box ul li {
      font-size: 1.8rem;
      margin: 8px 0;
      line-height: 1.5;
  }
}

/* DESKTOP / LARGE SCREEN — EXTRA BIGGER */
@media (min-width: 1025px) {
    .about-section {
        max-width: 1350px;
        font-size: 1.75rem;
        line-height: 2.25;
        margin-top: 200px;
        margin-bottom: 180px;
    }

    .about-section h2 {
        font-size: 4.6rem;
        margin-bottom: 40px;
    }

    .about-section p {
        margin-bottom: 32px;
        font-size: 1.75rem;
    }

    .about-section li {
        font-size: 1.75rem;
        margin: 12px 0;
    }

    .about-socials i {
        font-size: 3rem;
        padding: 24px;
        border-width: 3px;
        margin: 0 18px;
    }
}

/* Center Skills on Mobile */
@media (max-width: 768px) {
    .skills-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .skill-group {
        margin-bottom: 30px;
    }

    .skill-group h3 {
        text-align: center;
    }

    .skill-group ul {
        padding-left: 0;
    }

    .skill-group li {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile spacing for Hands-On Practice */
@media (max-width: 1023px) {
    .skill-group.full-width {
        margin-top: 60px;   
    }
}

/* -------------------------- */
/* 📱 Experience – Mobile fixes */
/* -------------------------- */
@media (max-width: 768px) {

  /* Push all content slightly down from the top */
  .experience-box {
    margin-top: 60px;
  }

  /* Fix left line spacing */
  .journey-box {
    padding-left: 20px;
  }

  /* Reduce text width to fit */
  .journey-box p,
  .journey-box li {
    font-size: 0.9rem;
    line-height: 1.45rem;
  }

  /* Add space between jobs */
  .journey-box + .journey-box {
    margin-top: 50px;
  }

  /* Make section title slightly smaller */
  .section-title {
    font-size: 1.4rem;
  }
}

/* Make Professional Experience text bigger on mobile/tablet */
@media (max-width: 1024px) {

    /* Main title */
    .section-title {
        font-size: 2.4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Company names */
    .journey-box h2,
    .journey-box h3 {
        font-size: 1.3rem !important;
    }

    /* Role + location + dates */
    .journey-box p {
        font-size: 1.05rem !important;
        line-height: 1.6rem !important;
    }

    /* Bullet points */
    .journey-box ul li {
        font-size: 1.05rem !important;
        line-height: 1.6rem !important;
    }
}

/* Reduce top spacing on About Me section for mobile */
@media (max-width: 1024px) {
    .about-section,
    .aboutme-section,
    .About,
    .about-box,
    section {
        padding-top: 0px !important;
        margin-top: 100px !important;
    }

    /* If your h1 adds space */
    .section-title {
        margin-top: 0 !important;
        padding-top: 1px !important;
    }
}

