/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200..1000&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(228, 85%, 63%);
    --title-color: hsl(228, 18%, 16%);
    --text-color: hsl(228, 8%, 56%);
    --body-color: hsl(228, 100%, 99%);
    --shadow-color: hsla(228, 80%, 4%, .1);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Nunito Sans", system-ui;
    --normal-font-size: .938rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background-color .4s;
}

a {
    text-decoration: none !important;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    all: unset;
}

/*=============== VARIABLES DARK THEME ===============*/
body.dark-theme {
    --first-color: hsl(228, 70%, 63%);
    --title-color: hsl(228, 18%, 96%);
    --text-color: hsl(228, 12%, 61%);
    --body-color: hsl(228, 24%, 16%);
    --shadow-color: hsla(228, 80%, 4%, .3);
}

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/
.dark-theme .sidebar__content::-webkit-scrollbar {
    background-color: hsl(228, 16%, 30%);
}

.dark-theme .sidebar__content::-webkit-scrollbar-thumb {
    background-color: hsl(228, 16%, 40%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    margin-inline: 1.5rem;
}

.main {
    padding-top: 5rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    margin: .75rem;
}

.header__container {
    width: 100%;
    height: var(--header-height);
    background-color: var(--body-color);
    box-shadow: 0 2px 24px var(--shadow-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1.5rem;
    border-radius: 1rem;
    transition: background-color .4s;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.header__logo i {
    font-size: 1.5rem;
    color: rgb(175, 123, 10);
}

.header__logo h3{
    color: rgb(175, 123, 10);
}

.header__logo span {
    color: rgb(175, 123, 10);
    font-weight: var(--font-semi-bold);
}

.header__toggle {
    font-size: 1.5rem;
    color:rgb(175, 123, 10);
    cursor: pointer;
}

/*=============== SIDEBAR ===============*/
.sidebar {
    position: fixed;
    left: -120%;
    top: 0;
    bottom: 0;
    z-index: var(--z-fixed);
    width: 288px;
    background-color: var(--body-color);
    box-shadow: 2px 0 24px var(--shadow-color);
    padding-block: 1.5rem;
    margin: .75rem;
    border-radius: 1rem;
    transition: left .4s, background-color .4s, width .4s;
}

.sidebar__container,
.sidebar__content {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.sidebar__container {
    height: 100%;
    overflow: hidden;
}

.sidebar__user {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    column-gap: 1rem;
    padding-left: 2rem;
}

.sidebar__img {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--first-color);
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    justify-items: center;
}

.sidebar__img img {
    position: absolute;
    width: 36px;
    bottom: -1px;
}

.sidebar__info h3 {
    font-size: var(--normal-font-size);
    color: var(--title-color);
    transition: color .4s;
}

.sidebar__info span {
    font-size: var(--smaller-font-size);
}

.sidebar__content {
    overflow: hidden auto;
}

.sidebar__content::-webkit-scrollbar {
    width: .4rem;
    background-color: hsl(228, 8%, 85%);
}

.sidebar__content::-webkit-scrollbar-thumb {
    background-color: hsl(228, 8%, 75%);
}

.sidebar__title {
    width: max-content;
    font-size: var(--tiny-font-size);
    font-weight: var(--font-semi-bold);
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar__list,
.sidebar__actions {
    display: grid;
    row-gap: 1.5rem;
}

.sidebar__link {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    column-gap: 1rem;
    color: var(--text-color);
    padding-left: 2rem;
    transition: color .4s, opacity .4s;
}

.sidebar__link i {
    font-size: 1.25rem;
}

.sidebar__link span {
    font-weight: var(--font-semi-bold);
}

.sidebar__link:hover {
    color: rgb(175, 123, 10);
}

.sidebar__actions {
    margin-top: auto;
}

.sidebar__actions button {
    cursor: pointer;
}

.sidebar__theme {
    width: 100%;
    font-size: 1.25rem;
}

.sidebar__theme span {
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
}

/* Show sidebar */
.show-sidebar {
    left: 0;
}

/* Active link */
.active-link {
    color: rgb(175, 123, 10);
}

.active-link::after {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 20px;
    background-color:rgb(175, 123, 10);
}

/*  */
.maincontainer {
    width: 100%;
    height: 150vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./resume-apply-work-form-concept.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideDown 1s ease-in-out;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: slideUp 1.5s ease-in-out;
}

.cta-button {
    background-color: #f39c12;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    animation: fadeInUp 2s ease-in-out;
}

.cta-button:hover {
    background-color: #e67e22;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/*  */

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
    .header__container {
        padding-inline: 1rem;
    }

    .sidebar {
        width: max-content;
    }

    .sidebar__info,
    .sidebar__link span {
        display: none;
    }

    .sidebar__user,
    .sidebar__list,
    .sidebar__actions {
        justify-content: center;
    }

    .sidebar__user,
    .sidebar__link {
        grid-template-columns: max-content;
    }

    .sidebar__user {
        padding: 0;
    }

    .sidebar__link {
        padding-inline: 2rem;
    }

    .sidebar__title {
        padding-inline: .5rem;
        margin-inline: auto;
    }
}

/* For large devices */
@media screen and (min-width: 1150px) {
    .header {
        margin: 1rem;
        padding-left: 340px;
        transition: padding .4s;
    }

    .header__container {
        height: calc(var(--header-height) + 2rem);
        padding-inline: 2rem;
    }

    .header__logo {
        order: 1;
    }

    .sidebar {
        left: 0;
        width: 316px;
        margin: 1rem;
    }

    .sidebar__info,
    .sidebar__link span {
        transition: opacity .4s;
    }

    .sidebar__user,
    .sidebar__title {
        transition: padding .4s;
    }

    /* Reduce sidebar */
    .show-sidebar {
        width: 90px;
    }

    .show-sidebar .sidebar__user {
        padding-left: 1.25rem;
    }

    .show-sidebar .sidebar__title {
        padding-left: 0;
        margin-inline: auto;
    }

    .show-sidebar .sidebar__info,
    .show-sidebar .sidebar__link span {
        opacity: 0;
    }

    .main {
        padding-left: 340px;
        padding-top: 8rem;
        transition: padding .4s;
    }

    /* Add padding left */
    .left-pd {
        padding-left: 114px;
    }
}

/*  */

.about{
    width: 100%;
    margin-top: 10vh;
}
.aboutrap{
    width: 80%;
    margin: auto;
}
.text{
    text-align: center;
    padding: 2rem;
    /* gap: 100px; */
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}



  
  
 
  
  .brand-name {
    font-weight: bold;
    color: #0073e6;
  }
  
  /* Animation styles */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
  }
  
  .delay-1 {
    animation-delay: 1s;
  }
  
  .delay-2 {
    animation-delay: 1.5s;
  }
  
  .delay-3 {
    animation-delay: 2s;
  }

  .delay-4 {
    animation-delay: .5s;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

/* temp */
.temp-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.temp-slider {
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
}

.temp-slider-item {
    display: inline-block;
    position: relative;
    width: 300px;
    margin-right: 15px;
}

.temp-slider-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.temp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.temp-slider-item:hover .temp-overlay {
    opacity: 1;
}

.temp-overlay button {
    background-color: #38b2ac;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.temp-heading {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 34px;
    background-color: rgb(175, 123, 10);
    /* background: linear-gradient(45deg, #36e2d9, #4B0082, #003366); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.temp-slider-container {
    position: relative;
}

.temp-slider-container .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: black;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

.temp-prev {
    left: 10px;
}

.temp-next {
    right: 10px;
}

/* Ensure the buttons are larger on smaller screens */
@media (max-width: 768px) {
    .temp-prev, .temp-next {
        padding: 15px;
    }
}



.our-partner-slider {
    background-color: #fff;
    padding: 6.125rem 3.125rem;
}




/* 11 footer */
.footer_wrapper {
    background-color: #000;
    padding-top: 10vh;
    padding-bottom: 5vh;
}

.footer_wrapper h5 {
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a{
    color: #caa169;
    text-decoration: none;
    
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: #e4e4e4;
    font-size: .875rem;
    padding-left:1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color: #caa169;
}

.footer_wrapper .social-network a {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height:2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid #e4e4e4;
    color: #e4e4e4;
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: #caa169;;
    border-color: #caa169;;
    color:#fff;
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #caa169;;
}

.footer_wrapper .copyright-section {
    background-color: #021832;
    padding: 1.25rem 0 .3125rem;
    text-align: center;
}


.footer_wrapper .copyright-section a {
    color: #caa169;
}








