/*------------------------------------------------------------------
  Project: Resume
  Author: The_Krishna
  Last change: 13/12/2024
  Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Light Mode Colors CSS
3.Page Loader CSS
4.Whole Page Aniamtion CSS
5.Header CSS
6.Side Menu CSS
7.Section One CSS
8.Section Two CSS
9.Section Three CSS
10.Section Four CSS
11.Section Five CSS
12.Section Six CSS
13.coding-skill-section CSS
14.design-skill-section CSS
15.Award-section CSS
16.Section Seven CSS
17.Section Eight CSS
18.Section Nine CSS
19.Footer Section CSS
20.Bottom To Top Button
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter",  sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
ol,
ul {
    padding-left: 0rem !important;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul li {
    list-style: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: var(--main-text);
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
body {
    background: var(--primary-color);
}
.container{
    position: relative;
}
/*-----------------------[ 2.Light Mode Colors CSS ]------------------------*/
:root {
    --primary-color: #EDF0F4;
    --side-menu-color: #134334;
    --section-background: #FFFFFF;
    --card-background: #FFF;
    --icons-background: #1E1F21;
    --main-text: #000000;
    --sub-text: #dcdcdc;
    --btn-border: #000000;
    --side-menu-web: #838485;
    --icons-filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7486%) hue-rotate(54deg) brightness(99%) contrast(103%);
    --icons-hover: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(221deg) brightness(101%) contrast(101%);
}
.dark-mode {
    --primary-color: #a1a1a1;
    --side-menu-color: #134972;
    --section-background: #134972;
    --icons-background: #ff9900;
    --main-text: #ffffff;
    --sub-text: #e4e4e4;
    --side-menu-web: #FFF;
    --btn-border: #FFFFFF;
    --icons-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(221deg) brightness(101%) contrast(101%);
    --icons-hover: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(6%) hue-rotate(210deg) brightness(97%) contrast(101%);
}
/*-----------------------[ 3.Page Loader CSS ]------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden;
    z-index: 99999;
}
.preloader svg {
    position: absolute;
    top: 0;
    height: 110vh;
    width: 100vw;
    fill: var(--primary-color);
}
.preloader .loading {
    font-size: 30px;
    font-weight: 400;
    color: var(--sub-text);
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 99;
}
.loading span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
}
.loading span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #fff;
    opacity: 0;
    transform: rotateY(-90deg);
    animation: loading 5s infinite;
}
.loading span:nth-child(2)::after {
    animation-delay: 0.2s;
}
.loading span:nth-child(3)::after {
    animation-delay: 0.4s;
}
.loading span:nth-child(4)::after {
    animation-delay: 0.6s;
}
.loading span:nth-child(5)::after {
    animation-delay: 0.7s;
}
.loading span:nth-child(6)::after {
    animation-delay: 1s;
}
.loading span:nth-child(7)::after {
    animation-delay: 1.2s;
}
@keyframes loading {
    0%,
    75%,
    100% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    25%,
    50% {
        transform: rotateY(0);
        opacity: 1;
    }
}
/*-----------------------[ 4.Whole Page Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 1.5s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*-----------------------[ 5.Header CSS ]------------------------*/
header {
    border-radius: 15px;
    background: var(--section-background);
    padding: 8px 18px;
    margin: 30px 0 30px auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    transition: background-color 0.3s ease-in-out;
    border: 7px solid transparent;
}
/* New Menu */
body.dark-mode header.scrolled {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.30) 100%);
    backdrop-filter: blur(4px);
    padding-left: 27px;
    
}
header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.357);
}
li.menu-btn.active a {
    color: var(--main-text);
}
.side-menu-arya {
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 48px;
    padding-top: 104px;
}
.web-arya {
    color: var(--side-menu-web);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 30px;
}
.Hire-Me-side-menu {
    width: 100%;
}
.Hire-Me-side-menu a {
    justify-content: center;
    color: #FFF;
    border: 2px solid #FFF;
}
body.dark-mode .hireMe-svg-side {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7500%) hue-rotate(189deg) brightness(103%) contrast(104%) !important;
}
.hireMe-svg-side {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(5%) hue-rotate(269deg) brightness(101%) contrast(104%) !important;
}
.portfolio-girl-menu-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -120px;
}
.portfolio-girl-menu-main img {
    border-radius: 50%;
}
#mainHeader {
    position: sticky;
    top: -1px;
    z-index: 1000;
}
#menu-list-header {
    display: flex;
    gap: 60px;
}
#menu-list-header.side-menu-ul li a {
    padding: 12px 9.8px;
}
#menu-list-header.side-menu-ul li a.active {
    color: var(--main-text);
    border-radius: 10px;
    background-color: transparent;
}
.side-menu-two-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-menu-two-logo img {
    margin-top: -125px;
}
/* New Menu End */
.main-header-logo {
    display: none;
}
.menu-toggle-button {
    display: none;
}
.side-menu::-webkit-scrollbar {
    display: none;
}
.logo {
    filter: var(--icons-filter);
}
.aryaBtn img {
    filter: var(--icons-filter);
}
.aryaBtn {
    color: var(--btn-border);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 20px;
    border-top: 2px solid var(--btn-border);
    border-right: 4px solid var(--btn-border);
    border-bottom: 4px solid var(--btn-border);
    border-left: 2px solid var(--btn-border);
    padding: 12px 24px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}
.aryaBtn:hover {
    background: var(--main-text);
    color: var(--section-background);
    border-radius: 0;
}
.aryaBtn:hover img {
    filter: var(--icons-hover);
}
.aryaBtn-toggle-main {
    display: flex;
    align-items: center;
    gap: 10px;
}
/*-----------------------[ 6.Side Menu CSS ]------------------------*/
.side-menu-main {
    position: sticky;
    top: 30px;
}
.list-menu {
    background: var(--side-menu-color);
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.side-menu-ul li a.active {
    background: #FFF;
    border-radius: 10px;
    color: #000;
}
.side-menu-ul li a.active img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(5%) hue-rotate(214deg) brightness(98%) contrast(102%);
}
.side-menu-ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--3, #838485);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 15px;
}
.phone-text {
    color: var(--3, #838485);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.phone-num {
    color: var(--1, #FFF);
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid transparent;
}
.media-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.media-icons {
    width: 36px;
    height: 36px;
    background: var(--icons-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.media-icons:hover {
    border-radius: 10px;
    background: #FFF;
    transition: all 0.3s ease-in-out;
}
.media-icons:hover img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(1367%) hue-rotate(161deg) brightness(98%) contrast(97%);
}
/*-----------------------[ 7.Section One CSS ]------------------------*/
.section-one,
.section-two,
.section-three,
.section-four,
.section-five,
.section-six,
.section-Seven,
.section-eight,
.section-nine {
    background: var(--section-background);
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 30px;
}
.hi-there {
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: 100;
    text-align: center;
}
.hi-there span {
    transform-origin: 70% 70%;
    display: inline-block;
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
}
@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg);
    }
    10% {
        transform: rotate(14.0deg);
    }
    20% {
        transform: rotate(-8.0deg);
    }
    30% {
        transform: rotate(14.0deg);
    }
    40% {
        transform: rotate(-4.0deg);
    }
    50% {
        transform: rotate(10.0deg);
    }
    60% {
        transform: rotate(0.0deg);
    }
    100% {
        transform: rotate(0.0deg);
    }
}
.creative {
    font-size: 50px;
    font-family: "Sora", sans-serif;
    font-weight: 500;
    letter-spacing: -2px;
    text-align: center;
    line-height: 64px;
    padding-bottom: 10px;

    background: linear-gradient(to bottom, rgb(255, 255, 255), #134972);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.moto {
    font-size: 45px;
    font-family: "Sora", sans-serif;
    font-weight: 500;
    letter-spacing: -4px;
    text-align: center;
    line-height: 45px;
    padding-bottom: 20px;
    color: white;
    background: linear-gradient(to bottom, rgb(255, 255, 255), #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.visionary {
    color: var(--sub-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.portfolio-girl-img-col {
    position: relative;
}
.portfolio-girl-img {
    width: 250px;
    height: 250px;
}
.girl-name {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.30) 100%);
    backdrop-filter: blur(3px);
    position: absolute;
    left: -10px;
    bottom: 30px;
    padding: 10px 24px;
    height: 44px;
}
.ityped-cursor {
    display: none;
}
.girl-name p {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}
.download-btn {
    display: flex;
    align-items: start;
    margin-top: 30px;
}
/*-----------------------[ 8.Section Two CSS ]------------------------*/
.about-col {
    border-right: 2px solid var(--primary-color);
}
.arya-stack-about span {
    color: var(--main-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.arya-stack-about {
    color: var(--main-text);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    max-width: 160px;
}
.WebExperts {
    color: var(--sub-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 20px;
}
.yer-exp-box-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.yer-exp-box {
    padding: 07px 18px;
    border-radius: 10px;
    border: 2px dotted #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 440px;
}
.yer-exp-box:hover {
    border: 2px dotted var(--main-text);
    border-radius: 0;
}
.yer-exp-box .degit {
    color: #ff9900;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
}
.yer-exp-box div p {
    color: var(--main-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.self-taught {
    color: var(--sub-text);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-bottom: 20px;
}
.self-taught span {
    color: var(--main-text);
    font-weight: 500;
}
.self-taught-col {
    padding-left: 60px;
}
.about-detail-main {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.about-detail {
    color: var(--sub-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 160px;
    width: 100%;
}
.about-detail-info {
    color: var(--main-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    width: 340px;
}
.about-detail-info::before {
    content: ":";
    color: var(--sub-text);
    margin-right: 30px;
}
.about-deatils-head {
    margin-top: 20px;
}
.brand span {
    font-weight: 400;
}

/*-----------------------[ 10.Section Four CSS ]------------------------*/
.tab-btn-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 40px;
    text-align: center;
    justify-content: center;
}
.tab-btn-main a:last-child {
    border: none;
}
.tab-btn {
    border-radius: 20px;
    border: 2px dashed #838485;
    color: var(--sub-text);
}
.tabContainer {
    overflow: hidden;
    position: relative;
    text-align: center;
}
.Tabcondent {
    position: absolute;
    width: 50%;
    height: 50%;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.tab-btn.tab-active {
    border-right: 4px solid var(--btn-border) !important;
    border-bottom: 4px solid var(--btn-border) !important;
    border-left: 2px solid var(--btn-border) !important;
    border-top: 2px solid var(--btn-border) !important;
    color: var(--main-text) !important;
}
.tab-btn:hover {
    color: var(--main-text) !important;
    background: transparent;
    border: 2px dashed var(--main-text);
}
.Tabcondent.tab-active {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0px;
    transition: all ease-in-out 0.6s;
    margin: 0 auto;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e1f21ab;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.gallery-item-sub:hover .overlay {
    opacity: 1;
}
.vimeo-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(181deg) brightness(103%) contrast(103%);
}
.overlay-text {
    color: #FFF;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    justify-content: center;
}
.gallery-item {
    margin-bottom: 30px;
    cursor: pointer;
}
.gallery-item-sub {
    position: relative;
}
.gallery-item-sub img {
    border-radius: 20px;
    max-width: 100%;
}
.gallery-item3 {
    margin-top: -60px;
}
.gallery-info h3 {
    color: var(--main-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 10px;
}
.gallery-info p {
    color: var(--sub-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.content-img {
    max-width: 100%;
    border-radius: 30px;
}
.modal {
    --bs-modal-width: 700px;
}

.modal-content {
    background: linear-gradient(135deg, #1b3154, #8996be);
}

.plumbing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.plumbing-grid img {
    width: 100%;
    border-radius: 20px;
}
.btn-close:focus {
    box-shadow: none;
}
.spce-in-Content {
    color: #838485;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 5px;
}
.spce-in-text {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 20px;
}
.amrito {
    color: #ffe100;
    font-size: 28px;
    margin-bottom: -30px;
    font-weight: 550px;
    margin-top: 20px;
}
.corporate_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.cuberto_main {
    display: flex;
    gap: 10px;
}
.created_by {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.cuberto {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.ipsum {
    color: var(--3, #838485);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.gallery-main-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}
.text-gallery {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
}
.gallery-main-card img {
    max-width: 100%;
}
/*-----------------------[ 11.Section Five CSS ]------------------------*/
.testimonial-box {
    border-radius: 10px;
    border: 2px dotted #ffffff;
    padding: 20px;
    display: flex !important;
    gap: 20px;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    margin-left: 5px;
    margin-right: 5px;
}
.testimonial-box:hover {
    border-radius: 0;
    border: 2px dotted var(--main-text);
}
.client-img {
    border-radius: 15px;
    width: 120px;
    height: auto;
    object-fit: cover;
}
.am-text-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}
.am-text-main p {
    color: var(--main-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.am-text-main img {
    filter: var(--icons-filter);
}
.Neque {
    color: var(--sub-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 72px;
}
.client-name {
    color: var(--main-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.client-name span {
    color: var(--sub-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
ul.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
ul.slick-dots button {
    width: 10px;
    height: 10px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    margin: 0 3px;
    outline: none;
    background: var(--primary-color);
}
.slick-active button {
    width: 30px !important;
    height: 10px;
    border-radius: 5px !important;
    background: var(--main-text) !important;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 30px 0;
    font-family: "Sora", sans-serif;;
}
.line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--main-text);
}
.title-box {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--main-text);
    border-radius: 22px;
    color: var(--main-text);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.logos-slide {
    animation: 30s slide infinite linear;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee__content {
    display: flex;
    align-items: center;
}
.marquee-img-main {
    padding: 0 20px;
    cursor: pointer;
}
.marquee-img-main img:hover {
    filter: var(--icons-filter);
}

.brand-logos {
    width: 80px;
    height: 80px;
}
/*-----------------------[ 12.Section Six CSS ]------------------------*/
.section-heading-text {
    color: var(--main-text);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
}
.education-heading-text {
    color: var(--1, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 30px;
    position: relative;
}
.education::before {
    content: "";
    border-left: 2px solid var(--main-text);
    position: absolute;
    top: 0;
    left: 11px;
    bottom: 0;
    z-index: -1;
}
.education {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}
.small_yellow_border {
    border: 2px solid var(--main-text);
    border-radius: 100%;
    padding: 5px;
    background-color: var(--section-background);
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--main-text);
}
.bachelor {
    color: var(--main-text);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 10px;
    transition: all 0.3s;
}
.university {
    padding-bottom: 15px;
    font-size: 18px !important;
}
.cursus {
    color: var(--sub-text);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    transition: all 0.3s;
}
.education:hover .cursus {
    color: var(--main-text);
}
.small_yellow_border_main {
    padding-left: 20px;
}
/*-----------------------[ 13.coding-skill-section CSS ]------------------------*/
.coding-skill-section {
    padding: 60px 0;
}
#progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 30px;
    gap: 80px;
}
.progress-item {
    display: flex;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    font-size: 0;
    animation: .4s ease-out reverse;
    position: relative;
}
.progress-item::after {
    content: attr(data-value)'%';
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    margin: 8px;
    border-radius: 50%;
    background: var(--section-background);
    color: var(--main-text);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}
.skill-label {
    position: absolute;
    bottom: -35px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--main-text);
    text-align: center;
    width: 100%;
}
/*-----------------------[ 14.design-skill-section CSS ]------------------------*/
.design-skill-sub-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 30px 0 0 0;
    justify-content: space-between;
}
.design-skills-img-main {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 100px;
}

.design-skills-img-main img {
    width: 75px;
    height: 72px;
}
.pr {
    border: 2px solid var(--8, #ffffff);
    background: rgba(255, 255, 255, 0.1);
}
.adobe-ae-text p:nth-of-type(2) {
    color: var(--1, #b18bff) !important;
}
.ps {
    border: 2px solid #ffffff;
    background: rgba(49, 168, 255, 0.10);
}
.photoshop-text p:nth-of-type(2) {
    color: var(--1, #31A8FF) !important;
}
.adobe-pr {
    border: 2px solid #ffffff;
    background: rgba(255, 97, 246, 0.10);
}
.adobe-pr-text p:nth-of-type(2) {
    color: var(--1, #b18bff) !important;
}
.ai {
    border: 2px solid #ffffff;
    background: rgba(255, 213, 63, 0.1);
}
.dv {
    border: 2px solid #eeeeee;
    background: rgba(83, 82, 79, 0.223);
}
.wf {
    border: 2px solid #ffffff;
    background: rgba(37, 99, 109, 0.248);
}
.fig {
    border: 2px solid #ffffff;
    background: rgba(109, 37, 37, 0.248);
}
.can {
    border: 2px solid #ffffff;
    background: rgba(2, 2, 2, 0.238);
}
.ai-text p:nth-of-type(2) {
    color: var(--1, #FFDB59) !important;
}
.ait {
    border: 2px solid #ffffff;
    background: rgb(255, 255, 255);
}
.skill-counter-main p:first-of-type {
    color: var(--main-text);
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.skill-counter-main p:nth-of-type(2) {
    color: var(--8, #00CC97);
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

/*-----------------------[ 18.Section Nine CSS ]------------------------*/
.contact-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}
.contact-sec-box {
    padding: 15px 25px;
    border: 2px dotted #ffffff;
    border-radius: 10px;
}
.contact-sec-box:hover {
    border: 2px dotted var(--main-text);
    border-radius: 0;
}
.call-us-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.call-us-contact-img {
    filter: var(--icons-filter);
}
.day-time {
    color: var(--3, #838485);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 0;
}
.call-num {
    color: var(--main-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.map-iframe {
    width: 100%;
    height: 400px;
    border-radius: 30px;
}
.got {
    margin-top: 60px;
}
.labal-input {
    position: relative;
    width: 100%;
}
.input-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 40px;
    width: 100%;
}
.input-main input {
    background: transparent;
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
    height: 64px;
    outline: none;
    padding: 10px 20px;
    color: var(--main-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.input-main input:focus {
    border: 2px dashed var(--main-text);
    border-radius: 0;
}
.labal {
    color: var(--main-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 2px 10px;
    border-radius: 10px;
    background: var(--primary-color);
    position: absolute;
    top: -11px;
    left: 20px;
}
/*-----------------------[ 19.Footer Section CSS ]------------------------*/
footer {
    border-radius: 15px;
    background: var(--section-background);
    padding: 18px 30px;
    margin-bottom: 30px;
}
.rights-reserved {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--3, #838485);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.rights-reserved a:hover {
    color: var(--main-text);
}
.home-media-icon-main-head {
    display: flex;
    align-items: center;
    gap: 30px;
}

.category-buttons {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-category {
    background: #ff9900;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-category:hover {
    background: #ffffff;
    transform: scale(1.05);
  }
  
  .btn-category.active {
    background: #ffffff;
    color: #000000;
  }
  
  /* Section Header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
  }
  
  .section-header h3 {
    color: #fff;
    text-transform: uppercase;
    margin-left: 13px;
    margin-bottom: -30px;
    font-family: "Sora", sans-serif;;
  }
  
  .see-all-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-family: "Sora", sans-serif;;
    transition: color 0.3s ease;
    text-transform: uppercase;
    margin-right: 13px;
    margin-bottom: -30px;
    padding: 2px 10px;
    padding-top: 3px;
    border: 2px solid #ffffff;
    border-radius: 20px;
  }
  
  .see-all-btn:hover {
    color: #000000;
    background-color: #ffffff;
  }
  
  /* Video/Image Grid */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  /* Media Card */
  .video-card {
    background: #11111160;
    border-radius: 8px;
    border-style: solid;
    border-color: white;
    border-width: 2px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .video-card.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .video-card video,
  .video-card img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
  }
  
  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* Fade Effect */
  .fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
  }

   /* Video Card Default State */
.video-card {
    background: #1b1b1b; /* Dark background */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
  }
  
  /* Skeleton Placeholder (Before Video loads) */
  .skeleton {
    background: linear-gradient(90deg, #1b1b1b 25%, #2c2c2c 50%, #1b1b1b 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    width: 100%;
    height: 150px; /* Fixed height until video loads */
  }
  
  /* Animation Keyframe */
  @keyframes loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
  /* After Video Loads (Fade In) */
  .video-card video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease-in;
  }
  
  .video-card video.loaded {
    opacity: 1;
  }

  /* Common button styles */
.floating-btn {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    background: #ff9900;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  /* WhatsApp button specific */
  .whatsapp {
    left: 20px;
    background-color: #0ea847;
  }
  
  .whatsapp img {
    width: 34px;
    height: 34px;
  }
  
  /* Scroll to Top button specific */
  .scroll-top {
    right: 20px;
    font-size: 30px;
    background-color:#ff9900; 
    color: #000;/* Royal Blue */
  }
  
  /* Show state */
  .floating-btn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  
  /* Hover effects */
  .floating-btn:hover {
    transform: scale(1.15);
  }
  
  .whatsapp:hover {
    background-color: #1ebe57;
  }
  
  /* Responsive Improvements */
  @media (max-width: 768px) {
    .floating-btn {
      width: 50px;
      height: 50px;
      bottom: 15px;
    }
    
    .whatsapp img {
      width: 34px;
      height: 34px;
    }
  
    .scroll-top {
      font-size: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .floating-btn {
      width: 45px;
      height: 45px;
      bottom: 10px;
    }
  
    .whatsapp img {
      width: 32px;
      height: 32x;
    }
  
    .scroll-top {
      font-size: 30px;
    }
  }
  
  