/**
* Template Name: Lonely - v4.0.1
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-lonely/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #5a656e;
}

a {
  color: #FFFC00;
  text-decoration: none;
}

a:hover {
  color: #dd5a92;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Titillium Web", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  background: #FFFC00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #db528c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  height: 60px;
  background: #262626;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

#header .logo h1 {
  font-size: 22px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
}

#header .logo h1 span {
  display: inline-block;
}

#header .logo h1 span::first-letter {
  font-size: 26px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: yellow;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

header {
    background-color: #1e1e1e;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

.logo a span {
    color: #fffc00; /* Accent color */
}

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

.nav-menu {
    flex-grow: 1;
    text-align: right; /* Align to the right */
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align to the right */
    background-color: #3330; /* New background color */
    border-radius: 5px; /* Add border radius for a rounded look */
    padding: 8px 15px; /* Adjusted padding for a smaller box */
}

.nav-menu ul li {
    margin-left: 15px; /* Adjusted margin for tighter spacing */
}

.nav-menu ul li:first-child {
    margin-left: 0; /* Remove margin for the first child */
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px; /* Adjusted padding for tighter spacing */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
    background-color: #ff0; /* Focus color */
    color: #1e1e1e;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-menu-container {
        justify-content: space-between; /* Ensure space between logo and hamburger menu */
    }

    .nav-menu ul {
        display: none;
        flex-direction: column;
        width: 50%; /* Make the popup box cover half the width */
        position: absolute;
        top: 60px;
        right: 0; /* Align to the right */
        background-color: #333; /* New background color */
        padding: 15px; /* Adjusted padding for a smaller box */
        border-radius: 5px; /* Add border radius for a rounded look */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .nav-menu ul.open {
        display: flex;
    }

    .nav-menu ul li {
        margin: 10px 0;
        text-align: left;
    }

    .hamburger-menu {
        display: flex;
    }
}



/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/

#home {
  width: 100%;
  height: 100vh;
  background: url("../img/intro-bg.jpg") top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#home:before {
  content: "";
  background: rgba(6, 12, 34, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#home .home-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

#home h1 {
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
}

#home h2 {
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

#home h1 span {
  color: #FFFC00;
}

#home p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}


#home .btn-get-started {
  font-size: 64px;
  transition: 0.5s;
  color: #fff;
  height: 60px;
}

#home .btn-get-started:hover {
  padding-top: 10px;
  color: #FFFC00;
}

@media (min-width: 1024px) {
  #home {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
}

.section-bg {
  background: linear-gradient(180deg, #f2f6f9 0%, #fff 100%);
}

.section-title {
  padding-bottom: 7px;
}

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 2px;
  padding-bottom: 6px;
  position: ;
  color: #e9ecff;
}

.section-title .title-yellow::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #FFFC00;
  bottom: 0;
  left: 0;
}

.section-title .title-grey::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #262626;
  bottom: 0;
  left: 0;
}


.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #fcf2f7;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}







/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Titillium Web", sans-serif;
  color: #2c4964;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #fbeaf1;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #dd5a92;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume{
  background-color: #262626;
  color: white;
}

.title-yellow{
  color: #FFFC00 !important;
}

.title-grey{
  color: #262626 !important;
}
.resume .resume-title {
  font-size: 26px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  font-family: "Titillium Web", sans-serif;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #FFFC00;
  position: relative;

  color: white;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFC00;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4ebf3;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Titillium Web", sans-serif;
}

.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: #fff;
  border: 2px solid #FFFC00;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
  background-color: #FFFC00;
  color: #262626;
}

.services .icon-box {
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: ease-in-out 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #262626;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 30px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #FFFC00;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #262626;
}

.services .description {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 5px;
  text-align:left;
}


.icon-box:hover {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #FFFC00;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

@media (max-width: 768px) {
  .services .icon-box::before {
    bottom: 60%;
  }
}

ul li { padding: 5px 0px; }


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    background-color: #262626;
    color: #ffffff; /* Change text color to black */
    padding-top: 10px; /* Adjust the padding value as needed */
}

.portfolio .portfolio-item {
    box-sizing: content-box;
    min-height: 320px;
}

/* Adjusted picture size */
.portfolio .portfolio-wrap img {
 width: 290px; /* Increased width */
    height: 660px; /* Increased height to maintain aspect ratio */
    border-radius: 50px;
    margin: 0px 0 0 0px;
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #2c4964;
}

.portfolio .portfolio-wrap .portfolio-info p {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 0 45px;
}

.portfolio .portfolio-wrap .quote-icon-right {
    color: #ffffff;
    font-size: 26px;
}

.portfolio .portfolio-wrap .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio .portfolio-wrap .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 0px;
}

.portfolio .portfolio-item .portfolio-img  {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 20px 20px;
    background: #adb5bd;
    position: relative;
    border-radius: 90px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/* Add the img-fluid class styles */
.portfolio .img-fluid {
    max-width: 90%;
    height: auto;
}

.portfolio .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #262626;
}

.portfolio .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #262626;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    background-color: #fffc00;
    color: #000000; /* Change text color to black */
    padding-top: 10px; /* Adjust the padding value as needed */

}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 290px; /* Increased width */
    height: 660px; /* Increased height to maintain aspect ratio */
    border-radius: 50px;
    margin: 0px 0 0 0px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #2c4964;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #6b96be;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-right {
    color: #f7d9e6;
    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: 0px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #262626;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #262626;
}


/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
#faq {
    padding: 0px 0px 1px 0px; /* 0 padding for top, right, and left; 1px padding for bottom */
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

#faq-list {
  padding: 0;
  list-style: none;
}

#faq-list li {
  margin-bottom: 20px;
}

#faq-list li a {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  padding: 0px 0px;
  background: #fffc00;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

#faq-list li a:hover {
  color: #007bff;
}

#faq-list li a .fa {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#faq-list li .collapse {
  padding: 10px 20px;
  background: #fffc00;
  border: 1px solid #212529;
  border-radius: 5px;
}

.collapsed .fa {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 24px;
  }

  #faq-list li a {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #262626;
  padding: 0px 0;
  font-size: 14px;
  box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.12);
  color: white;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
}


.btn{
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  padding-bottom: 15px;
  transition: all 0.2s;
  background-color: #FFFC00;
  border: 0;
  color: #262626;
}
.image-preview{
  border: 1px solid black;
  margin-left: 5%;
}

.list-unstyled a{
  color: #262626 !important;
}


.loader {
  position: relative;
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, .3);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

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

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

.alert{
  margin-top:15px !important;
}