/**
* Template Name: Personal - v2.1.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --white: #fff;
    --custom-blue: #010e1b;
    --custom-green: #12d640;
    --custom-gray: #dee2e6;
    --custom-yellow: #ffc107;
    --custom-dark-green: #1c7d32;
    --custom-dark-yellow: #9e7f25;
    --custom-dark-blue: #09203a;
  
    /* New palette */
    --cool-blue: #081f62;
    --gray: #fefefe;
    --dark-green: #064635;
    --navy-blue: #051747;
    --yellow: #ffc107;
    --light-pink: #edc7b7;
    --golden-yellow: #9e7f25;
    /* --dark-blue: #e7e9f0; */
    --dark-blue: #d7d9e2;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--cool-blue);
    position: relative;
    background: transparent;
  }
  
  body::before {
    content: '';
    position: fixed;
    background: var(--gray);
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
  }
  
  @media (min-width: 1024px) {
    body::before {
      background-attachment: fixed;
    }
  }
  
  a {
    color: var(--dark-green);
  }
  
  a:hover {
    color: var(--dark-green);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Raleway', sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: ease-in-out 0s;
    position: relative;
    height: auto;
    display: flex;
    align-items: flex-start;
    z-index: 997;
    overflow-y: visible;
    padding: 60px 0;
    background: var(--dark-blue);
  }
  
  #header * {
    transition: ease-in-out 0s;
  }
  
  #header .container {
    background: transparent;
    padding: 30px;
  }
  
  #header h1 {
    font-size: 48px;
    margin-top: 0px;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }
  
  #header h1 a,
  #header h1 a:hover {
    color: var(--navy-blue);
    line-height: 1;
    display: inline-block;
  }
  
  #header .about-content {
    margin-top: 20px;
    background: var(--dark-blue);
    padding: 10px;
    border-radius: 5px;
  }
  
  #header .about-content .content {
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #header .about-content .content p {
    color: var(--cool-blue);
    line-height: 1.6;
    margin-left: auto;
    margin-bottom: 30px;
  }
  
  #header .about-content .content ul li {
    margin-bottom: 30px;
    color: var(--cool-blue);
  }
  
  #header .interests {
    margin-top: auto;
  }
  
  #header .interests .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--dark-blue);
    transition: ease-in-out 0.3s;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  #header .interests .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    color: var(--cool-blue);
  }
  
  #header .interests .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 15px;
    color: var(--cool-blue);
  }
  
  #header .interests .icon-box:hover {
    background: #c0c0c4;
  }
  
  #header .social-links {
    margin-top: 30px;
    display: flex;
  }
  
  #header .social-links a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cool-blue);
    line-height: 1;
    margin-right: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  
  #header .social-links a:hover {
    background: var(--light-pink);
  }
  
  @media (max-width: 992px) {
    #header {
      padding: 30px 0;
    }
    
    #header h1 {
      font-size: 36px;
    }
    
    #header .social-links {
      margin-top: 15px;
    }
    
    #header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    #header .about-content {
      margin-top: 20px;
    }
    
    #header .col-lg-6:last-child {
      margin-top: 30px;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu {
    margin-top: 35px;
  }
  
  .nav-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu li + li {
    margin-left: 30px;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: var(--cool-blue);
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
  }
  
  .nav-menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--golden-yellow);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .nav-menu a:hover:before,
  .nav-menu li:hover > a:before,
  .nav-menu .active > a:before {
    visibility: visible;
    width: 25px;
  }
  
  .nav-menu a:hover,
  .nav-menu .active > a,
  .nav-menu li:hover > a {
    color: var(--dark-green);
    text-decoration: none;
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: var(--cool-blue);
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
    transition: ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: var(--cool-blue);
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover,
  .mobile-nav .active > a,
  .mobile-nav li:hover > a {
    color: var(--light-pink);
    text-decoration: none;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: var(--cool-blue);
  }
  
  /* Header Top */
  #header.header-top {
    height: 90px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: var(--dark-blue);
  }
  
  #header.header-top .social-links,
  #header.header-top h2 {
    display: none;
  }
  
  #header.header-top h1 {
    margin-right: auto;
    font-size: 36px;
  }
  
  #header.header-top .container {
    display: flex;
    align-items: center;
  }
  
  #header.header-top .nav-menu {
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #header.header-top {
      height: 60px;
    }
    #header.header-top h1 {
      font-size: 26px;
    }
  }
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    overflow: visible;
    position: relative;
    width: 100%;
    top: 0;
    bottom: auto;
    opacity: 1;
    z-index: 2;
    padding: 60px 0;
  }
  
  section.section-show {
    top: 0;
    bottom: auto;
    opacity: 1;
    padding-bottom: 30px;
  }
  
  section .container {
    background: transparent;
    padding: 30px;
  }
  
  @media (max-width: 768px) {
    section {
      top: 120px;
    }
    section.section-show {
      top: 80px;
    }
  }
  
  .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-blue);
    font-family: 'Poppins', sans-serif;
  }
  
  .section-title h2::after {
    content: '';
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--navy-blue);
    margin: 4px 10px;
  }
  
  .section-title p {
    margin: 0;
    margin: -15px 0 15px 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: var(--cool-blue);
  }
  
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about-me .content {
    padding: 20px;
  }
  
  .about-me .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: var(--cool-blue);
    margin-bottom: 20px;
  }
  
  .about-me .content p {
    color: var(--cool-blue);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-me .content ul li {
    margin-bottom: 10px;
    color: var(--cool-blue);
  }
  
  /*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
  .counts {
    padding: 70px 0 60px;
  }
  
  .counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: var(--light-pink);
    border-radius: 50px;
  }
  
  .counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--cool-blue);
  }
  
  .counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
  }
  
  /*--------------------------------------------------------------
  # Skills
  --------------------------------------------------------------*/
  .skills .icon-box {
    background: var(--dark-blue);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  .skills .icon-box h4 {
    color: var(--cool-blue);
    margin-bottom: 15px;
  }
  
  .skills .icon-box p {
    color: var(--cool-blue);
  }
  
  /*--------------------------------------------------------------
  # Interests
  --------------------------------------------------------------*/
  .interests .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--dark-blue);
    transition: ease-in-out 0.3s;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  .interests .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    color: var(--cool-blue);
  }
  
  .interests .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    color: var(--cool-blue);
  }
  
  .interests .icon-box:hover {
    background: #c0c0c4;
  }
  
  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.12);
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: var(--cool-blue);
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.25);
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials .owl-nav,
  .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  .testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  .testimonials .owl-dot.active {
    background-color: var(--light-pink) !important;
  }
  
  @media (max-width: 767px) {
    .testimonials {
      margin: 30px 10px;
    }
  }
  
  /*--------------------------------------------------------------
  # Resume
  --------------------------------------------------------------*/
  .resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--cool-blue);
  }
  
  .resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  
  .resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: var(--light-pink);
    margin-bottom: 10px;
  }
  
  .resume .resume-item h5 {
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .resume .resume-item ul {
    padding-left: 20px;
  }
  
  .resume .resume-item ul li {
    padding-bottom: 10px;
  }
  
  .resume .resume-item:last-child {
    padding-bottom: 0;
  }
  
  .resume .resume-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: var(--golden-yellow);
    border: 2px solid var(--golden-yellow);
  }
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    text-align: left;
    background: var(--dark-blue);
    padding: 20px;
    transition: all ease-in-out 0.3s;
    margin: 10px;
    border-radius: 5px;
  }
  
  .services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--light-pink);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
  }
  
  .services .icon-box .icon i {
    color: var(--cool-blue);
    font-size: 28px;
  }
  
  .services .icon-box .icon::before {
    position: absolute;
    content: '';
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
  }
  
  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--cool-blue);
  }
  
  .services .icon-box h4 a {
    color: var(--cool-blue);
  }
  
  .services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--cool-blue);
  }
  
  .services .icon-box:hover {
    background: #c0c0c4;
    border-color: var(--light-pink);
  }
  
  .services .icon-box:hover .icon {
    background: var(--cool-blue);
  }
  
  .services .icon-box:hover .icon i {
    color: var(--light-pink);
  }
  
  .services .icon-box:hover .icon::before {
    background: #35e888;
  }
  
  .services .icon-box:hover h4 a,
  .services .icon-box:hover p {
    color: var(--dark-green);
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--cool-blue);
    background: rgba(202, 35, 35, 0.1);
    margin: 0 3px 10px 3px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    text-align: justify;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    background: var(--light-pink);
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: visible;
    z-index: 1;
    background: transparent;
  }
  
  .portfolio .portfolio-wrap::before {
    display: none;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 1;
    position: relative;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info::before,
  .portfolio .portfolio-wrap .portfolio-info::after {
    display: none;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--cool-blue);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: var(--cool-blue);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
    margin-top: 10px;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: var(--cool-blue);
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: var(--dark-green);
  }

  .portfolio-info .portfolio-links ul{
    text-align: justify;
    margin-bottom: 10px;
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info-box {
    color: #444444;
    padding: 20px;
    width: 100%;
    background: var(--dark-blue);
  }
  
  .contact .info-box i.bx {
    font-size: 24px;
    color: var(--navy-blue);
    border-radius: 50%;
    padding: 14px;
    float: left;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .contact .info-box h3 {
    font-size: 20px;
    color: #28a745;
    font-weight: 700;
    margin: 10px 0 8px 68px;
  }
  
  .contact .info-box p {
    padding: 0;
    color: var(--cool-blue);
    line-height: 24px;
    font-size: 14px;
    margin: 0 0 0 68px;
  }
  
  .contact .info-box .social-links {
    margin: 5px 0 0 68px;
    display: flex;
  }
  
  .contact .info-box .social-links a {
    font-size: 18px;
    display: inline-block;
    color: var(--cool-blue);
    line-height: 1;
    margin-right: 12px;
    transition: 0.3s;
  }
  
  .contact .info-box .social-links a:hover {
    color: var(--dark-green);
  }
  
  .contact .php-email-form {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    background: var(--light-pink);
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--light-pink);
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    transition: 0.3s;
    color: var(--cool-blue);
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    background-color: rgba(255, 255, 255, 0.11);
  }
  
  .contact .php-email-form input::-webkit-input-placeholder,
  .contact .php-email-form textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .contact .php-email-form input::-moz-placeholder,
  .contact .php-email-form textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .contact .php-email-form input:-ms-input-placeholder,
  .contact .php-email-form textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .contact .php-email-form input::-ms-input-placeholder,
  .contact .php-email-form textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .contact .php-email-form input::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .contact .php-email-form input {
    padding: 20px 15px;
  }
  
  .contact .php-email-form textarea {
    padding: 12px 15px;
  }
  
  .contact .php-email-form button[type='submit'] {
    background: var(--light-pink);
    border: 0;
    padding: 10px 30px;
    color: var(--cool-blue);
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type='submit']:hover {
    background: #15bb62;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Credits
  --------------------------------------------------------------*/
  .credits {
    position: fixed;
    right: 15px;
    bottom: 15px;
    font-size: 13px;
    color: var(--cool-blue);
    z-index: 1;
  }
  
  .credits a {
    color: var(--light-pink);
    transition: 0.3s;
  }
  
  .credits a:hover {
    color: var(--cool-blue);
  }
  
  @media (max-width: 992px) {
    .credits {
      left: 50%;
      right: 0;
      transform: translateX(-50%);
    }
  }
  
  /* Custom css */
  .img-responsive {
    width: 100%;
    height: 237px;
  }

  /*--------------------------------------------------------------
  # Modal
  --------------------------------------------------------------*/
  .modal-content {
    background: var(--dark-blue);
    color: var(--cool-blue);
  }

  .modal-header {
    border-bottom: 1px solid var(--cool-blue);
  }

  .modal-title {
    color: var(--cool-blue);
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h6 {
    color: var(--cool-blue);
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .modal-body p, .modal-body ul {
    color: var(--cool-blue);
  }

  .modal-body ul li {
    margin-bottom: 5px;
  }

  .close {
    color: var(--cool-blue);
    opacity: 1;
  }

  .close:hover {
    color: var(--dark-green);
    opacity: 0.8;
  }

  .about-inline-list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-inline-list li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Skills Section Styles
--------------------------------------------------------------*/
.skills-category {
  margin-bottom: 3rem;
}

.category-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #09203a;
  margin-bottom: 2rem;
}

.skill-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #47aeff, #5578ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(71, 174, 255, 0.15);
}

.skill-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skill-card h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.skill-progress {
  background: #f0f2f5;
  border-radius: 50px;
  height: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(45deg, #47aeff, #5578ff);
  border-radius: 50px;
  position: relative;
  transition: width 2s ease-in-out;
  animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
  0% {
    width: 0;
  }
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-radius: 50px;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.skill-percentage {
  font-weight: 600;
  color: #47aeff;
  font-size: 0.9rem;
}

/* Responsive design for skills */
@media (max-width: 768px) {
  .skill-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    min-height: 220px;
  }
  
  .category-title {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .skill-icon i {
    font-size: 2.5rem !important;
  }
  
  .skill-card h5 {
    height: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .skills-category {
    margin-bottom: 2rem;
  }
  
  .skill-card {
    padding: 1.25rem 1rem;
    min-height: 200px;
  }
  
  .skill-card h5 {
    font-size: 0.95rem;
    height: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Enhanced Portfolio/Projects Section
--------------------------------------------------------------*/
.portfolio-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.portfolio-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-wrap img {
  transition: transform 0.3s ease;
}

.portfolio-wrap:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-blue);
  color: var(--cool-blue);
  padding: 20px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.portfolio-wrap:hover .portfolio-info {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Smooth Animations and Transitions
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#intro-greeting {
  transition: opacity 0.3s ease;
}

/*--------------------------------------------------------------
# Enhanced Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(71, 174, 255, 0.15);
}

.contact .info-box i {
  font-size: 2rem;
  color: #47aeff;
  margin-bottom: 1rem;
}

.contact .info-box h3 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact .info-box p {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.contact .social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: #6c757d;
  transition: all 0.3s ease;
}

.contact .social-links a:hover {
  color: #47aeff;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Experience Section Enhancements
--------------------------------------------------------------*/
.services .icon-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #47aeff, #5578ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services .icon-box:hover::before {
  transform: scaleX(1);
}

.services .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(71, 174, 255, 0.15);
}

/*--------------------------------------------------------------
# Publication Section Enhancement
--------------------------------------------------------------*/
#publications .icon-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

#publications .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #e80368, #f1081f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#publications .icon-box:hover::before {
  transform: scaleX(1);
}

#publications .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(232, 3, 104, 0.15);
}

/*--------------------------------------------------------------
# Responsive Navigation
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
  }
  
  .nav-menu.show {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .nav-menu ul li {
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
# Loading Animation
--------------------------------------------------------------*/
.skill-percentage,
.progress-bar {
  animation-delay: 0.5s;
}

/*--------------------------------------------------------------
# Button Improvements
--------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(45deg, #47aeff, #5578ff);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(71, 174, 255, 0.3);
}

/*--------------------------------------------------------------
# Typography Improvements
--------------------------------------------------------------*/
.section-title h2 {
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #47aeff, #5578ff);
  border-radius: 2px;
}