/* ============================================================
   PORTFOLIO TEMPLATE - MAIN STYLESHEET
   ============================================================
   Author: Portfolio Template
   Version: 1.0
   Last Updated: December 2025
   
   TABLE OF CONTENTS:
   ----------------------------------------------------------
   1.  IMPORTS & FONTS
   2.  RESET & BASE STYLES
   3.  SCROLLBAR STYLES
   4.  PRELOADER
   5.  HEADER & NAVBAR
       5.1 Logo Styles
       5.2 Navigation Menu
       5.3 Hamburger Menu (Mobile)
   6.  HERO SECTION
       6.1 Content & Typography
       6.2 Hero Image
       6.3 Hero Button
       6.4 Social Icons
       6.5 Hero Media Queries
   7.  ABOUT SECTION
       7.1 Layout & Content
       7.2 Resume Button
       7.3 About Media Queries
   8.  SKILLS SECTION
       8.1 Skills Grid
       8.2 Skills Media Queries
   9.  EDUCATION SECTION
       9.1 Education Cards
       9.2 Education Media Queries
   10. WORK/PORTFOLIO SECTION
       10.1 Project Cards
       10.2 View All Button
   11. EXPERIENCE SECTION
       11.1 Timeline Layout
       11.2 Timeline Content
       11.3 More Button
       11.4 Experience Media Queries
   12. CONTACT SECTION
       12.1 Contact Form
       12.2 Form Inputs
       12.3 Form Messages
       12.4 Contact Media Queries
   13. FOOTER SECTION
       13.1 Footer Layout
       13.2 Social Share
       13.3 Credits
       13.4 Footer Media Queries
   14. COMMON MEDIA QUERIES
   ============================================================ */


/* ============================================================
   1. IMPORTS & FONTS
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');
@import url('theme-preset.css');


/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-body);
  font-family: var(--font-primary);
  color: var(--text-primary-color);
}

/* Text Selection Styles */
*::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}


/* ============================================================
   3. SCROLLBAR STYLES
   ============================================================ */
html::-webkit-scrollbar {
  width: .8rem;
}

html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
}


/* ============================================================
   4. PRELOADER
   ============================================================ */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.loader-container.fade-out {
  top: -120%;
}


/* ============================================================
   5. HEADER & NAVBAR
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

/* Sticky header on scroll */
header.sticky {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 10%;
}

/* Section Base Styles */
section {
  min-height: 100vh;
  padding: 2rem 9%;
}

/* Section Heading Styles */
.heading {
  font-size: 3.5rem;
  color: var(--heading-color);
  font-weight: 800;
  text-align: center;
}

.heading span {
  color: var(--heading-span-color);
}

/* ----------------------------------------------------------
   5.1 Logo Styles
   ---------------------------------------------------------- */
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo i {
  font-size: 2.2rem;
}

header .logo .logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

header .logo:hover {
  color: var(--accent-hover-color);
}

/* ----------------------------------------------------------
   5.2 Navigation Menu
   ---------------------------------------------------------- */
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .navbar li {
  margin-left: 2.5rem;
}

header .navbar ul li a {
  font-size: 1.57rem;
  color: var(--text-primary-color);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: .2s;
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: var(--main-color);
  border-bottom: .2rem solid var(--main-color);
  padding: .5rem 0;
}

/* ----------------------------------------------------------
   5.3 Hamburger Menu (Mobile)
   ---------------------------------------------------------- */
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: var(--text-primary-color);
  display: none;
}

@media(max-width:768px) {
  #menu {
    display: block;
  }

  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: var(--bg-dark-blue);
  }

  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }

  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 26rem;
  }

  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: var(--text-white);
    font-size: 2rem;
  }

  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: var(--text-white);
    border-radius: .5rem;
    border-bottom: .5rem solid var(--main-color);
  }

  .fa-times {
    transform: rotate(180deg);
  }

  header .navbar.nav-toggle {
    right: 0;
  }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}

/* Particle Background */
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* ----------------------------------------------------------
   6.1 Content & Typography
   ---------------------------------------------------------- */
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}

.home .content h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--main-color-dark);
}

.home .content h1 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}

.home .content p {
  font-size: 2.5rem;
  color: var(--text-primary-color);
  font-weight: 600;
  padding: 1rem 0;
}

.home .content p span {
  font-size: 2.5rem;
  color: var(--accent-red);
  font-weight: 600;
  padding: 1rem 0;
}

/* ----------------------------------------------------------
   6.2 Hero Image
   ---------------------------------------------------------- */
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}

.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  cursor: pointer;
}

.home .image img:hover {
  box-shadow: var(--shadow-hover);
}

/* ----------------------------------------------------------
   6.3 Hero Button
   ---------------------------------------------------------- */
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: var(--btn-text);
  background: var(--btn-bg);
  box-shadow: 0px 5px 18px var(--btn-shadow);
  font-family: var(--font-secondary);
}

.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}

.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.home .btn:hover {
  background: var(--btn-hover);
}

.home .btn:hover i {
  transform: translateX(5px);
}

/* ----------------------------------------------------------
   6.4 Social Icons
   ---------------------------------------------------------- */
.socials {
  position: relative;
  margin-top: 9rem;
}

.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}

.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}

/* Social Icons - Brand Colors */
.social-icons a.github:hover {
  background-color: #0e0e0e;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.dev:hover {
  background-color: #070707;
}

.social-icons a.instagram:hover {
  background-color: #ee00da;
}

/* ----------------------------------------------------------
   6.5 Hero Media Queries
   ---------------------------------------------------------- */
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }

  .socials {
    margin-top: 12rem;
  }

  .home .image img {
    margin-top: -12rem;
  }

  .home .content p {
    font-size: 2.2rem;
  }

  .home .content p span {
    font-size: 2.2rem;
  }
}


/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--bg-white);
  min-height: auto;
  padding-bottom: 6rem;
}

/* ----------------------------------------------------------
   7.1 Layout & Content
   ---------------------------------------------------------- */
.about .row {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 4rem;
  align-items: center;
  justify-content: center;
}

.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}

.about .row .image img {
  width: 35rem;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .6);
  mix-blend-mode: luminosity;
  transition: .3s;
  cursor: pointer;
}

.about .row .image img:hover {
  mix-blend-mode: normal;
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
}

.about .row .content h3 {
  color: var(--text-primary-color);
  font-size: 3rem;
  font-weight: 800;
}

.about .row .content .tag {
  font-size: 1.6rem;
  color: var(--main-color);
  font-weight: 700;
  margin-top: .5rem;
  display: block;
  margin-bottom: 1rem;
}

.about .row .content p {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  text-transform: none;
  line-height: 1.7;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-top: .5rem;
}

.about .row .content .box-container .box p {
  text-transform: none;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.about .row .content .box-container .box p span {
  color: var(--main-color);
  font-weight: 700;
  margin-right: 1rem;
}

/* ----------------------------------------------------------
   7.2 Resume Button
   ---------------------------------------------------------- */
.resumebtn {
  margin-top: 3rem;
}

.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: .5em;
  transition: .3s;
  color: var(--btn-text);
  background: var(--btn-bg);
  box-shadow: 0px 5px 10px var(--btn-shadow);
  font-family: var(--font-secondary);
}

.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}

.resumebtn .btn:hover {
  background: var(--btn-hover);
}

.resumebtn .btn:hover i {
  transform: translateX(5px);
}

/* ----------------------------------------------------------
   7.3 About Media Queries
   ---------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }

  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }

  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }

  .about .row .content {
    padding: 1rem;
  }

  .about .row .content .box-container {
    gap: 0;
  }
}


/* ============================================================
   8. SKILLS SECTION
   ============================================================ */
.skills {
  min-height: 90vh;
  background: var(--bg-skills);
}

.skills h2 {
  color: #fff;
}

.skills .heading span {
  color: rgb(255, 230, 0);
}

.skills .container {
  background: rgba(0, 0, 22, 0.4);
  color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}

/* ----------------------------------------------------------
   8.1 Skills Grid
   ---------------------------------------------------------- */
.skills .container .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  flex-wrap: wrap;
  gap: 1.8rem;
}

.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  background: rgba(0, 0, 22, 0.9);
  transition: 0.2s;
}

.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 2, 68, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.skills .container .bar .info i {
  font-size: 4rem;
}

.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--font-primary);
  margin-left: 0.5rem;
}

/* ----------------------------------------------------------
   8.2 Skills Media Queries
   ---------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }

  .skills .container .row {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }

  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}


/* ============================================================
   9. EDUCATION SECTION
   ============================================================ */
.education {
  background: var(--bg-education);
  min-height: 80vh;
  padding: 8rem 5%;
}

.education h2 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.education .heading span {
  color: var(--heading-span-color);
}

.education .qoute {
  font-size: 1.6rem;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 4rem;
  color: var(--text-secondary-color);
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   9.1 Education Cards
   ---------------------------------------------------------- */
.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 22rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s;
  background: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.education .box-container .box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.25);
  border-color: rgba(6, 182, 212, 0.4);
}

.education .box-container .box .image {
  flex: 0 0 auto;
  width: 38rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.education .box-container .box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  flex: 1;
  text-align: left;
}

.education .box-container .box .content h3 {
  font-size: 2.4rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.education .box-container .box .content p {
  font-size: 1.5rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.education h4 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Education Card Buttons */
.education .box-container .box .content .btns {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.education .box-container .box .content .btns .btn {
  padding: 1.2rem 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: var(--btn-text);
  background: var(--btn-bg);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.education .box-container .box .content .btns .btn:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.education .box-container .box .content .btns .btn i {
  font-size: 1.3rem;
}

/* ----------------------------------------------------------
   9.2 Education Media Queries
   ---------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .education {
    padding: 6rem 4%;
  }

  .education .qoute {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .education .box-container {
    gap: 2rem;
  }

  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }

  .education .box-container .box .image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .education .box-container .box img {
    width: 100%;
    height: 100%;
  }

  .education .box-container .box .content {
    padding: 2rem;
  }

  .education .box-container .box .content h3 {
    font-size: 2rem;
  }

  .education .box-container .box .content .btns {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .education .box-container .box .content .btns .btn {
    padding: 1rem 1.8rem;
    font-size: 1.3rem;
  }
}


/* ============================================================
   10. WORK/PORTFOLIO SECTION
   ============================================================ */
.work {
  /* background: #010124; */
  background: var(--bg-work);
}

.work h2 {
  color: #fff;
  padding: 1rem;
}

.work .heading span {
  color: rgb(255, 230, 0);
}

.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}

/* ----------------------------------------------------------
   10.1 Project Cards
   ---------------------------------------------------------- */
.work .box-container .box {
  flex: 1 1 30rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  height: 30rem;
}

.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
}

.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: var(--accent-gold);
}

.work .box-container .box .content .tag h3 {
  font-size: 2rem;
  color: var(--text-primary-color);
}

.work .box-container .box:hover .content {
  top: 25%;
}

/* Project Description */
.work .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work .desc p {
  font-size: 1.5rem;
}

.work .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}

.work .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 2rem;
}

.work .desc .btns .btn:hover {
  background: #310ae0f5;
}

/* ----------------------------------------------------------
   10.2 View All Button
   ---------------------------------------------------------- */
.work .viewall {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: var(--btn-text);
  font-weight: 700;
  border: 1px solid #fff;
  background-color: var(--accent-gold);
  text-align: center;
}

.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: var(--font-secondary);
}

.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.work .viewall .btn:hover {
  background: #fff;
  color: #000;
}

.work .viewall .btn:hover i {
  transform: translateX(5px);
}


/* ============================================================
   11. EXPERIENCE SECTION
   ============================================================ */
.experience {
  background: var(--bg-experience);
}

.experience .heading {
  margin-bottom: 3rem;
}

/* ----------------------------------------------------------
   11.1 Timeline Layout
   ---------------------------------------------------------- */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto 4rem auto;
}

/* Timeline Circles/Icons */
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid var(--accent-orange);
  top: 15px;
  border-radius: 50%;
  z-index: 10;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 900;
  color: #020133;
  font-family: 'Font Awesome 5 Free';
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Timeline Vertical Line */
.experience .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #020133;
  top: -3rem;
  bottom: -4rem;
  left: 50%;
  margin-left: -3px;
  z-index: 1;
  pointer-events: none;
}

.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  z-index: 5;
}

.experience .left {
  left: 0;
}

.experience .right {
  left: 50%;
}

.experience .right::after {
  left: -17px;
}

/* Timeline Arrows - Pointing Right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--accent-orange);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--accent-orange);
}

/* Timeline Arrows - Pointing Left */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--accent-orange);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--accent-orange) transparent transparent;
}

/* ----------------------------------------------------------
   11.2 Timeline Content
   ---------------------------------------------------------- */
.experience .content {
  background-color: var(--accent-orange);
  position: relative;
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
}

.experience .content .tag {
  padding: 0;
  margin: 0 0 .5rem 0;
}

.experience .content .tag h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.experience .content .desc {
  padding: 0;
  margin: 0;
}

.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: .5rem 0 .3rem 0;
  padding: 0;
}

.experience .content .desc p {
  font-size: 1.3rem;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   11.3 More Button (View All)
   ---------------------------------------------------------- */
.morebtn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: var(--btn-text);
  background: var(--btn-bg);
  box-shadow: 0px 5px 10px var(--btn-shadow);
  text-align: center;
}

.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: var(--font-secondary);
}

.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.morebtn .btn:hover {
  background: var(--btn-hover);
}

.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* ----------------------------------------------------------
   11.4 Experience Media Queries
   ---------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }

  .experience .timeline {
    margin-top: 2rem;
  }

  .experience .timeline::after {
    left: 31px;
  }

  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }

  .experience .container::after {
    font-size: 2.2rem;
  }

  .experience .container::before {
    left: 61px;
    border: medium solid var(--accent-orange);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--accent-orange) transparent transparent;
  }

  .experience .left::after {
    left: 15px;
  }

  .experience .right::after {
    left: 15px;
  }

  .experience .right {
    left: 0%;
  }

  .morebtn {
    margin-top: 3rem;
  }
}


/* ============================================================
   12. CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--bg-contact);
  min-height: 60vh;
}

.contact .container {
  max-width: 1050px;
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  margin: 2rem 5rem;
  box-shadow: var(--shadow-card);
}

.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}

.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}

.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}

/* ----------------------------------------------------------
   12.1 Contact Form
   ---------------------------------------------------------- */
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}

form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}

form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--main-color);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

/* ----------------------------------------------------------
   12.2 Form Inputs
   ---------------------------------------------------------- */
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: var(--font-primary);
  border-radius: 5px;
  border: 1px solid var(--text-secondary-color);
  background: var(--bg-contact);
}

.field input::placeholder,
.message textarea::placeholder {
  color: var(--text-secondary-color);
}

.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}

.field input:focus~i,
.message textarea:focus~i {
  color: rgb(115, 3, 167);
}

form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}

form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}

form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}

form .message textarea::-webkit-scrollbar {
  width: 0px;
}

/* Form Submit Button */
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}

.button-area button {
  color: var(--btn-text);
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: var(--btn-bg);
  box-shadow: 0px 5px 10px var(--btn-shadow);
  transition: 0.3s ease;
  font-family: var(--font-secondary);
}

.button-area button:hover {
  background: #421lecf5;
}

.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}

.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}

.button-area button:hover i {
  left: 8px;
}

/* ----------------------------------------------------------
   12.3 Contact Media Queries
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }

  .contact .container {
    margin: 3rem 0 2rem 0;
  }

  .contact .container .content {
    padding: 18px 12px;
  }

  .contact .content .image-box {
    display: none;
  }

  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}

/* ----------------------------------------------------------
   12.4 Form Messages (Success/Error)
   ---------------------------------------------------------- */
.form-message {
  display: none;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  animation: fadeInDown 0.5s ease;
}

.form-message.success {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(46, 204, 113, 0.15));
  color: #27ae60;
  border: 2px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(192, 57, 43, 0.15));
  color: #e74c3c;
  border: 2px solid rgba(231, 76, 60, 0.3);
}

.form-message i {
  margin-right: 0.8rem;
}

/* Form Message Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Submit Button States */
#contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

#contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* ============================================================
   13. FOOTER SECTION
   ============================================================ */
.footer {
  min-height: auto;
  padding-top: 0;
  background: var(--bg-footer);
}

/* ----------------------------------------------------------
   13.1 Footer Layout
   ---------------------------------------------------------- */
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: var(--footer-text-color);
  padding-bottom: 1rem;
  font-weight: normal;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: var(--footer-text-color);
  padding: .7rem 0;
  text-transform: none;
}

.footer .box-container .box p i {
  padding-right: 1rem;
  color: var(--main-color);
}

.footer .box-container .box a {
  font-size: 1.5rem;
  color: var(--footer-text-color);
  padding: .3rem 0;
  display: block;
}

.footer .box-container .box a:hover {
  color: var(--accent-yellow);
}

/* ----------------------------------------------------------
   13.2 Social Share
   ---------------------------------------------------------- */
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: .2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}

.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: .1rem solid rgb(180, 178, 178);
  color: var(--accent-yellow);
}

/* ----------------------------------------------------------
   13.3 Credits
   ---------------------------------------------------------- */
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--footer-text-color);
  border-top: .1rem solid #fff3;
}

.footer .credit a {
  color: var(--accent-yellow);
}

/* Heart Animation */
.footer .fa {
  color: var(--accent-red);
  margin: 0 .3rem;
  font-size: 1.5rem;
  animation: pound .35s infinite alternate;
}

@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

/* ----------------------------------------------------------
   13.4 Footer Media Queries
   ---------------------------------------------------------- */
@media(max-width:450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }

  .footer .box-container .box p {
    padding: 0.7rem;
  }

  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}


/* ============================================================
   14. COMMON MEDIA QUERIES
   ============================================================ */
@media(max-width:450px) {
  html {
    font-size: 55%;
  }

  body {
    padding-right: 0;
  }

  section {
    padding: 2rem;
  }
}


/* ============================================================
   END OF STYLESHEET
   ============================================================ */