/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');


/* Main Styles */
body {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a, a:link, a:focus, a:hover, a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Section Heading Styles */
.section-heading {
    margin-bottom: 120px;
    position: relative;
}

.section-heading:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -40px;
    width: 50px;
    height: 8px;
    background: #ff0;
    margin: 0 auto;
}

.section-heading h2 {
    font-size: 40px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

/* Header Area Styles */
.header-area {
    padding: 50px 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.main-menu-btn a {
    font-size: 30px;
    color: #fff;
}

.main-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: all .4s ease-in-out;
}

.main-menu-content.active {
    transform: translateY(0);
}


.main-menu-content ul {
    text-align: center;
}

.main-menu-content ul li {
    margin: 20px 0;
}

.main-menu-content ul li a {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.main-menu-content ul li a:before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 0;
    height: 8px;
    background: #ff0;
    transition: all .4s ease;
}

.main-menu-content ul li a:hover:before {
    width: 100%;
    left: auto;
    right: 0;
}

.main-menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: #fff;
}

.main-menu-close-btn:hover {
    color: #fff;
}

/* Hero Area Styles */
.hero-area {
    background-image: url(../images/hero/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-position: top center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.hero-content h1 {
    font-size: 70px;
    color: #fff;
    line-height: 1.5;
}

.hero-content h3 {
    font-size: 40px;
    color: #fff;
    line-height: 1.5;
}

.hero-content .title-color {
    color: #f00;
}

.hero-content .hero-btn {
    display: inline-block;
    background-color: #ff0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    padding: 15px 30px;
    border-radius: 4px;
    margin-top: 30px;
    position: relative;
    z-index: 0;
}

.hero-content .hero-btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 4px;
    background: #fff;
    z-index: -1;
    transition: all .4s ease;
}

.hero-content .hero-btn:hover:before {
    width: 100%;
    left: auto;
    right: 0;
}

/* Particles-JS Styles */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Animated Headline Styles */
.hero-area .ah-headline.clip span {
    padding: 0;
}

/* Service Area Styles */
.service-area {
    padding: 140px 0 110px;
    background: #111;
}

.single-service {
    background: #000;
    padding: 80px 50px;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
}

.single-service:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: #ff0;
    border-radius: 6px;
    z-index: -1;
    transition: all .4s ease;
}

.single-service:hover:before {
    height: 100%;
    top: auto;
    bottom: 0;
}

.single-service i {
    font-size: 30px;
    color: #ff0;
    margin-bottom: 15px;
    display: inline-block;
    transition: all .4s ease;
}

.single-service:hover i {
    color: #111;
}

.single-service h3 {
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: all .4s ease;
}

.single-service:hover h3 {
    color: #111;
}

.single-service p {
    font-size: 16px;
    color: #444;
}

/* About Area Styles */
.about-area {
    padding: 140px 0;
    background: #000;
}

.about-img img {
    border-radius: 10px;
}

.about-content h2 {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
}

.about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-info {
    margin-top: 30px;
}

.about-info li .info-content,
.about-info li .info-title {
    font-size: 16px;
    line-height: 1.5;
    margin-right: 10px;
    color: #555;
}

.about-info li .info-title {
    font-weight: 500;
}

.about-info li .info-content {
    font-weight: 400;    
}

.about-skills {
    margin-top: 30px;
}

.single-skill {
    margin-bottom: 20px;
}

.single-skill .skill-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

.single-skill .content {
    background: #1b1a11;
    width: 100%;
    padding: 5px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .16);
}

.single-skill .percentage {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff0;
    transition: all 1s ease;
}

.single-skill .percentage:before {
    content: attr(data-value);
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 14px;
    color: #fff;
}

/* Portfolio Area Styles */
.portfolio-area {
    padding: 140px 0 110px;
    background: #111;
}

.portfolio-list {
    margin-bottom: 50px;
}

.portfolio-list ul li {
    display: inline-block;
    padding: 5px 8px;
    color: #666;
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    transition: all .4s ease;
    cursor: pointer;
}

.portfolio-list ul li.active,
.portfolio-list ul li:hover {
    background: #ff0;
    color: #000;
    border-radius: 4px;
}

.single-portfolio {
   margin-bottom: 30px; 
    position: relative;
}

.single-portfolio img {
    border-radius: 10px;
    width: 100%;
}

.single-portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 0,.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.single-portfolio:hover .portfolio-overlay {
    height: 100%;
    opacity: 1;
    visibility: visible;
    top: auto;
    bottom: 0;    
}

.portfolio-overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #111;
    font-size: 20px;
}

/* Testimonial Area Styles */
.testimonial-area {
    padding: 140px 0 110px;
    background: #000;
}

.single-testimonial {
    padding: 50px 30px;
    border-radius: 10px;
    background: #111;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-meta a {
    display: flex;
    align-items: center;
}

.testimonial-meta a img {
    height: 50px;
    margin-right: 10px;
}

.testimonial-meta .testimonial-author-name {
    font-size: 16px;
    color: #fff;
    display: block;
}

.testimonial-meta .testimonial-author-user {
    color: #0d6efd;
    font-size: 16px;
}

.testimonial-meta i {
    color: #0d6efd;
    font-size: 24px;
}

.single-testimonial p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

/* Testimonial Area Start */
.pricing-area {
    padding: 140px 0 110px;
    background: #111;
}

.single-price {
    text-align: center;
    background: #000;
    padding: 80px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    margin-bottom: 30px;
}

.single-price p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.single-price h2 {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
}

.single-price ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 15px 0;
}

.single-price .price-btn {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    margin-top: 30px;
    transition: all .4s ease;
}

.single-price .price-btn.active,
.single-price .price-btn:hover {
    background: #ff0;
    color: #000;
    border: 1px solid #ff0;
}

/* Contact Area Styles */
.contact-area {
    padding: 140px 0;
    background: #000;
}

.contact-form {
    text-align: center;
}

.contact-form p {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #1f1e1e;
    color: #fff;
    border: 0;
    border-radius: 4px;
}

.contact-form textarea {
    height: 250px;
    resize: none;
}

.contact-form button {
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    background: #ff0;
    border: 0;
    border-radius: 4px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 0;
}

.contact-form button:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    color: #111;
    border-radius: 4px;
    z-index: -1;
    transition: all .4s ease;
}

.contact-form button:hover:before {
    width: 100%;
    left: auto;
    right: 0;
}

/* Footer Area Styles */
.footer-area {
    padding: 50px 0;
    background: #111;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #0d6efd;
    font-size: 30px;
    transition: all .4s ease;
}

.footer-social ul li a:hover {
    color: #053988;
}

.footer-area .copyrights-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* ScrollUp Styles */
#scrollUp {
    width: 50px;
    color: #111;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ff0;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
}

/* Preloader Styles */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
}
.spinner {
    width: 40px;
    height: 40px;
    background-color: #ff0;
  
    margin: 25% auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
  }
  
  @-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
  }
  
  @keyframes sk-rotateplane {
    0% { 
      transform: perspective(120px) rotateX(0deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
    } 50% { 
      transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
    } 100% { 
      transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
      -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}