/*--------------------------------------------------------------
# Font Faces: Rubik
--------------------------------------------------------------*/
@font-face {
  font-family: 'Rubik';
  src: url('/frontend/assets/fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/frontend/assets/fonts/Rubik-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/frontend/assets/fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/frontend/assets/fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/frontend/assets/fonts/Rubik-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/*--------------------------------------------------------------
# Base Font Setup
--------------------------------------------------------------*/
body, h1, h2, h3, h4, h5, h6, p, a, span, div, input, textarea, button, label, li {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 400;
  letter-spacing: normal;
}


/* ==== ==== ==== CSS Variables ==== ==== ==== */
:root {
  --hue: 192;
  --sat: 78%;
  --light: 47%;

  --primary-color: hsl(var(--hue), var(--sat), var(--light));
  --white-color: hsl(var(--hue) 45% 98%);
  --dark-color: hsl(var(--hue) 26% 12%);
  --body-color: hsl(240, 26%, 12%);
  --hover-color: hsl(var(--hue) var(--sat) calc(var(--light) - 7%));

  --bottom-nav-bg: hsl(var(--hue) 32% 25% / .65);
  --header-glassy: hsl(var(--white-color) 32% 25% / .65);
  --card-bg: linear-gradient(120deg, hsl(var(--hue) 54% 74% / .15), hsl(var(--hue) 54% 74% / .05));
  --modal-backdrop-bg: hsl(var(--hue) 54% 74% / .1);
  --footer-bg: linear-gradient(360deg, hsl(var(--hue) 54% 74% / .15), hsl(var(--hue) 54% 74% / .1));

  --scrollbar-color: hsl(var(--hue) 25% 20%);
  --scrollbar-thumb: hsl(var(--hue) var(--sat) var(--light));
  --scrollbar-thumb-hover: hsl(var(--hue) var(--sat) calc(var(--light) - 7%));

  --body-font-family: 'SST', sans-serif;

  --h1-font-size: 2.85rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.97rem;
  --h4-font-size: 1.43rem;
  --h5-font-size: 1.13rem;

  --xlarge-font-size: 1.48rem;
  --large-font-size: 1.23rem;
  --medium-font-size: 1.18rem;
  --base-font-size: 1.1rem;
  --small-font-size: 1.07rem;
  --tiny-font-size: .98rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  --z-minus: -1;
  --z-base: 0;
  --z-low: 1;
  --z-high: 10;
  --z-content: 100;
  --z-tooltip: 1000;
  --z-fixed: 1100;
  --z-overlay: 1110;
  --z-modal: 1990;
  --z-max: 9999;
}

/* ==== ==== ==== Reset / Normalize ==== ==== ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
}

ul, li {
  list-style: none;
}

a {
  color: var(--white-color);
  text-decoration: none;
  cursor: pointer;
}

/* ==== ==== ==== Base Styles ==== ==== ==== */
html {
  scroll-behavior: smooth;
}

body {
  background: #05071C;
  transition: .3s;
  overflow-x: hidden;
  background-image: url('../images/home-slider_2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ==== ==== ==== RTL Text Utility ==== ==== ==== */
.text-rtl {
  direction: rtl;
  text-align: right;
}

.text-ltr {
  direction: ltr;
  text-align: left;
}

/* ==== ==== ==== Reusable Styles ==== ==== ==== */
.mm-section{
   position: relative;
   overflow: hidden;
}

.mm-container{
   max-width: 1170px;
   margin-left: auto;
   margin-right: auto;
}

.mm-sub-container{
   padding-top: 7em;
   padding-bottom: 5em;
}

.mm-wrapper{
   position: relative;
   width: 100%;
   height: 100%;
}

.section-title{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction:column;
   margin-bottom: 95px;
}

.section-title h3{
   color: var(--primary-color);
   font-size: var(--h3-font-size);
   font-weight: var(--font-bold);
   margin-bottom: 10px;
   white-space: nowrap;
}

.section-title p{
   color: var(--white-color);
   font-size: var(--base-font-size);
   font-weight: var(--font-medium);
}

.section-content{
   display:flex;
   justify-content: center;
   align-items: center;
   column-gap: 75px;
}

.icon-logo {
    width: 200px;
    transition: transform 0.3s ease;
    /* filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(21%) hue-rotate(71deg) brightness(104%) contrast(100%); */
    /* filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); */
 }

 .icon-logo:hover {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(72%) sepia(23%) saturate(7187%) hue-rotate(148deg) brightness(91%) contrast(82%);
 }

.icon {
   width: 37px;
   height: 37px;
   transition: transform 0.3s ease, filter 0.3s ease;
   filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(21%) hue-rotate(71deg) brightness(104%) contrast(100%);
}

.icon:hover {
   transform: scale(1.2);
   filter: brightness(0) saturate(100%) invert(72%) sepia(23%) saturate(7187%) hue-rotate(148deg) brightness(91%) contrast(82%);
}


.language-switcher .lang-btn {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.language-switcher .lang-btn.active {
  color: #18AFD3;
}

.language-switcher .lang-btn:hover {
  color: #18AFD3;
}

.language-switcher .lang-divider {
  color: #ffffff;
  font-weight: bold;
  padding: 0 5px;
}


/* ==== ==== ==== Components ==== ==== ==== */

/* ==== ==== ==== Page scroll bar ==== ==== ==== */
::-webkit-scrollbar{
   width: 10px;
   background: var(--white-color);
}

::-webkit-scrollbar-thumb{
   background: #05071C;
   border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover{
   background: var(--primary-color);
   /* border-radius: 25px; */
}

/* ==== ==== ==== Customized cursor ==== ==== ==== */

.cursor {
    z-index: var(--z-max);
    position: fixed;
    pointer-events: none;
 }

 .cursor-dot {
    position: absolute;
    background: var(--primary-color);
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    transition-property: top, left, width, height;
    transition-duration: .03s, .03s, .3s, .3s;
 }

 .cursor-dot.large {
    background: none;
    border: 2px solid var(--white-color);
    width: 55px;
    height: 55px;
    transition-property: top, left, width, height;
    transition-duration: .03s, .03s, .3s, .3s;
    cursor: none;
 }

 .cursor-circle {
    position: absolute;
    border: 2px solid var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    opacity: .8;
    transform: translate(-50%, -50%);
    transition-property: top, left;
    transition-duration: .09s, .09s;
    animation: rotateCursor 5s linear infinite;
 }

 @keyframes rotateRight {
    0% {
       transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
       transform: translate(-50%, -50%) rotate(360deg);
    }
 }

 @keyframes rotateLeft {
    0% {
       transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
       transform: translate(-50%, -50%) rotate(-360deg);
    }
 }


/* ==== ==== ==== To top button with scroll indicator bar ==== ==== ==== */
.to-top-btn{
  z-index: var(--z-fixed);
  position: fixed;
  background: var(--white-color);
  height: 100px;
  width: 2px;
  bottom: 25px;
  right: -30px;
  cursor: pointer;
  transition: all .3s ease;
}

.to-top-btn.active{
   right: 30px;
}
.to-top-btn a{
  color: var(--white-color);
  transition: .3s;
}

.to-top-btn a:hover{
   color: var(--primary-color);
}

.to-top-btn a span{
   position: absolute;
   left: 0;
   bottom: 160px;
   transform: rotateZ(90deg);
   transform-origin: left;
   font-size: .85rem;
   text-transform: uppercase;
   white-space: nowrap;
}

.to-top-btn .scroll-indicator-bar{
   position: absolute;
   background: var(--primary-color);
   width: 2px;
   height: auto;
   opacity: 1;
}

/* ==== ==== ==== Buttons ==== ==== ==== */
.mm-main-btn{
   width: fit-content;
   padding: 10px 30px;
   border-radius:8px;
   cursor: pointer;
   transition: .3s;
}

.mm-main-btn a{
   color: var(--white-color);
   align-items: center;
   font-size: var(--small-font-size);
   font-weight: 500;
   transition: .3s;
}

.mm-main-btn:hover a{
   color: var(--white-color);
}

.border-btn {
color: var(--primary-color);
 border :2px solid var(--white-color);
 border-radius: 8px ;
}

.border-btn:hover {
   color: var(--white-color);
   background: var(--primary-color);
   border :2px solid var(--primary-color);
}

.fill-btn{
   background: var(--primary-color);
   border: 2px solid var(--primary-color);
}

.fill-btn a{
  color: var(--white-color);
}

.fill-btn:hover a{
   color: var(--primary-color);
}

.fill-btn:hover{
   background: var(--white-color);
   border: 2px solid var(--white-color);
}

/* ==== ==== ==== Header ==== ==== ==== */
.mm-header{
   z-index: var(--z-fixed);
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   padding: 30px 0;
   transition: .3s ease;
}

.mm-header.shrink {
   /* background-color: var(--body-color); */
   background-color: var(--footer-bg);
   backdrop-filter: blur(10px);
   padding: 25px 0;
}

.mm-header .inner{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.header-btns{
   display: flex;
   justify-content:center;
   align-items:center;
   column-gap: 25px;
}

.lets-talk-icon{
   /* color: var(--color-01); */
   font-size: 1.8rem;
   cursor: pointer;
   transition: .3s;
   display: none;
}

/* ==== ==== ==== Dark/Light theme buttons ==== ==== ==== */
.theme-btn{
   position: relative;
   display: flex;
   justify-content: end;
   align-items: center;
   width: 27px;
   cursor: pointer;
}

.theme-btn i{
   position: absolute;
   color: var(--white-color);
   font-size: 1.7rem;
   cursor: pointer;
   transition: .3s;
}

.theme-btn:hover i {
   color:var(--primary-color);
   transform: rotate(-15deg);
}


.theme-btn.active-sun-icon .moon-icon,
.theme-btn .sun-icon{
   opacity: 1;
   transition: .3s;
}

.theme-btn.active-sun-icon .sun-icon,
.theme-btn .moon-icon{
   opacity: 0;
   transition: .3s;
}

 /* ==== ==== ==== Bottom navigation menu ==== ==== ==== */
.bottom-nav-container{
   position: relative;
}

.bottom-nav{
   z-index: var(--z-fixed);
   position: fixed;
   left: 50%;
   transform: translateX(-50%);
   /* bottom: 50px; */
   bottom: -40px;
   opacity: 0;
   transition: .5s ease, .3s ease;
   transition-property: bottom, opacity;
}

.bottom-nav.active{
   bottom: 40px;
   opacity: 1;
   transition: .5s ease, .3s ease;
   transition-property: bottom, opacity;
}

.bottom-nav-inner{
   position: relative;
}

.bottom-nav .menu{
   background: var(--bottom-nav-bg);
   /* background: #fff; */
   backdrop-filter: blur(10px);
   /* padding: 14px 24px; */
   padding: 12px 22px;
   display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 20px;
   border-bottom: 1px solid var(--primary-color);
   border-left: 1px solid var(--primary-color);
   /* border-radius: 8px; */
   border-radius: 8px;
   /* display: none; */
}

.bottom-nav .menu li a{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.bottom-nav .menu li a i {
   color:var(--white-color);
   font-size: 1.4rem;
   padding: 10px;
   border-radius: 8px;
   /* border-radius: 50%; */
   transition: .3s;
}


.bottom-nav .menu .current i{
   color: var(--dark-color);
   background: var(--primary-color);
}

.bottom-nav .menu li a span{
   z-index: var(--z-tooltip);
   position: absolute;
   color:var(--white-color);
   background: var(--primary-color);
   font-size: var(--tiny-font-size);
   font-weight: var(--font-medium);
   padding: 3px 10px;
   transform:  translateY(-53px);
   border-radius: 5px;
   pointer-events: none;
   opacity: 0;
}

.bottom-nav li:hover a span{
   opacity: 1;
}

.bottom-nav .menu li a span:before {
   content: "";
   z-index: var(--z-minus);
   position: absolute;
   background: var(--primary-color);
   width: 10px;
   height:10px;
   left:50%;
   bottom:-8px;
   transform: rotate(45deg) translateX(-50%);
}

.bottom-nav .menu-hide-btn{
   z-index: var(--z-fixed);
   position: absolute;
   top:-16px;
   right: -8px;
   color: var(--primary-color);
   font-size: 1.52rem;
   background:var(--white-color);
   padding: 2px;
   border-radius: 5px;
   /* border-radius: 50%; */
   cursor:pointer;
   transition: .3s ease;
   pointer-events: none;
   opacity: 0;
}

.menu-hide-btn.active{
   pointer-events: all;
   opacity: 1;
}

.bottom-nav .menu-hide-btn:hover{
   color: var(--white-color);
   background: var(--primary-color);
}

.menu-show-btn{
   z-index: var(--z-fixed);
   position: fixed;
   background: var(--bottom-nav-bg);
   backdrop-filter: blur(10px);
   width: 85px;
   height: 50px;
   border-bottom: 1px solid var(--primary-color) ;
   border-left: 1px solid var(--primary-color) ;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   row-gap: 5px;
   translate:-50% 0;
   left: 50%;
   /* bottom: 50px; */
   bottom:-75px;
   opacity: 0;
   border-radius: 5px;
   cursor:pointer;
   transition: .5s ease, .3s ease;
   transition-property: bottom, opacity;
   overflow: hidden;
   animation: wiggle 2s linear infinite;
   animation-delay: 1s;
}

.menu-show-btn.active{
   bottom: 50px;
   opacity: 1;
   transition: .5s ease, .3s ease;
   transition-property: bottom, opacity;
}

.menu-show-btn:hover{
   background: var(--bottom-nav-bg);

}

@keyframes wiggle {
    0%,
    5% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%,
    100% {
        transform: rotateZ(0);
    }
}

.menu-show-btn .bar-01,
.menu-show-btn .bar-02{
   background: var(--white-color);
   width:40px;
   height: 4px;
   transition: .15s;
}

.menu-show-btn:hover .bar-01,
.menu-show-btn:hover .bar-02{
   background: var(--primary-color);
   width:40px;
   height: 4px;
   transition: .15s;
}

/* ==== ==== ==== Preloader ==== ==== ==== */
.preloader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 9999;
   overflow: hidden;
   background: #05071C;
 }

 .preloader:before {
   content: "";
   position: fixed;
   top: calc(50% - 0px);
   left: calc(50% - 30px);
   border: 6px solid var(--primary-color);
   border-top-color: var(--white-color);
   border-bottom-color: var(--white-color);
   border-radius: 50%;
   width: 60px;
   height: 60px;
   animation: animate-preloader 3s linear infinite;
}

 @keyframes animate-preloader {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }

/* ------------------------
12. ScrollUpButton
-------------------------- */
#scrollUp {
    position: fixed;
    right: 2%;
    top: 100%;
    width: 30px;
    height: 45;
    line-height: 45px;
    font-size: 24px;
    background: var(--bottom-nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-color) ;
    border-left: 1px solid var(--primary-color) ;
    color: var(--white-color);
    text-align: center;
    border-radius: 04px;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
}

#scrollUp:hover {
    color: var(--primary-color);
}

#scrollUp.active {
    top: calc(100% - 110px)
}

#scrollUp i {
    -webkit-animation: mymove 1s ease-in 0s infinite alternate;
    animation: mymove 1s ease-in 0s infinite alternate;
    display: inline-block;
    position: relative;
}

@-webkit-keyframes mymove {
    from {
        top: -5px;
    }

    to {
        top: 5px;
    }
}

@keyframes mymove {
    from {
        top: -5px;
    }

    to {
        top: 5px;
    }
}

 /* ==== ==== ==== Home ==== ==== ==== */
.home-container{
 /* height: 100vh; */
 /* margin-bottom: 0px; */
 margin-top: 140px;
 margin-bottom: 78px;

}

.home-container .mm-wrapper{
   display: flex;
   justify-content: center;
   align-items: center;
}
.avatar-container{
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 25px;
}

.avatar-img{
   position: relative;
   width: 400px;
   height: 400px;
}

.avatar-img img{
   position: relative;
   width: 100%;
   pointer-events: none;
}

.home-social{
    position: absolute;
    left: -5px;
    /* top: 7; */
    row-gap: 3px;
    display: grid;
   justify-items: center;
 }

 .home-social span {
    margin-top: -20px;
    padding: 0;
    color: var(--white-color);
    white-space: nowrap;
    transform: rotateZ(-90deg);
}

 .home-social .mm {
    padding: 0;
    position: absolute;
    margin-top: 40px;
    /* left: 38px; */
    color: var(--white-color);
    /* white-space: nowrap; */
    /* transform-origin: left; */
}


 .home-social .social-icons {
    padding: 0px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}


 .home-social .social-icons li a img {
  
    object-fit: contain;
    filter: brightness(0) invert(1); /* أبيض في الحالة العادية */
    transition: filter 0.3s ease;
}

.home-social .social-icons li a:hover img {
      filter: brightness(0) saturate(100%) invert(72%) sepia(23%) saturate(7187%) hue-rotate(148deg) brightness(91%) contrast(82%);

}


.avatar-container .hire-btn-01{
   display: none;
}

.avatar-info{
   position: relative;
}

.avatar-info .text-content{
   display: flex;
   flex-direction: column;
   row-gap:10px;
}

.avatar-info .hello-text{
   /* margin-top: -160px; */
   color: var(--primary-color);
   font-size: var(--base-font-size);
   font-weight: var(--font-semi-bold);
}

.avatar-info .my-name{
   color: var(--white-color);
   font-size:var(--h1-font-size);
   font-weight: var(--font-bold);
}

.avatar-info .what-i-do{
   color: var(--white-color);
   font-size: var(--base-font-size);
   font-weight: var(--font-semi-bold);
   margin-bottom: 35px;
}

.home-scroll-btn{
   position: absolute;
   right:-5px;
   color:var(--white-color);
   display: grid;
   justify-items: center;
   row-gap: 3px;
   animation: up-down 1.5s linear infinite;
   animation-delay: 1.85s;
}

@keyframes up-down{
   0%{
      transform: translateY(8px);
   }
   50%{
      transform: translateY(-8px);
   }
   100%{
      transform: translateY(8px);
   }
}

.home-scroll-btn:hover{

   color:var(--primary-color);
}

.home-scroll-btn div{
   font-size: var(--tiny-font-size);
   font-weight: var(--font-regular);
     writing-mode: vertical-lr;
   text-orientation: mixed;
   white-space: nowrap;
   transform: rotate(180deg);
   margin-top:7px;
}
.home-scroll-btn i{
   font-size: 1.5rem;
}

/* ==== ==== ==== About Me ==== ==== ==== */
.about-img{
   position: relative;
   width:35%;
   display: flex;
   justify-content: center;
   align-items: center;
   pointer-events: none;
}

.about-img img{
   width:100% ;
   border-radius: 10px;
}

.about-details{
   width: 65%;
   display: flex;
   justify-content: center;
   flex-direction: column;
}

.about-info .iam{
   color:var(--primary-color);
   font-size: var(--h4-font-size);
   font-weight: var(--font-semi-bold);
   margin-bottom:30px;
}

.about-description{
   color:var(--white-color);
   font-size: var(--base-font-size);
   font-weight: var(--font-regular);
   line-height: 25px;
}

.pro-list{
   color:var(--white-color);
   position: relative;
   max-width: 100%;
   display: grid;
   grid-template-columns: repeat(auto-fill,minmax(185px,1fr));
   column-gap: 10px;
   row-gap:12px;
   margin:38px 0;
}

.pro-card{
   background: var(--card-bg);
   display: flex;
   justify-content: center;
   align-items:center;
   column-gap: 10px;
   padding: 35px 25px;
   text-align: left;
   border-radius: 5px;
}

.pro-card span{
   color:var(--primary-color);
   font-size: 2.75rem;
   font-weight:var(--font-bold);
}

.pro-card p{
   color:var(--color-02);
   font-size: var(--tiny-font-size);
   font-weight:var(--font-regular);
   line-height: 20px;
   max-width:100px;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 25px;
  margin-top: 20px; 
}


/* ==== ==== ====  My Resume ==== ==== ==== */
.resume-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 100px;
}

.resume-tabs .tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  color: var(--white-color);
  font-size: var(--medium-font-size);
  font-weight: var(--font-medium);
  padding: 12px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.resume-tabs .tab-btn:hover {
  color: var(--primary-color);
}

.resume-tabs .tab-btn i {
  font-size: var(--xlarge-font-size);
  margin-right: 3px;
}

.resume-tabs .tab-btn.active {
  color: var(--primary-color);
  background: var(--white-color);
  border-radius: 8px;
  padding: 12px 15px;
}

.resume-tabs .tab-btn.active:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

.resume-tab-content {
  position: relative;
  width: 100%;
  justify-content: center;
  margin-bottom: 25px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resume-tab-content.active {
  display: flex;
  opacity: 1;
}

.education .resume-line,
.experience .resume-line {
  background: var(--white-color);
  width: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
}

.resume-items {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 125px;
}

.resume-items .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume-items .item:before {
  content: "";
  position: absolute;
  background: var(--white-color);
  width: 15px;
  height: 15px;
  border-radius: 2px;
  rotate: 45deg;
}

.resume-items .info img {
  width: 45px;
  margin-right: 5px;
}

.resume-items .item .info {
  position: absolute;
  width: 250px;
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.resume-items .item-left .info {
  right: 35px;
}

.resume-items .item-right .info {
  left: 50px;
}

.resume-items .item .info i {
  color: var(--white-color);
  font-size: 2.15rem;
}

.resume-items .item .info h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-semi-bold);
  white-space: break-spaces;
  margin-bottom: 10px;
}

.resume-items .item .info p {
  color: var(--white-color);
  font-size: var(--small-font-size);
  white-space: pre-wrap;
  margin-bottom: 18px;
}

.resume-items .item .info span {
  position: relative;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-medium);
  padding: 3px 12px;
  border-radius: 3px;
}

.education,
.experience {
  transform: translateY(35px);
}



.skill-container {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
  align-items: start;
}

.skill-card {
  position: relative;
  background: var(--card-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 25px;
  border-bottom: 5px solid var(--primary-color);
  border-radius: 10px;
}


.skill-title{
   display: flex;
   align-items: center;
   column-gap: 10px;
   margin-bottom: 50px;
}
.skill-title i{
   font-size: 2.15rem;
   color: var(--white-color);
}


.skill-title span{
   color: var(--primary-color);
   font-size: var(--medium-font-size);
   font-weight: var(--font-semi-bold);
}

.skill-categories{
   display: grid;
   place-items: start;
   grid-template-columns: repeat(2, 1fr);
   column-gap: 65px;
   row-gap: 35px;
   padding: 0 50px;
}

.skill{
  display: flex;
  column-gap: 15px;
}

.skill-info{
   display: flex;
   flex-direction: column;
   row-gap: 5px;
}

.skill i{ color:
   var(--white-color);
   font-size: 1.35rem;
   }

.skill-info h5{
   color: var(--primary-color);
   font-size: var(--h5-font-size);
   font-weight: var(--font-semi-bold);
}

.skill-info span{
   color: var(--white-color);
   font-size: var(--tiny-font-size);
}

.skill-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 50px;
    align-items: start;
 }

 .skill-card {
    position: relative;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 25px;
    border-bottom: 5px solid var(--primary-color);
    border-radius: 10px;
 }

 .skill-title{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 50px;
 }
 .skill-title i{
    font-size: 2.15rem;
    color: var(--white-color);
 }

 .skill-title span{
    color: var(--primary-color);
    font-size: var(--medium-font-size);
    font-weight: var(--font-semi-bold);
 }

 .skill-categories{
    display: grid;
    place-items: start;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 65px;
    row-gap: 35px;
    padding: 0 50px;
 }

 .skill{
   display: flex;
   column-gap: 15px;
 }

 .skill-info{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
 }

 .skill i{ color:
    var(--white-color);
    font-size: 1.35rem;
    }

 .skill-info h5{
    color: var(--primary-color);
    font-size: var(--h5-font-size);
    font-weight: var(--font-semi-bold);
 }

 .skill-info span{
    color: var(--white-color);
    font-size: var(--tiny-font-size);
 }


 

 /* ==== ==== ==== Not Found Page ==== ==== ==== */
.notfound-container {

    margin-top: 50px;
    max-width: 100%;
    display: grid;
    /* grid-template-columns: repeat(1, 1fr); */
    column-gap: 50px;
    row-gap: 50px;
    align-items: start;
 }

 .notfound-card {
    position: relative;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 25px;
    border-bottom: 5px solid var(--primary-color);
    border-radius: 10px;
 }

 .notfound-title{
    display: flex;
    align-items: center;
    text-align: center;
    column-gap: 10px;
    margin-bottom: 50px;
 }
 .skill-title i{
    font-size: 2.15rem;
    color: var(--white-color);
 }

 .notfound-info{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin-top: 30px;
 }

 .notfound-card p{
    text-align: center;
    color: var(--white-color);
    font-size: var(--tiny-font-size);
 }

/* ==== ==== ==== Services ==== ==== ==== */

 .service-container {
    max-width: 100%;
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 55px;
}

.service-card {
    position: relative;
    background: var(--card-bg);
    width: 275px;
    height: 285px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 25px;
    border-bottom: 5px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}

.service-icon{
   color: var(--white-color);
   font-size: 4.15rem;
}

.service-info h4{
  color: var(--white-color);
  font-size: var(--h4-font-size);
  font-weight: var(--font-bold);
  text-align: center;
  white-space: nowrap;
  max-width: 150px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.service-info:hover h4{
    color: var(--primary-color);
  }

.service-see-more{
   font-size: var(--base-font-size);
   color: var(--white-color);
   cursor: pointer;
   transition: .3s;
}

.service-see-more:hover{
      color: var(--primary-color);
}

.service-see-more i{
   font-size: 1.15rem;
   transition: margin-left .3s;
}

   .service-see-more:hover i{
   margin-left: 3px;
}

.service-modal-backdrop{
   z-index: var(--z-overlay);
   position: fixed;
   background: var(--modal-backdrop-bg);
   backdrop-filter: blur(20px);
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow-y: auto;
   display: none;
   opacity: 0;
   transition: opacity .3s ease;
   }

.service-modal-backdrop.active{
      opacity: 1;
      transition: opacity .5s ease;
    }

   .service-modal {
      position: relative;
      background: var(--card-bg);
      width: 825px;
      height: fit-content;
      /* margin: 75px 25px; */
      margin-top: 180px;
      margin-right: 25px;
      margin-bottom: 75px;
      margin-left: 25px;
      padding: 50px 25px 50px 45px;
      border-radius: 15px;
      border-bottom: 5px solid var(--primary-color);
      overflow: hidden;
      transform: scale(0);
      opacity: 0;
      transition: transform .5s, opacity .5s;
   }

.service-modal.active{
      transform: scale(1);
      opacity: 1;
      transition: transform .5s, opacity .5s;
}

.modal-close-btn{
  position: absolute;
  color: #05071C;
  font-size: 2rem;
  top: 0;
  right: 0;
  margin: 15px;
  cursor: pointer;
  transition: .3s;
}

.modal-close-btn:hover{
   color: var(--primary-color);
}

.service-modal .modal-content{
   display: flex;
   flex-direction: column;
   row-gap: 25px;
   max-height: 500px;
   margin-top: 50px;
   padding: 10px;
   overflow-y: auto;
}

.modal-content::-webkit-scrollbar{
   background: #05071C;
   width: 5px;
   border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb{
   background: var(--white-color);
   border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover{
   background: var(--primary-color);

 }

.service-modal .modal-title{
   max-width: 600px;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

.service-modal .modal-title h3{
   color:var(--primary-color);
   font-size: var(--h3-font-size);
   font-weight: 700;
}

.service-modal .modal-title p{
   color: var(--white-color);
   font-size: var(--small-font-size);
   font-weight: var(--font-regular);
   margin-top: 30px;
   margin-bottom: 20px;
 }

.service-modal .modal-content h4{
      color: var(--primary-color);
      font-size: var(--h4-font-size);
      font-weight: var(--font-semi-bold);
      margin-bottom: 15px;
 }

 .modal-content .my-services li{
   display: flex;
   margin-bottom: 25px;
}

.modal-content .my-services li i{
   color: var(--white-color);
   font-size: 1.4rem;
   margin-right: 10px;
}

.modal-content .my-services li p{
   color: var(--white-color);
   font-size:
   var(--base-font-size);
   line-height: 22px;
}

/* ==== ==== ==== Portfolio old1 ==== ==== ==== */
.portfolio-tabs{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   column-gap: 30px;
   row-gap: 15px;
   margin-bottom: 85px;
}
.portfolio-tabs .tab-btn{
   color: var(--white-color);
   font-size: var(--medium-font-size);
   font-weight:var(--font-medium);
   padding: 12px 0;
   border-radius: 25px;
   cursor: pointer;
   transition: .3s;
   }

.portfolio-tabs .tab-btn.active{
      color: var(--primary-color);
      background-color:var(--white-color);
      padding: 12px 25px;
      border-radius: 8px;
}

.portfolio-tabs .tab-btn.active:hover{
   color: var(--white-color);
   background: var(--primary-color);
}

.portfolio-container{
   display: grid;
   place-items: center;
   grid-template-columns: repeat(3, 1fr);
   column-gap: 50px;
   row-gap: 55px;
}

.portfolio-container .card-with-modal{
   display: block;
}

.portfolio-container .card-with-modal.hidden{
   display: none;
}
.portfolio-card {
    position: relative;
    background: var(--card-bg);
    width: 350px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card .card-img {
    pointer-events: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.portfolio-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card .card-info {
    position: relative;
    padding: 10px 15px 20px 20px;
}

.portfolio-card .card-info span {
    color: var(--white-color);
    font-size: var(--tiny-font-size);
    font-weight: var(--font-regular);
    text-transform: uppercase;
}

.portfolio-card .card-info h4 {
    color: var(--primary-color);
    font-size: var(--medium-font-size);
    font-weight: var(--font-medium);
    margin-top: 5px;
}

.portfolio-card .card-info i {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--white-color);
    font-size: 1.7rem;
    margin: 15px;
    transform: scale(0);
    transition: .3s;
}


.portfolio-card:hover .card-info i{
   transform: scale(1);
}

.portfolio-modal-backdrop{
   z-index: var(--z-overlay);
   position: fixed;
   background: var(--modal-backdrop-bg);
   backdrop-filter: blur(20px);
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   display: flex;
   justify-content: center;
   overflow-y: auto;
   display: none;
   opacity: 0;
   transition: opacity .3s ease;
   }

   .portfolio-modal-backdrop.active{
      opacity: 1;
      transition: opacity .5s ease;
   }

   .portfolio-modal-backdrop::-webkit-scrollbar{
      background:  #05071C;
      width: 8px;
      border-radius: 5px;
   }

   .portfolio-modal-backdrop::-webkit-scrollbar-thumb{
    background: var(--white-color);
    border-radius: 5px;
   }

   .portfolio-modal-backdrop::-webkit-scrollbar-thumb:hover{
      background: var(--primary-color);
   }

   .portfolio-modal{
      position: relative;
      background: var(--card-bg);
      backdrop-filter: blur(50px);
      max-width: 900px;
      height: fit-content;
      margin: 75px 25px;
      padding: 50px 45px;
      border-radius: 15px;
      transform: scale(0);
      opacity: 0;
      transition: transform .5s, opacity .5s;
    }

    .portfolio-modal.active{
      transform: scale(1);
      opacity: 1;
      transition: transform .5s, opacity .5s;
    }

   .portfolio-modal .modal-content{
      display: flex;
      justify-content: center;
      flex-direction: column;
      row-gap: 25px;
   }

   .portfolio-modal .modal-img {
    pointer-events: none;
    width: 100%;
    aspect-ratio:  4 / 3;
    object-fit: cover;
}

.portfolio-modal .modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.portfolio-modal .modal-content .modal-title{
   color:  var(--white-color);
   font-size: var(--h4-font-size);
   font-weight: var(--font-semi-bold);
 }

.portfolio-modal .modal-content .description{
   color: #05071C;
   font-size: var(--base-font-size);
   font-weight: var(--font-medium);
}

.portfolio-info {
    display: flex;
    position: relative;
    color: var(--white-color);
    background: var(--bottom-nav-bg);
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    align-items: start;
    /* column-gap:20%; */
    border-radius: 10px;
    border-bottom: 5px solid var(--primary-color);

}

.portfolio-info .mm-info {
    margin-left: 20px;
    flex-grow: 1;
    overflow: hidden;
}

.portfolio-info .mm-info  h4{
    color: var(--white-color);
    font-size: 1.5em;
    font-weight: var(--font-bold);
  }

  .portfolio-info .mm-info p{
    word-wrap: break-word;
    color: #05071C;
    font-size: 1.2em;
    font-weight: 500;
  }

  .portfolio-info .mm-info .link {
    color: #05071C;
  }

  .portfolio-info .mm-info .link:hover {
    color: var(--primary-color);
  }


/* ==== ==== ==== Slider ==== ==== ==== */
  .slider {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* align-items: center; */
    position: relative;
    background: var(--footer-bg);
   /* width: 800px;
    height: 800px; */
    width: 100%;
    height: 100%;
    /* margin: 20px; */
    overflow: hidden;
    border-radius: 10px;
    border-bottom: 5px solid var(--primary-color);
}

.slider .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
}

.slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

.slider .slide img{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .slider .slide .info{
    position: absolute;
    color: var(--white-color);
    background: var(--bottom-nav-bg);
    width: 75%;
    margin-top: 50px;
    margin-left: 50px;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 5px solid var(--primary-color);
  }

  .slider .slide .info h2{
    font-size: 2em;
    font-weight: 800;
  }

  .slider .slide .info p{
    font-size: 1em;
    font-weight: 400;
  }
  .navigation {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute; /* تثبيت الأزرار */
    top: 0; /* ضبط مكان الأزرار في المنتصف */
    width: 100%;
}

.slider:hover .navigation {
    opacity: 1;
}

.prev-btn, .next-btn {
    z-index: 999;
    font-size: 2em;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 10px;
    cursor: pointer;
    position: absolute; /* تثبيت الأزرار */
    top: 50%; /* ضبط مكان الأزرار في المنتصف */
    transform: translateY(-50%); /* ضبط مكان الأزرار في المنتصف */
}

.prev-btn {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    left: 0; /* تثبيت الزر في اليسار */
}

.next-btn {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    right: 0; /* تثبيت الزر في اليمين */
}

  /* .navigation-visibility{
    z-index: 999;
    display: flex;
    justify-content: center;
  } */

  .navigation-visibility {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 50px;
    position: absolute;
    /* display: flex
; */
    /* transform: translateY(500px); */
    /* top: 50px; */
    z-index: 999;
    display: flex
;
    justify-content: center;
}

.navigation-visibility .slide-icon {
    z-index: 999;
    background: var(--bottom-nav-bg);
    width: 20px;
    height: 10px;
    transform: translateY(0);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}
  /* .navigation-visibility .slide-icon{
    z-index: 999;
    background: var(--bottom-nav-bg);
    width: 20px;
    height: 10px;
    transform: translateY(50px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  } */

  .navigation-visibility .slide-icon.active{
    background:var(--primary-color);
  }

/* --------------------
06. Portfolio-Area
---------------------- */
.filter-menu {
    list-style: none;
    margin: -15px 0 30px 0;
    padding: 0;
    text-align: center;
    width: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
    margin-bottom: 85px; */
}

.filter-menu li {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    /* border: 1px solid #18AFD3; */
    /* font-family: 'Poppins', sans-serif; */
    font-weight: var(--font-medium);
    font-size: var(--medium-font-size);
    padding: 10px 30px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 8px;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
}

.filter-menu li:hover,
.filter-menu li.active {
    background: #18AFD3;
    color: #fff;
}

.portfolio-wrapper {
    margin-bottom: -30px;
}

.single-portfolio {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
    border-radius: 10px;
}

.single-portfolio img {
    width: 100%;
    pointer-events: none;
}

.single-portfolio .portfolio-content {
     position: absolute;
    left: 100%;
    top: 100%;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 35px;

}

.blockquote {
    border-left: 10px solid #18AFD3;
    background-color: #fff;
    border-radius: 10px;
}

.single-portfolio .portfolio-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #18AFD3;
    opacity: 0.7;
    z-index: -1;
}

.double .single-portfolio .portfolio-content {
    padding: 80px;
}

.single-portfolio .portfolio-content .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #05071C;
    font-size: 36px;
    margin-bottom: 20px;
    pointer-events: none;

}

.single-portfolio .portfolio-content .title {
    font-size: 24px;
    color: #05071C;
    font-weight: 600;
}

.single-portfolio .portfolio-content .title a {
    color: #05071C;
}

.single-portfolio .portfolio-content .desc {
    font-size: 16px;
    color: #05071C;
    font-weight: 600;
}

/* ----------------------
09. Testimonial-Area
----------------------- */
.testimonial-slider {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonial-slider .single-testimonial {
    background:var(--card-bg) ;
    padding: 50px;
    margin: 0 15px;
    border-bottom: 5px solid var(--primary-color);
    border-radius: 10px;
    /* border: 1px solid #eee; */
    position: relative;
    z-index: 1;
    /* border-radius: 10px; */
}

.testimonial-slider .single-testimonial .quote {
    background-color:var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--primary-color);
    float: left;
    margin-right: 25px;
    border-radius: 7px;
}

.testimonial-slider .single-testimonial .testimonial-header {
    margin-bottom: 40px;
}

.testimonial-slider .single-testimonial .content p:before,
.testimonial-slider .single-testimonial .content p:after {
    content: '"';
    display: inline-block;

}

.testimonial-slider .single-testimonial .title {
   font-size: 22px;
    margin-bottom: 10px;
}

.testimonial-slider .single-testimonial .position {
    color: var(--white-color);
    font-size: var(--base-font-size);
    font-weight: 400;
}

.testimonial-slider .single-testimonial .description {
    color: var(--white-color);
    font-size: var(--medium-font-size);
    font-weight: 400;
}


/* ==== ==== ==== Testimonials ==== ==== ==== */
.testimonials{
   position: relative;
   width:100%;
   margin-top: 12em;
}


.swiper{
   width: 100%;
   max-width: 1050px;
   height: 275px;
}

.swiper-slide{

  text-align: center;
  height: 50%;
  display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 45px;
}

.swiper-slide .client-details{
   max-width: 500px;
   text-align: center;
}

.swiper-slide .client-details h3{
   color: var(--primary-color);
   font-size:
   var(--xlarge-font-size);
   font-weight:
   var(--font-semi-bold);

   margin-bottom: 5px;
}

.swiper-slide .client-details span{
   color: var(--white-color);
   font-size: var(--small-font-size);
   font-weight: var(--font-regular);
}

.swiper-slide .client-details p{
   color: var(--white-color);
   font-size: var(--base-font-size);
    font-weight: var(--font-regular);
    margin-top: 15px;
}

.swiper-button-next:after,
.swiper-button-prev:after{
   display: none;
}

.swiper-button-next i,
.swiper-button-prev i{
   color: var(--white-color);
   font-size: 4.5rem;
   transition: .3s ease;
}

.swiper-button-next i:hover,
.swiper-button-prev i:hover{
   color: var(--primary-color);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active{
   background: var(--white-color);
}

/* color of slider */
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 5px 0 5px;
    padding: 0;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    outline: 0;
    background: 0 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    content: "";
    background-color: var(--white-color);
    opacity: .5;
    -moz-transition: .3s;
    -ms-transition: .3s;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    opacity: 1
}

/* ==== ==== ==== Blog  ==== ==== ==== */
.blog-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
    margin-bottom: 85px;
 }
 .blog-tabs .tab-btn{
    color: var(--white-color);
    font-size: var(--medium-font-size);
    font-weight:var(--font-medium);
    padding: 12px 0;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
    }

 .blog-tabs .tab-btn.active{
       color: var(--primary-color);
       background-color:var(--white-color);
       padding: 12px 25px;
       border-radius: 8px;
 }

 .blog-tabs .tab-btn.active:hover{
    color: var(--white-color);
    background: var(--primary-color);
 }

 .blog-container{
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 55px;
 }

 .blog-container .card-with-modal{
    display: block;
 }

 .blog-container .card-with-modal.hidden{
    display: none;
 }

 .blog-card{
    position: relative;
    background: var(--card-bg);
    width: 350px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
 }

 .blog-card .card-img{
    width: 100%;
 }

 .blog-card .card-img img{
    width: 100%;
 }


 .blog-card .card-info{
   position: relative;
   padding: 15px 15px 15px 15px;
 }
 .blog-card .card-info span{
    color: var(--white-color);
    font-size: var(--tiny-font-size);
    font-weight: var(--font-regular);
    text-transform: uppercase;
 }

 .blog-card .card-info h4{
     color: var(--primary-color);
     font-size: var(--medium-font-size);
     font-weight: var(--font-medium);
     margin-top: 5px;
 }

 .blog-card .card-info i{
     position: absolute;
     right: 0;
     bottom: 0;
     color: var(--white-color);
     font-size: 1.7rem;
      margin: 15px;
      transform: scale(0);
      transition: .3s;
 }

 .blog-card:hover .card-info i{
    transform: scale(1);
 }

 .blog-modal-backdrop{
    z-index: var(--z-overlay);
    position: fixed;
    background: var(--modal-backdrop-bg);
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
    }

    .blog-modal-backdrop.active{
       opacity: 1;
       transition: opacity .5s ease;
    }

    .blog-modal-backdrop::-webkit-scrollbar{
       background:  #05071C;
       width: 8px;
       border-radius: 5px;
    }

    .blog-modal-backdrop::-webkit-scrollbar-thumb{
     background: var(--white-color);
     border-radius: 5px;
    }

    .blog-modal-backdrop::-webkit-scrollbar-thumb:hover{
       background: var(--primary-color);
    }

    .blog-modal{
       position: relative;
       background: var(--card-bg);
       backdrop-filter: blur(50px);
       max-width: 900px;
       height: fit-content;
       margin: 75px 25px;
       padding: 50px 45px;
       border-radius: 15px;
       transform: scale(0);
       opacity: 0;
       transition: transform .5s, opacity .5s;
     }

     .blog-modal.active{
       transform: scale(1);
       opacity: 1;
       transition: transform .5s, opacity .5s;
     }

    .blog-modal .modal-content{
       display: flex;
       justify-content: center;
       flex-direction: column;
       row-gap: 25px;
    }

  .blog-modal .modal-img{
    width: 100%;
  }
  .blog-modal .modal-img img{
    width: 100%;
    border-radius: 10px;
  }


 .blog-modal .modal-content .modal-title{
    color: var(--white-color);
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
  }

 .blog-modal .modal-content .description{
    color: #05071C;
    font-size: var(--base-font-size);
    font-weight: var(--font-medium);
 }


.blog-read-more {

    font-size: var(--base-font-size);
    color: var(--white-color);
    cursor: pointer;
    transition: .3s;

 }

 .blog-read-more:hover{
       color: var(--primary-color);
 }

 .blog-read-more i{
    color: var(--primary-color);
    font-size: 1.15rem;
    transition: margin-left .3s;
    }
    .blog-read-more:hover i{
    margin-left: 3px;
    }

/* ----------------------
11. Blog-Area
------------------------ */
.blog-slider .slick-list {
   margin-left: -15px;
   margin-right: -15px;
}

.blog-slider .single-blog {
   margin-right: 15px;
   margin-left: 15px;
   margin-top: 10px;
   background: var(--card-bg);
   border-radius: 10px;
}

.single-blog .title {
   font-size: 1.5rem;
   line-height: 38px;
   font-weight: 600;
   display: -webkit-box;
   /* -webkit-line-clamp: 2;
   -webkit-box-orient: vertical; */
   overflow: hidden;
}

.single-blog .title a {
   color: var(--white-color);
   color:var(--primary-color);
   font-size: var(--font-bold);
   margin-left: 10px;
   padding: 20px 0px;

}

.single-blog .title a:hover {
   color:var(--primary-color);
}

.single-blog .blog-image {
   margin-bottom: 26px;
   overflow: hidden;
}

.single-blog .desc {
    color: var(--white-color);
   margin-bottom: 30px;
   margin-left: 20px;
}

.single-blog .blog-content .blog-read-more{
      margin-left: -15px;
}

.single-blog .button-primary-trans i {
   margin-left: 5px;
}

.blog-lists {
   margin-bottom: -40px;
}

.blog-lists .single-blog {
   margin-bottom: 50px;
}

.full-width .single-blog .blog-content {
   width: calc(100% - 100px);
   margin: auto;
}

.blog-meta {
   display: flex;
   align-items: flex-start;
   flex-wrap: wrap;
   margin-bottom: 50px;
   border-top: 1px solid #eee;
   border-bottom: 1px solid #eee;
   background-color: #fff;
   padding: 25px 40px 5px 40px;
   border-radius: 10px;
}

.blog-meta .single-meta {
   margin-right: 50px;
   margin-bottom: 10px;
}

.blog-meta .single-meta:last-child {
   margin-right: 0px;
}

.blog-meta .single-meta .meta-title {
   margin-bottom: 5px;
   font-size: 15px;
   letter-spacing: 2px;
}

.blog-meta .single-meta .meta-value {
   font-size: 16px;
   color: #18AFD3;
}

.blog-meta .single-meta .meta-value a {
   color: #18AFD3;
}

/* ==== ==== ==== Contact Me ==== ==== ==== */

.contact-container{
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 70px;
}

.contact-info  h3{
   color: var(--white-color);
   font-size: var(--base-font-size);
   font-weight: var(--medium-font-size);
   text-transform: uppercase;
   margin-bottom: 40px;
}

.contact-details{
   display: flex;
   flex-direction: column;
   row-gap: 60px;
   margin-bottom: 50px;
}

.contact-item{
display: flex;
align-items: center;
column-gap: 25px;
}

.contact-icon{
   color: var(--white-color);
   font-size:2rem;
   background: var(--card-bg);
   width: 70px;
   height: 70px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 8px;
}

.contact-method{
   display: flex;
   flex-direction: column;
   row-gap: 7px;
   /* width: 100px; */
  }

.contact-method span{
   color: var(--white-color);
   font-size: var(--tiny-font-size);
   text-transform: uppercase;
   /* font-size:2rem; */
}

.contact-method h4{
color: var(--white-color);
/* font-size: var(--base-font-size); */
font-size: 1rem;
font-weight: var(--medium-font-size);
}

.contact-method a{
color: var(--white-color);
transition: .35;
}

.contact-method a:hover{
   color: var(--primary-color);
}


.contact-method a i{
   font-size: var(--medium-font-size);
}

.contact-social-links{
   width: 100%;
   display: flex;
   column-gap: 25px;
   padding: 0;
}

.contact-social-links li {
   font-size: 1.75rem;
   background: var(--card-bg);
   width: 70px;
   height: 70px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 8px;
   cursor: pointer;
}

.contact-social-links li a{
   color:var(--white-color);
   transform: .3s;
}

.contact-social-links li a:hover{
   color:var(--primary-color);
}

.contact-form-body{
   position: relative;
   background: var(--card-bg);
   width: 700px;
   padding: 50px;
   border-radius: 10px;
   border-bottom: 5px solid var(--primary-color);
}

.contact-form-body h2{
   color: var(--primary-color);
   font-size: var(--h2-font-size);
   font-weight: var(--font-bold);
   text-transform: uppercase;
   margin-bottom: 30px;
}

.contact-form-body h2 span{
   color:var(--white-color);
}

.contact-form-body p{
   color:var(--white-color);
   font-size: var(--tiny-font-size);
   margin-bottom: 45px;
}

.contact-form-body form{
   display: flex;
   flex-direction: column;
   row-gap: 15px;
}

.contact-form-body form .input-group input,
.contact-form-body form .input-group textarea{
   color:  #05071C;
   font-size: var (--small-font-size);
   background: hsl(var (--hue) 54% 74% / .1);
   width: 100%;
   border: none;
   outline: none;
   padding: 17px 20px;
   border-radius: 8px;
}
.contact-form-body form .input-group textarea{
   height: 185px;
   resize: none;
}

.contact-form-body form .send-message{
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 10px;
}

.contact-form-body form .input-group button{
   /* color: var(--white-color); */
   font-size:var(--small-font-size);
   font-weight: var(--font-medium);
   width: 200px;
   padding: 16px 30px;
   margin-top:10px;
   transition: .3s;
}

.contact-form-alert{
   cursor: pointer;
}

.contact-form-alert span{
   color:var(--primary-color);
   font-size:var(--tiny-font-size);
   font-weight: var(--font-regular);
}

.contact-form-alert i{
   color:var(--primary-color);
   font-size: 1.25rem;
}

/* ==== ==== ==== Footer ==== ==== ==== */
.mm-footer{
   background: var(--footer-bg);
   padding-top: 70px;
   padding-bottom: 120px;
}

.mm-footer .mm-container .inner{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   row-gap: 40px;
}

.footer-menu{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   padding: 0px;
   column-gap: 22px;
   row-gap: 22px;
}

.footer-menu .menu-item a{
   color: var(--white-color);
   font-size: calc(var(--tiny-font-size) - .07rem);
   font-weight:var(--font-medium);
   text-transform: uppercase;
   padding: 3px 12px;
   border-radius: 15px;
   transition: .3s;
}

.footer-logo{
    pointer-events: none;
}

.footer-menu .menu-item a:hover{
   color: var(--white-color);
   background: var(--primary-color);
   border-radius: 5px;
}

.mm-footer .copy-right{
   color: var(--white-color);
   font-size:var(--small-font-size);
   margin-top: 10px;
}

.mm-footer .copy-right a:hover{
   color: var(--primary-color);
   transition: .3s;
}

/* ==== ==== ====  Media Queries (max-width: 1600px) ==== ==== ==== */

@media screen and (max-width:1600px) {
   /* .cursor{
      display: none;
   } */

   .mm-container{
   max-width: 1075px;
   }

   .mm-section{
    margin-top: 15px;
   }
   /* .home-container{
    margin-top: 260px;
    margin-bottom: 90px;
 }
 */

 .icon-logo {
    width: 200px;
}
   .avatar-img{
      width: 385px;
      height: 385px;
   }


   .contact-form-body {
    margin-bottom: 100px;
    width: 800px;
}
}

/* =========================================
   Media Queries (max-width: 1200px)
========================================= */
@media screen and (max-width: 1200px) {

 .mm-container {
   max-width: 100%;
   margin-left: 50px;
   margin-right: 50px;

 }

 .section-content {
   flex-direction: column;
   column-gap: 0;
   row-gap: 50px;
}



 .about-img {
  width: 375px;
}

.about-details {
   width: unset;
}

 .about-info {
   display: grid;
   place-items: center;
}


.about-description {
   max-width: 700px;
}

.about-buttons{
 width: 100%;
 justify-content: center;
}

.skill-container{
   grid-template-columns: repeat(1, 1fr);
}


.portfolio-container{
   grid-template-columns: repeat(2, 1fr);
}


.contact-container{
    width: 100%;
    /* flex-direction: column;
    row-gap: 75px; */
 }


}



/* =========================================
   Media Queries (max-width: 992px)
========================================= */
@media screen and (max-width: 992px) {

.home-container{

        margin-top: -140px;
        margin-bottom: 40px;
 }


    .avatar-container{
   margin-top: 240px;
   flex-direction: column-reverse;
   row-gap: 10px;
  }

  .avatar-container .hire-btn-01{
   display: block;
   margin-bottom: 20px;
  }

  .avatar-container .hire-btn-02{
   display: none;
  }

  .avatar-img{
   width: 350px;
  }

  .avatar-info .text-content{
   align-items: center;
  }


  .bottom-nav{
    bottom: -40px;

 }

 .bottom-nav.active{
    bottom: 40px;
 }


    .slider {
      width: 100%;
      height: auto;
    }

    /* .slider .slide {
      height: auto;
    } */

    .slider .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;

    }





  .service-container{
   grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-container{
   grid-template-columns: repeat(1, 1fr);
   }

   .swiper{
      max-width: 700px;
      height: 450px;
   }

   .swiper-slide{
      flex-direction: column;
   }

   .swiper-slide .client-img{
      margin-bottom: 35px;
   }

   .swiper-slide .client-details{
      text-align: center;
   }

   .contact-container{
      flex-direction: column;
      row-gap: 75px;
   }

   .contact-info{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

   }

   .contact-social-links{
      justify-content: center;
      align-items: center;
      display: flex;

     /* margin-left: -30px; */

   }
}
/* =========================================
   Media Queries (max-width: 768px)
========================================= */
@media screen and (max-width: 768px) {

   :root{
   /* ======= Font sizes ====== */
   --h1-font-size: 2.3rem;
   --h2-font-size: 1.97rem;
   --h3-font-size: 1.75rem;
   --h4-font-size: 1.3rem;
   --h5-font-size: 1.05rem;
   --xlarge-font-size: 1.28rem;
   --large-font-size: 1.13rem;
   --medium-font-size: 1.06rem;
   --base-font-size: 1rem;
   --small-font-size: .93rem;
   --tiny-font-size: .88rem;
}

 .mm-container{
  margin-left: 25px;
  margin-right: 25px;
 }


 .lets-talk-btn{
   display: none;
 }

 .lets-talk-icon{
   font-size: 1.5rem;
   display: block;
 }

 .theme-btn i{
   font-size: 1.6rem;
 }

 .bottom-nav .menu{
    width: 367px;
    padding: 12px 22px;



 }


 .home-social .social-line{
   margin-top: 32px;
   margin-bottom: 20px;
 }

 .resume-items .item .info{
   width: 185px;
   column-gap: 15px;
 }

 .resume-items .item-left .info{
   right: 25px;
 }

 .resume-items .item-right .info{
   left: 75px;
 }

 .resume-items .item .info i{
   display: none;
 }

 .skill-card{
   padding: 50px 0;
 }

 .skill i{
   font-size: 1.25rem;
 }

 .service-container{
   grid-template-columns: repeat(1, 1fr);
   row-gap: 30px;
 }

 .service-card{
   width: 245px;
   height: 250px;
 }

 .service-icon{
   font-size: 3.25rem;
 }

 .service-info h4{
   white-space: wrap;
   max-width: unset;
 }

 .service-modal{
   padding: 50px 2px;
 }

 .portfolio-container{
   row-gap: 35px;
 }

 .portfolio-modal{
   padding: 50px 20px;
 }


 .slider .slide .info h2 {
    font-size: 1.3em;
    font-weight: 700;
}

.slider .slide .info p {
    font-size: .9em;
    font-weight: 400;
}

   .navigation-visibility .slide-icon {
        width: 15px;
        height: 8px;
    }
 /* .navigation-visibility .slide-icon {
    transform: translateY(-100px);
 }

 .prev-btn, .next-btn {

    transform: translateY(0px);
} */


/* .portfolio-info {
    column-gap: 10%;
} */

.portfolio-info .mm-info  h4{

    font-size: 1.3em;
    font-weight: var(--font-bold);
  }

  .portfolio-info .mm-info p{

    font-size: 1em;
  }


 .swiper-button-next i, .swiper-button-prev i{
   font-size: 4rem;
 }

 .contact-form-body {
    width: 100%;
   padding: 35px;
   border-radius: 10px;
 }




 /* .footer-menu{
    display: flex;
    justify-content: center;
    text-align: center;

 }

 .footer-menu .menu-item a{
    display: flex;
    justify-content: center;
    text-align: center;
 } */

 .mm-footer .copy-right {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}


 .to-top-btn.active {
   right: 20px;
 }

}
/* =========================================
   Media Queries (max-width: 480px)
========================================= */
@media screen and (max-width:  480px) {

   :root{
   /*========== Font sizes ===== */
   --h1-font-size: 2.25rem;
   --h2-font-size: 1.9rem;
   --h3-font-size: 1.65rem;
   --h4-font-size: 1.25rem;
   --h5-font-size: 1.02rem;

   --xlarge-font-size: 1.25rem;
   --large-font-size: 1.1rem;
   --medium-font-size: 1.03rem;
   --base-font-size: 1rem;
   --small-font-size: .9rem;
   --tiny-font-size: .85rem;
   }

   .cursor{
      display: none;
   }

   .mm-container{
      margin-left: 20px;
      margin-right: 20px;
   }

   .mm-header{
     padding: 20px 0;
   }

   .mm-logo{
    font-size: var(--base-font-size );
   }


   .header-btns{
      column-gap: 15px;
   }

   .my-name{
    text-align: center;
    justify-items: center;
   }


   #scrollUp{
    /* line-height: 65px; */
   display: none;
   }


   .avatar-container .hire-btn-01 {
    display: block;
    margin-top: -220px;
    margin-bottom: 20px;
}



    .home-container .mm-wrapper {
       margin-top: -50px;
       margin-bottom: -40px;
       flex-direction: column-reverse;
       display: flex;

    }

    .home-social {
       margin-top: 10px;
       position: relative;
       display: flex;

      margin-right: 20px;
       justify-content: center;
       align-items: center;
    }
    .avatar-info .my-name{
     text-align: center;
     }


   .home-social span{
      display: none;
   }

   .home-social .mm{
    display: none;
   }

   .home-social .social-line {
      display: none;
   }

   .home-social .social-icons{
      display: flex;
      flex-direction: row;
      margin-top: 35px;
      gap: 30px;
      margin-bottom: 30px;
   }

   .home-scroll-btn{
      display: none;
   }



   .avatar-container{
      row-gap: 0;
      width: 100%;
   }

   .avatar-img{
      width: 85%;
      height: fit-content;
      padding-bottom: 94%;
   }

   #scrollUp{
    /* line-height: 65px; */
   display: none;
   }



   .menu-show-btn{
      width: 75px;
      height: 45px;
      row-gap: 4px;
      bottom: -30px;
   }

   .menu-show-btn.active{
      bottom: 30px;
   }

   .menu-show-btn .bar-01,
   .menu-show-btn .bar-02{
      width: 37px;
      height: 3px;
   }

   .about-omg{
      width:100%;
      max-width: 350px;
   }

   .about-img {
    width: 100%;
  }

  .pro-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));
}


   .pro-card {
      flex-direction: column;
      row-gap: 3px;
   }

   .pro-card span{
     font-size: 2.5rem;
   }

   .pro-card p{
      text-align: center;
   }

   .about-buttons{
      column-gap: 15px;
   }

   .resume-items {
    word-wrap: break-word;
    text-align: center;
}

   .resume-items .item .info{
      width: 140px;
    }

    .resume-items .item-left .info{
      right: 20px;
    }

    .resume-items .item-right .info{
      left: 30px;
    }

    .resume-items .item .info p{
      white-space: break-spaces;
    }

   .skill-container {
    row-gap: 35px;
}


    .skill-card{
      padding: 35px 0;
    }

    .skill-title{
      padding: 35px;
    }

    .skill-categories{
      column-gap: 35px;
      padding: 0 25px;
    }

    .service-container{
      width: 100%;
    }

    .card-with-modal{
      width: 100%;
    }

    .service-card{
      margin: 0 auto;
    }

    .service-modal{
      padding: 50px 15px;
      margin:  75px 20px;
    }

    .portfolio-container{
      row-gap: 25px;
      width: 100%;
    }

    .portfolio-card{
      width: 100%;
    }

    .portfolio-modal{
        word-wrap: break-word;
      padding: 65px 20px;
    }

    .slider .slide .info {
        padding-bottom: 0px;
        width: 70%;
        margin-top: 20px;
        margin-left: 20px;
    }

    .slider .slide .info h2{
        font-size: 1em;
        line-height: 10px;
      }

      .slider .slide .info p{
        font-size: 0.75em;
      }


      .prev-btn, .next-btn{
        font-size: 0.9em;

      }

      /* .navigation{
        height: 300px;
     }

     .prev-btn, .next-btn{
        margin-top: -100px;

        font-size: 0.9em;

      } */

      .navigation-visibility .slide-icon {
        width: 15px;
        height: 8px;
    }

    .portfolio-info {
        display: grid;
    }
    .portfolio-info .mm-info {
        margin-top: 10px;
        margin-left: 10px;
    }

    .portfolio-info .mm-info h4 {
        font-size: 1.2em;
        font-weight: var(--font-bold);
    }



    .contact-details{
      row-gap: 35px;
    }

    .contact-social-links{
      column-gap: 20px;
    }

    .contact-social-links li{
           font-size: 1.65rem;
    }

    .contact-form-body{
        width: 100%;
      padding: 45px 20px;
    }

    .contact-form-body h2{
      text-align: center;
    }

    .contact-form-body .input-group{
     display: grid;
     place-items: center;
    }

    .to-top-btn{
      display: none;
    }

}


@media screen and (max-width:  380px) {

    .cursor{
        display: none;
     }

     .icon-logo {
        margin-left: 10px;
        width: 140px;
    }

   .icon{
    width: 34px;
    height: 34px;
   }

   .slider .slide .info h2{
    font-size: 0.7em;
  }

  .slider .slide .info p{
    font-size: 0.6em;
  }

  /* .navigation {
        height: 220px;
    }
  .prev-btn, .next-btn {
    margin-top: -60px;
} */
.slider .slide .info {
    margin-top: 15px;
    margin-left: 15px;
}

.slider .slide .info p {
    display: none;
}

.navigation-visibility {
    bottom: 20px;
}

.navigation-visibility .slide-icon {
    width: 10px;
    height: 6px;
}


  .portfolio-modal {
        /* word-wrap: break-word; */

        max-width: 90%;

    }

    .bottom-nav{
        bottom:-40px;
      }

       .bottom-nav.active{
        bottom: 40px;
      }

   .icon{
    width: 35px;
    height: 35px;
   }


   .bottom-nav .menu {
    padding: 10px 10px;
    justify-content: space-between;
    column-gap: 13px;
    width: 300px;
    height: 62px;
}

.notfound-title{
    align-items: center;
 }

}
