/*
Theme Name: guys-best
Theme URI: https://kawapeople.com/themes/skill assessment redefined
Author: The Kawapeople team
Author URI: https://kawapeople.com/
Description: This theme is for skill evaluation shops and is a one stop solution to all their needs.
Requires at least: 5.6
Tested up to: 5.9
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guys-best
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready

*/





@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: "inter", sans-serif;
}

:root {
    --dark-color: #1a1423;
    --light-color: #fdfffc;
   --accent-color: #7161EF;
} 

html {
    scroll-behavior: smooth;
}

body {
    margin:0;
    color: var(--dark-color);

}

a {
    color: var(--dark-color);
    text-decoration: none;
}

.container {

    max-width: 1200px;
    margin-inline:auto;
    padding: 0 32px;
}

.btn {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 8px 32px;
    border: 2px solid var(--accent-color);
    display:inline-block;
    font-weight: 500;
    transition: all 300ms ease;
    cursor: pointer;
}

.btn:hover {
    background: #5947de;
    border: 2px solid #5947de;
}

.btn.outlined {
    color: var(--accent-color);
    background: var(--light-color);
}

.btn.outlined:hover {
    background: var(--accent-color);
    color: #fff;
    
}

.btn.light{
    background: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--light-color);
    width: 340px;
}

.btn.light:hover {
    background: var(--accent-color);
    color: var(--light-color);
}

img {
    width:100%;
    display:flex;
    
}

h1 {
    font-size: 60px;
    line-height: 100%;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 16px 0;
    background: linear-gradient(90deg, #403592 20%, #1a1423 60%);
    background-clip: text;
    -webkit-background-clip: text;  
    color: transparent;

}

h2 {
    font-size: 36px;
    line-height: 120%;
    font-weight: 800;
    letter-spacing: -1px ;
    margin: 8px 0;
    background: linear-gradient(90deg, #403592 8%, #0f0916 60%);
    background-clip: text;
    -webkit-background-clip: text;  
    color: transparent;

}
h3 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -1px;
    margin: 8px 0;
}


p {
    font-size: 16px;
    line-height: 160%;

}
section {
    padding: 120px 0;
}

/* Navbar */

nav {
    position: sticky;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    left:0;
    right: 0;
    max-width: 1200px;
    margin-inline: auto;
    z-index: 5;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 42px rgba(0, 0, 0, 0.1);

    
}

nav .menu-item {
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: 500;
}

nav .menu-item a:hover {
    color: var(--accent-color);

}

nav .menu-item .btn:hover {
    color: var(--light-color);
}

nav .logo {
    font-weight: 700;
    font-size: 18px;
}


/* Hero section */

header {
    display: flex;
    justify-content: space-between;
    height: 100vh;
    align-items:flex-start;
    padding-top: 175px;
    padding-left: 100px;
    margin-right: 100px;
    min-height: 600px;
    max-height: 800px;
    position: relative;
}

.buttons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

header .left {
    max-width: 50%;

}

header .right {
    position:absolute;
    bottom:0;
    right: 0;
 }

header .right img{
    width: 100%;
    height: 500px;
    object-fit: contain;
}

header .bg-color {
    position : absolute;
    width: 400px;
    height: 400px;
    background: #ad95ff;
    right: 0;
    top: 120px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(115px);
}
/*Featured section*/
.featured {
    z-index: 2;
    position: relative;
}
.featured img {
    width: auto;
    height: 32px;
}
.featured .logos {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.featured .container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 40px 32px;
    box-shadow: 0 0 42px -20px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    background: var(--light-color);

}

/*About section */

#about {
    background: #f5f5f5;
    margin-top: -60px;
    padding-top: 180px;

}

#about .container {
    display: flex;
    align-items: center;
    gap: 80px;

}

section .icon {
    width: 30px;
}

.features-container {
    display: flex;
    gap: 40px;
    margin-top: 32px;

}

.feature {
    flex: 1;

}

section .btn {
    margin-top: 28px;
}

/* Services section */

section .heading-container {
    max-width: 500px;
    text-align: center;
    margin-bottom: 60px;
    margin-inline: auto;
}
.services-container {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) ;
    gap:20px;
}

.services-container .service {
    box-shadow: 0 6px 40px rgba(0,0,0, 0.1);
    transition: all 300ms ease;
 
}


.services-container .service img {
    width: 400px;
    height: 300px;
    object-fit: contain;
}


.services-container .content {
    padding: 16px;
}

.services-container .service:hover {
    transform: scale(1.01);
    /*box-shadow: 0 3px 80px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* Horizontal | Vertical | Blur | Color */
    border-radius: 8px; /* Optional, helps soften the look*/
    /*border-top: 1px solid black;
    border-left: 1px solid black;*/
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}

/* Why section*/

#why .container {
    display: flex;
    gap:60px;
    align-items: center;
}

#why {
    background:var(--accent-color);
    color: var(--light-color);
}

#why h2 {
    background: var(--light-color);
    background-clip: text;
    -webkit-background-clip: text;  
    color: transparent;

}

#why .icon {
    filter: brightness(0) invert(1);
}

#why .features-container .feature p {
    gap: 40px;
    padding: 0 1px;
}
/* Blog section */

#blog .labels a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#blog .label {
    background: var(--accent-color);
    padding: 3px 6px;
    border-radius: 4px;

}

/* Contact Form */

#contact {
    background: #f5f5f5;

}

form  {
    display: flex;
    flex-direction: column;
    gap:16px;
}

form .group {
    display: flex;
    gap: 16px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 24px;
    background: #fff;   
    font-size: 16px;

}

form textarea {
    height: 100px;
    resize: none;
}

form .btn{
    font-size: 16px;
    width: fit-content;
    margin-top: 0;
}

/* Footer */

footer .social img {
    width: 30px;
    transition: all 300ms ease;
}

footer .social img:hover {
    transform: scale(1.2);
}

footer {
    background: red;
    color: var(--dark-color);
    padding: 60px 32px;
}

footer a{
    color: var(--light-color);
}

footer .right .social{
    display: flex;
    gap: 32px;
    margin-top: 24px;
    align-items: flex-end;
    justify-content: center;

    
}

footer .top{
    display: flex;
    justify-content: space-between;
}

footer .logo{
    font-size: 24px;
}

footer .copyright {
    color: rgba(0, 0, 0, 0.5);
}

footer .left {
    color: #000000;
}

footer .left .left-top {
    color: yellow;
    text-align: left;
}

footer .left .left-top .left-top-contact {
    color: white;
    text-align: center;
}

footer .center .center-top {
    color: yellow;
    text-align: left;
}
footer .center .center-top a{
    color: yellow;
}


footer .right p {
    color: #000000;
}



.custom-submit {
    width:100px;
    font-family:'Courier New';
    background: blue;
    color: white;
    border: blue;
    cursor: pointer;
}





/* Hidden Elements */



.menu-icon,
.mobile-menu-items {
    display: none;
}
@media (max-width: 1100px) {
    h1 {
        font-size: 48px;
    }
    header .right-image {
        width: 280px;
    }
}

@media (max-width: 800px) {
    .mobile-menu-items {
        display:flex;
        height: 100vh;
        width: 100%;
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        border: 8px solid red;
        background: var(--dark-color);
        z-index: 800;
        justify-content: center;
        align-items: center;
        gap:24px;
        transform: translateX(100%);
        transition: all 300ms ease;
    }

    .mobile-menu-items.active {
        transform:translateX(0);
    }
    .nav-menu {
        display: flex;
        gap: 2rem;
        height:100px;
        
    }
    
    .mobile-menu-items a{
        color:var(--light-color);
    }

    .mobile-menu-items .close-icon {
        filter: brightness(5) invert(1);
        position: fixed;
        top: 118px;
        right:32px;
        cursor: pointer;
        display:flex;
        width:32px;
        object-fit: cover;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 2px;
        width: 32px;
        

        
    }

    .nav-menu{
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        
        }  
    .nav-menu li {
        color: black;
    }
    
    h1 {
        font-size: 36px;
        line-height: 120%;
    }
    .container {
        display: flex;
        justify-content: flex-start;
        max-width: 700px;
    }
    h2 {
        font-size: 28px;
        line-height: 130%;
    }
    h3 {
        font-size: 20px;
    }

    /* main-menu1 */
    .main-menu1 {
        display: none;
    }



/* Header */

header .right {
    position: relative;
    display: flex;
    justify-content: center;
    

}

header {
    flex-direction: column-reverse;
    height: auto;
    gap: 20px;
    max-width: fit-content;
    padding-bottom: 60px;
}

header .right img {
    width: 70%;
    height: auto;
    border-radius: 0 0 30% 30%;
}

header .left {
    max-width: 100%;
}

/* Featured */
.featured .logos {
    gap: 36px;
}
.featured img {
    height: 28px;
}
/* About */

#about .container {
    flex-direction: column;
}

.features-container {
    flex-direction: column;
}

/* Why choose us */

#why .container {
    flex-direction: column;
}

/* contact us */

form .group {
    flex-direction: column;
}

/* Footer */

footer .top {
    flex-direction: column;
}
footer {
    padding: 40px 0;

}

footer .copyright {
    margin-top: 40px;
}

}

.container2 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    
}
.container1 {
    position: fixed;
    top:0px;
    z-index: 6000;
    background-color:#7161EF;
    opacity: 0.8;
    width:100%;
    display: flex;
    justify-content: flex-start;
    


}

/* Addition for responsive hamburger menu */

/*
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;

}

.nav-menu {
  display: flex;
  gap: 2rem;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

*/
/*End of addition for hamburger menu */

.logo {
    display: flex;
    justify-content: left;
    width: 100%;
    height: 110px;
}




.custom-logo{

    
    position:sticky;
    top: 0px;
    left:60px;
    width:200px;
    height:110px;
    object-fit: contain;
    z-index: 6;
    transition: top 0.3s;
    
}

.menu-area {
	background: var( --wpdevs-gray2 );
}

.menu-icon,
.check-button {
	cursor: pointer;
	display: none;
}
.menu-icon .bar1, 
.menu-icon .bar2, 
.menu-icon .bar3 {
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
}
@media (max-width: 767px){
    .menu-icon,
    .check-button {
		display: block;
	}
    .check-button{
        border: none;
        background: transparent;
        height: 55px;
    }
}
 


/* Logo image styling */
.logo img {
    display: flex;
    max-height: 106px; /* Adjust based on your design */
    height: 106px;
    width: auto;
    justify-content: left;
}

.main-navigation {
    display:flex;
    justify-content: flex-end;
    width:100%; 
    
    color: black;
   /* background-color:#7161EF;
    opacity: 0.8;*/
    background-color: rgba(113, 97, 239, 0.8);

    
      
}

/* main-menu1 */
.main-menu1 {
    
     z-index: 6000;
     color: black;    

}
.ma-menu {
    
    border: 8px solid black;
    width: 100%;
}


/*main-menu1 */
.main-menu1 ul{
    /*
    position: absolute;
    width: 100%;
    background: #000000;
    left: -999px;
    text-align: left;
    transition: all cubic-bezier(.79,.14,.15,.86) .5s;
    padding: 0;
    margin: 0;
    z-index: 1;
    */
    display: inline-block;
    justify-content: center;
    color: black;
}

/* Basic navbar item styling */
.main-menu1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-menu1 ul li {
    position: relative;
    padding: 10px 20px;
   /* background-color: #fff; */
    color: #333;
    z-index: 1;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.main-menu1 ul li:hover {
   /* background-color: #7161EF;*/
    z-index: 20000; /* Ensure hovered item stays on top */
}

.main-menu1 a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 2;
}

/* Hover effect */
.main-menu1 a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Prevent items from disappearing */
.main-menu1 {
    position: relative;
    z-index: 1000;
}



.main-menu ul:not(.sub-menu){
    margin-top: 55px;
}
.main-menu ul li{
    display: block;
    margin: 15px 0;
    line-height: 30px;
}
.main-menu ul li a {
    display: inline-block;
    align-items:center;
    color: #000000;
    
    
}

li.menu-item{
    position: relative;
    display: inline-block;
    padding: 0px 10px;
    margin: 0px 10px;
    
}
.sub-menu>li>a:hover,
.sub-menu>li>a:focus{
    width: 83px;
    height: 30px;
    background-color: grey !important;
}

.main-menu li.menu-item-has-children::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc( 52% - 6px);
    width: 0px;
    height: 0px;
    border-top: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000000;
    border-left: 6px solid transparent;
  }


/*
.main-menu ul.sub-menu{
    position: relative;
    top: 10px;
    margin-left: 30px;
    display: inline-block;
    width: auto;
    color: #FFFFFF;
    display:;
    
}
*/
.main-menu ul.sub-menu {
    position: absolute;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #000000;
    z-index: 1;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
    opacity: 0;
    display: none;
    transition: all .350s;
  }

.main-menu ul .menu-item-has-children:hover > ul,
.main-menu ul .menu-item-has-children:focus + ul{
    opacity: 1;
    display: block; 
    
    
}


.main-menu ul.sub-menu li {
    width:max-content;
  }

.main-menu ul.sub-menu a{
   /* color: var( --wpdevs-gray1 ); */
   color: white;

    
}





.search-results{
    position: relative;
    top: 40px;
    left:0;
    right:0;
    background: #edf2f4;
    padding: 24px 32px;
    opacity: 0;
    pointer-events: none;
    transition: all 400ms ease;
}

.search-results.active{
    opacity: 1;
    pointer-events: auto;
}

.search-results .search-title{
    font-size: 14px;
    margin: 16px 0;

}

.search-results ul{
    list-style: none;
    padding:0;
    margin: 0;

}

.search-results ul a{
    text-decoration: none;
    font-size: 16px;
    color: #2b2d42;
    font-weight: bold;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: all 400ms ease;
}

.search-results ul a:hover{
    background: #dae7eb;
}

/* Custom Login form */

section.main-header{

    display: block;
    justify-content: center; 
}   

.main-header .login-form form{
    margin:20px 0px;    
}
.main-header .login-form form label{
    font-size: 16px;
    color: yellow;
    
}

/* SEO pricing */


.green{
    background-color: aqua;
    max-height: 2000px;
}

.container .main-section{
    max-height: 600px;
    position:fixed;
    top: 18px;
    display: flex;
    justify-content: left;
    border: 8px solid white;
    
}



.main-section-card{
    display: flex;
    justify-content: left;
}

.card{
    width: 100%;
    
}
.container .card-format h5{
    color: yellow;
    background-color: red;
}


.container .para-text p{
    color: yellow;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    
}

.vertical{

    border-left: 5px solid black;
    height: 100px;
}
section .header-center{

    display: inline-block;
    justify-content: center;
 
}

.text-center{
    position: relative;
    left: 30px;
    
}
.p-text-center{
    padding-bottom: 40px;
}



.header-center .card-placement{
    display:flex;
    justify-content: center;
       
    padding-top:30px;
    

    

}
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
	box-sizing: border-box;
}

body {
	background-color: #f6f5f7;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 50px;
}

.text-center {
	text-align: center;
}

.pricing-box-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pricing-box {
	background-color: #ffffff;
	box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.5);
	border-radius: 4px;
	flex: 1;
	padding: 0 30px 30px;
	margin: 2%;
	min-width: 250px;
	max-width: 350px;
}

.pricing-box h5 {
	text-transform: uppercase;
}

.price {
	margin: 24px 0;
	font-size: 36px;
	font-weight: 900;
}

.price sub, .price sup {
	font-size: 16px;
	font-weight: 100;
}

.features-list {
	padding: 0;
	list-style-type: none;
}

.features-list li {
	font-weight: 100;
	padding: 12px 0;
	font-weight: 100;
}

.features-list li:not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-primary {
	border-radius: 25px;
	border: none;
	background-color: #EC1362;
	color: #ffffff;
	cursor: pointer;
	padding: 10px 15px;
	margin-top: 20px;
	text-transform: uppercase;
	transition: all 0.1s ease-in-out;
}

.btn-primary:hover {
	box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.5);
	transform: translateY(-3px);
}

.pricing-box-bg-image {
	background-image: url('https://images.unsplash.com/photo-1550029402-226115b7c579?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=701&q=80');
	background-size: cover;
	background-position: center center;
	color: #ffffff;
}

.pricing-box-bg-image .features-list li {
	border-bottom-color: rgba(255, 255, 255, 1);
}

.pricing-box-bg-image .btn-primary {
	background-color: #ffffff;
	color: #000;
}

footer {
	background-color: #6f9da2;
	color: #fff;
	font-size: 14px;
	bottom: 0;
	position: relative;
	left: 0;
	right: 0;
	text-align: center;
    
}

footer p {
	margin: 10px 0;
}

footer i {
	color: red;
}

footer a {
	color: #3C97BF;
	text-decoration: none;
}
.br-extra{
    display: block;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}






.seo-class{
    background-color: red;

}

.start-class{
    background-color: red;
}

.text-header {
    position: relative;
    left: 130px;
    top: 100px;
}

section .rank-header{
    display: flex;
    justify-content: center;
    padding-top: 150px;
    flex-wrap: wrap;
    
}

.col-header{
    display: flex;
    justify-content: center;
    padding-bottom:40px;

    
    
}

.col-header p{
    text-align: left;
    padding-left: 70px;
}
.col-header .text-color p{
    color:#000;
    font-size: 22px;
}

section .total-align{
    display: inline-block;
    justify-content: flex-start;
    box-sizing: border-box;
}

.total-align .head-align{
    position:relative;
    left: 200px;
    padding-top:50px;
    padding-bottom:25px;
}

.total-align .text-align{
    position:relative;
    left: 200px;
    text-align: left;
    font-size: 22px;
    color: black;
}

.total-align .text-align p{
    font-size: 22px;
    color: black;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 20px;
}
.text-container{
    width: 1200px;
    padding-bottom: 40px;
}

.wrap{
    float:right;
    margin: 5px;
    padding-left:70px;
}

.wrap1{
    float:left;
    margin: 5px;
    padding-right:70px;
}

.silver-col{
    color:silver;
}

/* Blog post styling */

.post-meta-box {
  background-color: #f9f9f9;
  border-left: 4px solid #0073aa;
  padding: 5px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.post-meta-box p {
  margin: 5px 0;
}

.post-separator {
  border: none;
  border-top: 2px solid #ccc;
  margin: 80px 0;
}

.latest-posts {
  list-style: none;
  padding: 0;
}
.latest-posts li {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.latest-posts a {
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
}
.latest-posts .post-date {
  display: block;
  font-size: 0.9em;
  color: #666;
}

.post-excerpt {
  font-size: 0.95em;
  color: #444;
  margin-top: 8px;
}
.post-category {
  font-size: 0.9em;
  color: #888;
  margin-top: 5px;
}

.post-thumbnail {
  text-align: center;

}
.post-thumbnail img {
  /*width: 100%;*/
  max-width: 300px;
  /*height: auto;*/
  border-radius: 6px;
  margin-bottom: 10px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  
}

.for-paginator {
    display:block;
    align-items:center;
    text-align: center;
    font-size:larger;
    color:red;
}