
/* # fonts  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Space Grotesk');

:root {
  --scale-factor: 0.5;
}

/* # variables */
:root{
  --main-color: #a52424;

  /* text colors */
  --text-dark-gray: hsl(0, 0%, 25%);
  --text-x-dark-gray: hsl(0, 0%, 10%);
  --text-black: hsl(0, 0%, 0%);

  /* bg colors */
  --bg-light-yellow: hsl(0, 0%, 99%);
  --bg-x-light-yellow: hsl(0, 0%, 100%);

  /* border colors */
  --border-dark: hsla(0, 0%, 0%, 0.1);
  --border-x-dark: hsla(0, 0%, 0%, 0.7);

  /* font family */
  --ff-carter-one: 'Carter One', cursive;

  /* font size */
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;
  --fs-2xl: 28px;
  --fs-3xl: clamp(27px, 4vw, 50px);
  --fs-4xl: clamp(35px, 7vw, 90px);
  --fs-body: var(--fs-md);

  /* padding */
  --section-py: 120px;
}

@media(max-width: 991px){
  :root{
    /* font size */
    --fs-2xl: 24px;
  }
}
@media(max-width: 767px){
  :root{
    /* font size */
    --fs-lg: 16px;
    --fs-xl: 20px;

    /* section-padding */
    --section-py: 50px;
  }
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}


/* # base */
html{
  scroll-behavior: smooth;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::before,
::after{
  box-sizing: border-box;
}






body::-webkit-scrollbar {
  width: 16px; /* Width of the scrollbar */
  background-color: black; /* Color of the scrollbar background */
  
}

/* Style the track (background of the scrollbar) */
body::-webkit-scrollbar-track {
  background-color: #F5F5F5; /* Color of the track */
}

/* Style the handle (the draggable element of the scrollbar) */
body::-webkit-scrollbar-thumb {
  background-color: #981717; /* Color of the thumb */
   /* Round corners of the thumb */
  border: 3px solid #F5F5F5; /* Creates a border inside the track */
}

/* Handle on hover or active */
body::-webkit-scrollbar-thumb:hover {
  background-color: black; /* Color of the thumb when hovered or active */
}

body {
  scrollbar-color: #888 #F5F5F5; /* thumb and track color */
  scrollbar-width: thin; /* 'auto' or 'thin' */
}


.buttonup a{
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #981717;
  padding: 7px 12px;;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
}



body{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  background-color: var(--bg-x-light-yellow);
  color: var(--text-dark-gray);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  
}
h1,h2,h3,h4,h5,h6{
  line-height: 1.2;
  color: var(--text-x-dark-gray);
}
a{
  text-decoration: none;
  color: var(--main-color);
}
img{
  max-width: 100%;
  vertical-align: middle;
}
ul{
  list-style: none;
}
p + p{
  margin-top: 15px;
}
button{
  cursor: pointer;
}
::selection{
  color: var(--text-black);
  background-color: var(--main-color);
  Color: white
}

/* # page wrapper */
.page-wrapper{
  overflow: hidden;
  
}
/* # container */
.container{
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
  
}
/* # section header */
.section-header{
  margin-bottom: 60px;
  text-align: center;
}
.section-header-title{
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--text-x-dark-gray);
  text-transform: capitalize;
  font-family:'Poppins', sans-serif;
}
@media(max-width: 767px){
  .section-header{
    margin-bottom: 45px;
  } 
}
/* # aos */
[data-aos="fade-up"]{
  transform: translate3d(0, 50px, 0);
}
[data-aos="reveal-left"]{
  clip-path: inset(0 100% 0 0);
}
[data-aos="reveal-left"].aos-animate{
  clip-path: inset(0);
}
/* # text animation */
.word{
  overflow: hidden;
  vertical-align: bottom;
}
.word .char:nth-child(1){
  text-transform: uppercase;
}
[data-aos="text-animation"] .char{
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(.455, .03, .515, .955);
}
[data-aos="text-animation"].aos-animate .char{
  transform: translateY(0);
  transition-delay: calc(0.05s * var(--char-index));
}
/* # btn */
.btn{
  display: inline-block;
  padding: 10px 28px;
  background-color: #a22424;
  color: white;
  font-weight: 500;
  font-size: var(--fs-body);
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5;
  font-family: inherit;
  user-select: none;
  z-index: 1;
  position: relative;
  border: none;
}
.btn::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 1px solid #0f0f0f;
  transform: translate(5px, 5px);
  z-index: -1;
  transition: transform 0.5s ease;
}
.btn:hover::after{
  transform: translate(0, 0);
}

/* # preloader */
.preloader{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-bg{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
}
.preloader .bg-item{
  width: 10%;
  background-color: var(--bg-light-yellow);
  transition: transform 1s cubic-bezier(.7, .11, .21, .91);
  transform-origin: right;
}
.preloader.loaded .bg-item{
  transform: scaleX(0);
  transition-delay: 0.5s;
}
.preloader-items{
  position: relative;
  height: 200px;
  width: 200px;
  transform: scale(0.25);
}
.preloader.loaded .preloader-items{
  transition: opacity 0.5s ease;
  opacity: 0;
}
.preloader-item{
  height: 50px;
  width: 50px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  animation: preloader 1s linear infinite;
}
.preloader-item:nth-child(1){
  left: calc(50% - 25px);
  top: 0;
  --translate-x: 0;
  --translate-y: -50px;
  --origin-x1: center;
  --origin-y1: 150px;
  --origin-x2: center;
  --origin-y2: 100px;
}
.preloader-item:nth-child(2){
  right: 0;
  top: calc(50% - 25px);
  --translate-x: 50px;
  --translate-y: 0;
  --origin-x1: -100px;
  --origin-y1: center;
  --origin-x2: -50px;
  --origin-y2: center;
}
.preloader-item:nth-child(3){
  left: calc(50% - 25px);
  bottom: 0;
  --translate-x: 0;
  --translate-y: 50px;
  --origin-x1: center;
  --origin-y1: -100px;
  --origin-x2: center;
  --origin-y2: -50px;
}
.preloader-item:nth-child(4){
  left: 0;
  top: calc(50% - 25px);
  --translate-x: -50px;
  --translate-y: 0;
  --origin-x1: 150px;
  --origin-y1: center;
  --origin-x2: 100px;
  --origin-y2: center;
}
@keyframes preloader{
   50%{
    transform: translate(var(--translate-x), var(--translate-y));
    transform-origin: var(--origin-x1) var(--origin-y1);
   }
   100%{
    transform: rotate(180deg);
    transform-origin: var(--origin-x2) var(--origin-y2);
   }
}



/* # header */
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 0;
  background-color: #f3f3f3;
}
.header-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo{
  font-size: 20px;
  text-transform: uppercase;
  color: black;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  
  
  
}
.header-logo span{
  font-size: 20px;
  text-transform: uppercase;
  color: #a22424;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
 
  
  
}


.header-logo {
  display: flex;
  align-items: center;
  justify-content: left;
  
  
  
  
}

.logo-img {
  max-width: 60px; /* Adjust the width as needed */
  height: auto;
  /* Add margin for spacing */
  margin-bottom: 10px;
  
}

/* If you want to hide the text next to the image on smaller screens, you can use media queries */
@media (max-width: 768px) {
  .header-logo-i span {
     display: none;
  }
}


.header-toggler{
  display: none;
}
.header-menu li{
  display: inline-block;
  margin-left: 30px;
  margin-top:15px;
}
.header-menu a{
  display: block;
  color: var(--text-x-dark-gray);
  transition: color 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
  font-size:18px;
 
  
}

.header-menu a i{
  font-size: 22px;
  color: #981717;

}

.header-menu a:hover{
  color: var(--main-color);
}

.header-menu .fa, .header-menu .fab {
  transition: color 0.3s ease; /* Smooth color transition */
  color: #981717; /* Normal state color */
}






/* Combined icon styles */
.header-menu .combined-icon {
  position: relative; /* Establish a positioning context */
  display: inline-flex; /* Align icons horizontally */
  align-items: center; /* Center align icons vertically */
  justify-content: center; /* Center align icons horizontally */
  margin-left: 30px; /* Consistent spacing with other menu items */
  margin-top:30px;
}

.header-menu .combined-icon a {
  position: absolute;
}

.header-menu .combined-icon .fa-phone {
  color: #981717; /* Phone icon color */
  font-size: 1.1em; /* Slightly larger icon size */
  z-index: 1; /* Ensure phone icon stacks on top */
  transform: scaleX(-1) translateY(50%) translateX(0%);
  
}

.header-menu .combined-icon .fa-envelope {
  color: #981717; /* Envelope icon color */
  font-size: 1.0em; /* Slightly smaller icon size to fit the phone icon */
  transform: translate(50%, 50%); /* Position envelope icon over the phone icon */
}




@media(max-width:991px ){
  .header{
    padding: 12px 0;
  }
  .header-toggler{
    height: 34px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1;
    background-color: transparent;
  }
  .header-toggler span{
    height: 2px;
    width: 80%;
    background-color: #a22424;
    position: relative;
    transition: background-color 0.3s ease;
  }
  .header-toggler span::before,
  .header-toggler span::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #a22424;
    transition: transform 0.3s ease;
  }
  .header-toggler span::before{
    transform: translateY(-8px);
  }
  .header-toggler span::after{
    transform: translateY(8px);
  }
  .header-toggler.active span{
    background-color: transparent;
  }
  .header-toggler.active span::before{
    transform: rotate(45deg);
  }
  .header-toggler.active span::after{
    transform: rotate(-45deg);
  }

  .header-menu{
    position: fixed;
    width: 250px;
    background-color: var(--bg-light-yellow);
    top: 0;
    right: 0;
    height: 100%;
    padding: 60px 0;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .header-menu.open{
    transform: translateX(0);
  }
  .header-menu li{
    display: block;
    margin: 0;
  }
  .header-menu a{
    padding: 8px 15px;
  }

  .header-menu .combined-icon a{
    padding: 8px 15px;

  }
  .header-menu .combined-icon {
    display: block;
    margin: 0;
  }
}















/* # home */
.home{
  padding: 170px 0 0px;
  
}
.home-container{
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.home-title{
  font-size: 50px;
  margin: 0 0 20px;
  font-weight:400 ;
  color: var(--text-x-dark-gray);
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}


.home {
  padding: var(--section-py) 0;
  display: flex;
  align-items: center; /* Keeps items vertically centered */
  justify-content: center; /* Centers the .home-content horizontally */
  background-color:#f3f3f3;
}

.home-content {
  display: flex;
  gap:50px;
  
  justify-content: center; /* Centers the children in the container */
  align-items: center; /* Keeps the title and image vertically aligned */
}

.left-section {
  text-align: left;
  /* Make sure the left section does not shrink or grow and takes exactly the space it needs */
  flex: 0 0 auto;
}

.right-section {
  /* If needed, ensure the right section containing the image does not grow or shrink */
  flex: 0 0 auto;
}

.home-title {
  font-size: 45px;
  margin-top: 20px;
  color: #333;
  margin-bottom: 80px;
  max-width: 700px; /* Adjust this value as needed to control where the line breaks */
  margin-left: 550px;
  
}

.home-subtitle a {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  color: #555;
  text-decoration: none;
}

.home-image {
  max-width: 40%;
  height: auto;
  margin-left:60px;
  /* Remove margin-left if it is no longer appropriate */
}



/* Responsive Adjustments */
@media (max-width: 991px) {
  .home-content {
    flex-direction: column; /* Stack content vertically on smaller screens */
    gap: 2px;
  }

  .home-title {
    font-size: 35px; /* Reduce font size for smaller screens */
    margin-left: 0; /* Reset margin-left */
    margin-top: 80px; /* Adjust bottom margin */
    text-align: center; /* Center-align the title */
  }

  .home-image {
    max-width: 70%; /* Increase image width on smaller screens */
    margin-left: 0; /* Reset margin-left */
  }
}

@media (max-width: 575px) {
  .home-title {
    font-size: 28px; /* Further reduce font size for very small screens */
  }

  .home-image {
    max-width: 100%; /* Allow image to take full width */
  }

}















------get-to------------

.get-to{
  margin-top: px; /* Adjust this value based on the space you need */

}

.content-section {
  display: none; 
}

/* Show the first section by default */
#my-journey {
  display: block;
}










/* # about */
.about{
  padding: var(--section-py) 0;
  margin-top: -200px;
 
  
  
  
}


.section-header-title-about {
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 10px; 
  color: #030303;
  font-family: 'Poppins', sans-serif;
  margin-bottom:60px;
  
}
.section-header-ab {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.about-text p{
  line-height: 190%; 
  color: black
}




.second-color {
  color: #a22424; /* This is a reddish color */
  font-weight: 500;
  font-size: 18px;
}

/* Define the second class */
.highlight {
  color: black(176, 44, 44); /* This is a valid hex color, similar to 'red' */
  font-weight: 500;
  font-size: 18px;
}

.about-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px
 
}
.about .section-header{
  grid-column: 2 / 3;
  margin-bottom: 20px;
  text-align: center;
}

.about-img-box {
  max-width: 900px;
  margin: auto;
  position: relative;
}






/* Responsive adjustments for tablets */
@media (max-width: 768px) {
  .section-header-title-about {
    font-size: 30px; /* Slightly smaller font size */
  }
  .about {
    margin-top: -70px; /* Remove negative margin */
  }

  .about-content {
    grid-template-columns: 1fr; /* Stack elements vertically */
  }

  .about .section-header {
    grid-column: 1; /* Adjust if needed */
  }

  .about-img-box {
    max-width: 100%; /* Full width to use available space */
  }
}

/* Responsive adjustments for mobile phones */
@media (max-width: 575px) {
  .about {
    margin-top: -40px; /* Remove negative margin */
  }

  .section-header-title-about {
    font-size: 24px; /* Even smaller font size */
  }

  .about-text p, .second-color, .highlight {
    font-size: 16px; /* Smaller text for readability */
  }
}












/* # performers */
.performers{
  padding: var(--section-py) 0;
  margin-top: -200px;
 
  
}
.section-header-title-work {
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 20px; 
  color: black;
  font-family: 'Poppins', sans-serif;
}
.work-text {
  padding-top: 20px; 
  color: black;
  font-size: var(--fs-1xl)
}

.performers {
  background-color:white;
}

.performers p {
  color: black; 
  font-family: 'Poppins', sans-serif;
}


.performers-items{
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(30px, 15vw, 200px);
  align-items: start;
}
.performers-item{
  position: relative;
}
.performers-item:nth-child(even){
  margin-top: 200px;
}


@media(max-width: 575px){
  .performers-items{
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .performers-item:nth-child(even) {
    margin-top: 0;
  }
}

.performers-itemss{
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  gap: 30px;
  align-items: center;
}

 



----------------------------------------------

.education-section {
  max-width: 800px;

  margin-bottom: 50px
  
}

.education-section h1 {
  border-bottom: 5px solid whitesmoke;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;

}

ul li img {
  margin-right: 10px;
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
}

ul li img {
  margin-right: 10px;
  min-width: 55px
}
.google-logo{
  width: 70px; /* Adjust the size as needed */
  height: 40px; /* Adjust the size as needed */
}
.coursera-logo {
  width: 70px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */

}

.ztm-logo {
  width: 10px; /* Adjust as needed */
  height: 40px; /* Adjust as needed */
}

.axsos-logo {
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
}

.codingdojo-logo {
  width: 60px; /* Adjust as needed */
  height: 20px; /* Adjust as needed */
}

.yarmouk-logo {
  width: 40px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
}



------------------------------------------


.experience-section {
  max-width: 0px;
  margin: 50;
  
}

.experience-section h1 {
  border-bottom: 5px solid whitesmoke;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.text-content {
  margin-left: 20px;
  flex-grow: 1;
  font-size: 17px;
}




ul li img {
  margin-right: 10px;
  min-width: 55px
}

.catch-logo{
  height:50px ;
  width:80px ;
}

.trainee-logo{
  height: 50px;
  width: 50px;
}





-----------------------------------------------

.skills-section{
  max-width: 0px;
  margin: 50;

}

.skills-section h1 {
  border-bottom: 5px solid whitesmoke;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 25px;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 500px;
  row-gap: 40px;
}


.skills-category h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.skills-category ul {
  list-style: none;
  padding: 0;
}

.skills-category ul li {
  margin-bottom: 5px;
  
}

.figma-logo{
  height: 30px;
  width: 25px;
}
.xd-logo{
  height: 35px;
  width: 30px;
}
.photoshop-logo{
  height: 25px;
  width: 30px;
}
.balsamiq{
  height:25px ;
  width:25px ;
}
.html-logo{
  width: 20px;
  height: 30px;
}
.css-logo{
  width: 20px;
  height: 30px;

}
.js-logo{
  width: 20px;
  height: 30px;

}
.text-content-s{
  font-size: 17px;
  margin-right: 20px;
 
}














---------------------------------

---------------------------------
/* # sponsors */
.sponsors {
  transform: translateY(-200px); /* Shifts the element upwards */
  position: relative;/* Add position relative if overlapping is needed */
  background-color: white;
  text-align: center; /* Center the text content */
}

.sponsors {
  position: relative;
  transform: translateY(-80px);
}

.section-header-title-book{
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  color: black; /* Set title color to white */
  font-family: 'Poppins', sans-serif;
}

.sponsors img {
  
  display: block; /* Center the images */
  margin: 0 auto;
}

.work-text p{
  padding-top: 20px;
}

.sponsors-item h1,
.sponsors-item h3 {
  color: black; /* Set the text color to white */
  margin: 20px 0; /* Add margin for spacing */
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Styles for medium devices (tablets) */
@media (max-width: 991px) {
  .section-header-title-book {
    font-size: 35px; /* Slightly smaller for tablets */
  }

  .sponsors-item h1, .sponsors-item h3 {
    font-size: 18px; /* Adjust font size for tablet readability */
  }
}

/* Styles for small devices (mobile phones) */
@media (max-width: 767px) {
  .sponsors {
    transform: translateY(-10px); /* Adjust position for mobile */
  }

  .section-header-title-book {
    font-size: var(--fs-2xl); /* Even smaller font size for mobile phones */
  }

  .sponsors-item h1, .sponsors-item h3 {
    font-size: 16px; /* Adjust font size for mobile readability */
  }

  .sponsors img {
    width: 80%; /* Adjust image width for mobile screens */
    max-width: 100%; /* Ensure it's not bigger than its container */
  }

  /* Any additional adjustments for mobile layout */
}


@media (max-width: 768px) {
  .sponsors-item h1 {
    font-size: var(--fs-l); /* Adjust font size for smaller screens */
  }

  .sponsors-item h3{
    font-size: 12px;
  }

}

.sponsors-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center; /* Center the grid horizontally */
}

.sponsors-item {
  padding: 40px 30px;
  display: table;

  text-align: center;
}

@media (max-width: 991px) {
  .sponsors-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .sponsors-items {
    grid-template-columns: repeat(1, 1fr);
    gap:0px;
  }
  .sponsors-item img{
    height: 100px;
    width: 100px;
  }
}











/* # pricing */
.pricing{
  padding: var(--section-py) 0;
  margin-top: -200px;


  
  

}
.service-text{
  padding-top: 20px; 
  color: black;
  font-size: var(--fs-1xl)

}
.pricing-cards{
  max-width: 700px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: start;
  
}
.pricing-card{
  position: relative;
  background-color: whitesmoke;
}
.pricing-card:nth-child(2){
  margin-top: 80px;
}
.pricing-card .decor{
  position: absolute;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
  z-index: -1;
  transform: translate(-20%, -20%);
}
.pricing-card:nth-child(1) .decor{
  background-color: var(--bg-purple);
}
.pricing-card:nth-child(2) .decor{
  background-color: var(--bg-green);
}
.pricing-card .inner{
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid  whitesmoke
}
.inner h3{
  margin-right: 30px;
}
.pricing-card .title{
  text-transform: capitalize;
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--text-x-dark-gray);
}
.pricing-card ul{
  margin-top: 30px;
}
.pricing-card li{
  position: relative;
  padding-left: 30px;
}
.pricing-card li+li{
  margin-top: 8px;
}
.pricing-card li i{
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
}
.pricing-card .price{
  font-size: var(--fs-2xl);
  color: var(--text-x-dark-gray);
  font-weight: bold;
  margin-top: 30px;
}
.pricing-card .btn{
  margin-top: 20px;
  
}


.pricing-card .btn {
  width: 150px;
  padding: 10px;
  display: flex; /* Use flex display to center content */
  align-items: center; /* Center vertically */
  justify-content: center;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 767px) {
  .pricing-cards {
    grid-template-columns: 1fr; /* Stack pricing cards vertically */
    gap: 50px; /* Adjust the gap for smaller screens */
  }

  .pricing-card:nth-child(2) {
    margin-top: 40px; /* Reduce the top margin for the second card */
  }

  .pricing-card .inner {
    padding: 20px; /* Adjust padding for smaller screens */
  }

  .pricing-card .btn {
    width: 100%; /* Full-width button for easier interaction */
    padding: 8px; /* Slightly reduced padding */
  }

  .pricing-card .title, .pricing-card .price {
    font-size: var(--fs-xl); /* Adjust font size */
  }

  .pricing-card ul {
    margin-top: 20px; /* Adjust top margin for the list */
  }

  .pricing-card li {
    padding-left: 20px; /* Adjust left padding for list items */
    font-size: 14px;
  }
}



@media(max-width: 767px){
  .pricing-cards{
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
  .pricing-card:nth-child(2){
    margin-top: 0;
  }
}

.pricing-cards {
  max-width: 1000px; /* Adjusted for better spacing */
  margin: 0 auto; /* Centered in the container */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 40px; /* Adjusted gap */
}

/* Individual Pricing Card */
.pricing-card {
  background-color: whitesmoke;
  border: 1px solid whitesmoke;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Added shadow for depth */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr); /* Two columns for tablets */
    gap: 50px; /* Adjust the gap for tablets */
  }

 

  /* Adjust font sizes if necessary */
  .pricing-card .title {
    font-size: calc(var(--fs-2xl) * 0.9);
  }

  .pricing-card .price {
    font-size: calc(var(--fs-xl) * 0.9);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-cards {
    grid-template-columns: repeat(1, 1fr); /* Stack cards on smaller tablets and large phones */
    gap: 30px; /* Adjust the gap for small tablets and large phones */
  }

  .pricing-card:nth-child(2) {
    margin-top: 20px; /* Reduce margin top */
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
  .pricing-cards {
    grid-template-columns: 1fr; /* Full width for extra small devices */
    gap: 20px; /* Adjust the gap for small devices */
  }

  

  /* Adjust font sizes for readability on small screens */
  .pricing-card .title {
    font-size: calc(var(--fs-xl) * 0.8);
  }

  .pricing-card .price {
    font-size: calc(var(--fs-xl) * 0.8);
  }

  .pricing-card ul {
    margin-top: 15px; /* Adjust top margin for the list */
  }

  .pricing-card li {
    padding-left: 15px; /* Adjust left padding for list items */
  }

  .pricing-card .btn {
    width: auto; /* Auto width for button to fit content */
    padding: 5px 10px; /* Adjust padding for the button */
  }
}

/* Adjust the .pricing section itself for small devices */
@media (max-width: 575px) {
  .pricing {
    margin-top: 0; /* Adjust top margin to prevent negative space */
    padding: 50px 0; /* Adjust padding for a tighter layout */
  }
}







































/* # contact */
.contact{
  padding: var(--section-py) 0;
  
}
.contact-items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-item{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
}
.contact-item i{
   height: 50px;
   width: 50px;
   background-color: black;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
}
.contact-item h3{
  margin-bottom: 8px;
  color: white;
  text-transform: capitalize;
  font-size: var(--fs-xl);
  font-weight: 500;
}
.contact-item p{
  color: white;
}
.contact-form{
  margin-top: 50px;
}
.contact-form .col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
.contact-form .input-box{
  margin-bottom: 30px;
}
.contact-form .input::placeholder{
  color:rgb(178, 177, 177) ;
  text-transform: uppercase;
  opacity: 1;
}
.contact-form .input{
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  font-size: var(--fs-body);
  font-family: inherit;
  color:white;
}
.contact-form .input:focus{
  outline: none;
}
.contact-form .input-message{
  display: block;
  height: 120px;
  resize: none;
}

@media(max-width: 767px){
  .contact-items{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media(max-width: 575px){
  .contact-form .col-2{
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Set the background of the contact section to black */
.contact {
  background-color: black;
}

/* Style the send message button */
.btn-touch {
  background-color: white; /* Set button background to white */
  color: black; /* Set button text color to black */
  display: inline-block;
  padding: 10px 28px;
  font-weight: 500;
  font-size: var(--fs-body);
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5;
  font-family: inherit;
  user-select: none;
  z-index: 1;
  position: relative;
  border: none;
}


.btn-touch::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 1px solid #a22424;
  transform: translate(5px, 5px);
  z-index: -1;
  transition: transform 0.5s ease;
}
.btn-touch:hover::after{
  transform: translate(0, 0);
}

.btn-touch:hover {
  background-color: #a22424;
  color: white;
}


.section-header-title-touch{
  font-size: var(--fs-3xl);
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 100px;
  color: white; /* Set title color to white */
  font-family: 'Poppins', sans-serif;

}

.button-container {
  display: flex;
  align-items: center; /* Center items vertically */
  justify-content: flex-start; /* Align items to the left */
  gap: 40px; /* Spacing between the button and the image */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .contact-items {
    grid-template-columns: repeat(1, 1fr); /* Stack items vertically */
    
  }

  .contact-form .col-2 {
    grid-template-columns: 1fr; /* Full width input fields */
  }

  .contact-item {
    grid-template-columns: 1fr; /* Adjust grid layout */
    text-align: center; /* Center text for readability */
  }

  .contact-item i {
    margin: 0 auto; /* Center icons */
  }

  .contact-item h3 {
    font-size: var(--fs-lg); /* Adjust font size */
  }
}

/* Additional adjustments for smaller mobile screens */
@media (max-width: 575px) {
  

  .button-container {
    flex-direction: column; /* Stack button and image */
    align-items: center; /* Center align items */
    gap: 20px; /* Adjust gap */
  }

  .btn-touch {
    width: 100%; /* Full width button */
    padding: 10px 15px; /* Adjust padding */
  }

  .section-header-title-touch {
    font-size: var(--fs-2xl); /* Reduce font size for headers */
  }
}
----------------------------------------------
.about-filter {
  display: flex;
  justify-content: center; /* Center the filter items */
  gap: 20px; /* Spacing between items */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}
.section-header-title {
  /* Your styles for the section header title */
  text-align: center; /* Center the title */
}






/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .about-filter {
    justify-content: space-around; /* Distribute items evenly */
  }
}

@media (max-width: 480px) {
  .about-filter {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align items */
  }

  .filter-item {
    width: 100%; /* Full width for filter items */
    text-align: center; /* Center text */
    margin-bottom: 10px; /* Spacing between items */
  }
}
----------------------------------------------------------


.section-header {
  display: flex; /* Use flexbox */
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  text-align: center; /* Ensure the text is centered within the flex item */
}

.about-filter {
  display: flex;
  justify-content: center; /* Center filter items horizontally */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  gap: 10px; /* Optional: adds space between items */
  margin-top: 20px; /* Spacing from the title to the filter */
}

.filter-item {
  padding: 5px 15px; /* Padding inside each filter item */
  margin: 5px; /* Margin around each filter item */
  cursor: pointer;
}

----------------------------------------------
.about-filter {
  display: flex;
  justify-content: center;
  
}

.filter-item {
  margin: 0 10px;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
  font-weight:500px;
  display: inline-block;
  margin:0 5px 10px;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 400;
  color: black;
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
  
}

.about-filter .filter-item:hover:not(.active){
  opacity: 0.6;
}



/* Active class for when an item is selected */
.filter-item.active {
  background-color: #a22424;
  color: white;
  border-radius: 2px;
}







-----------------------------------------------------------


/*----------------- 
portfolio section 
---------------------*/

.portfolio-section section{
  padding: var(--section-py) 0;
  margin-top: -100px;
 
}
.portfolio-section {
  background-color:whitesmoke; /* Light grey background */
  padding: var(--section-py) 0;
}

.portfolio-section .portfolio-filter{
  padding:0 15px;
  flex:0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.portfolio-section .filter-item{
  display: inline-block;
  margin:0 5px 10px;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 400;
  color: black;
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
}
.portfolio-section .filter-item:hover:not(.active){
  opacity: 0.6;
}
.portfolio-section .filter-item.active{
  color: whitesmoke;
  background-color: #981717;
}




.portfolio-section .portfolio-items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.portfolio-section .portfolio-item{
  padding: 2px 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom:solid 1px rgb(210, 210, 210);
}
@media(max-width: 991px){
  .portfolio-section .portfolio-items{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 575px){
  .portfolio-section .portfolio-items{
    grid-template-columns: repeat(2, 1fr);
  }
}



.portfolio-section .portfolio-item.hide{
  display: none;
}
.portfolio-section .portfolio-item.show{
  display: block;
  animation: fadeInTop 0.5s ease;
}
.portfolio-section .portfolio-item-inner{
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
.portfolio-section .portfolio-item-img img{
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease;
}
.portfolio-section .portfolio-item-inner:hover .portfolio-item-img img{
  transform: translateY(-25px);
}
.portfolio-section .portfolio-item-img{
  position: relative;
}
.portfolio-section .portfolio-item-img .view-project{
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #981717;
  transition: all 0.3s ease;
  position: absolute;
  left:0;
  bottom:-4px;
  transform: translateY(-5px);
  z-index: -1;
  opacity:0;
}
.portfolio-section .portfolio-item-inner:hover .view-project{
  transform: translateY(0px);
  opacity:1;
}
.portfolio-section .portfolio-item-details{
  display: none;
}
.portfolio-section .portfolio-item-inner p{
  font-size: 16px;
  margin:10px 0 0;
  color: black;
  text-transform: capitalize;
}
/*---------------
 portfolio popup
 -----------------*/
 .portfolio-popup{
  background-color: whitesmoke;
  position: fixed;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
  opacity:0;
  visibility: hidden;
  transition: all 0.3s ease;
}









.portfolio-popup.open{
  visibility: visible;
  opacity: 1;
}
.portfolio-popup .pp-loader{
  position: fixed;
  left:0;
  top:0;
  height: 100%;
  width: 100%;
  z-index: 1005;
  background-color: var(--bg-opacity);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity:0;
}
.portfolio-popup .pp-loader.active{
  visibility: visible;
  opacity:1;
}
.portfolio-popup .pp-loader div{
  height: 40px;
  width: 40px;
  border:3px solid var(--skin-color);
  border-radius: 50%;
  border-right: 3px solid transparent;
  animation: spin 2s linear infinite;
}
.portfolio-popup .pp-details{
  max-width: 1350px;
  width: calc(85% + 30px);
  margin-left: 160px;
  max-height: 0;
  overflow: hidden;
  opacity:0;
  transition: all 0.5s ease;
}

.portfolio-popup .pp-details.active{
  opacity:1;
}
.portfolio-popup .pp-details-inner{
  padding:30px 0;
}
.portfolio-popup .pp-title{
  padding:0 15px;
}
.portfolio-popup .pp-title h2{
  font-size: 28px;
  color: var(--text-black-900);
  text-transform: capitalize;
  font-weight: 600;
  margin:0 0px 5px 0px;
}
.portfolio-popup .pp-title p{
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black-600);
  margin:0 0 15px;
  border-bottom: 1px solid var(--bg-black-100);
  padding-bottom: 10px;
}
.portfolio-popup .pp-title p span{
  font-weight: 400;
  text-transform: capitalize;
}
.portfolio-popup .pp-project-details h3{
  font-size: 20px;
  font-weight: 600;
  color: var(--text-black-700);
  margin:0 15 15px;
  text-transform: capitalize;
}
.portfolio-popup .description{
  flex:0 0 65%;
  max-width: 65%;
  padding:0 15px;
}
.portfolio-popup .description p{
  font-size: 16px;
  color: var(--text-black-600);
  line-height: 26px;
  margin:0;
}
.portfolio-popup .info{
  flex:0 0 35%;
  max-width: 35%;
  padding:0 15px;
}
.portfolio-popup .info ul li{
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-black-600);
  font-size: 16px;
}
.portfolio-popup .info ul li span{
  font-weight: 400;
}
.portfolio-popup .info ul li a{
  color: var(--skin-color);
}
.portfolio-popup .info ul li:last-child{
  margin-bottom:0;

}
.portfolio-popup .separator{
  height: 1px;
  width: 100%;
  display: block;
  background-color: rgb(234, 228, 228);
}
.portfolio-popup .pp-img{
  max-width:100%;
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}
.portfolio-popup .pp-main{
  min-height: 100vh;
  max-width: 1350px;
  width: 85%;
  margin:auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-popup .pp-main-inner{
  padding:70px 0 50px;
  position: relative;
}
.portfolio-popup .pp-project-details-btn{
  position: absolute;
  left:0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: whitesmoke;
  top:15px;
  cursor: pointer;
  padding:0 15px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  background-color: #0c0c0c;
}

.portfolio-popup .pp-project-details-btn {
    position: absolute;
    left: 0;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: whitesmoke;
    top: 15px;
    cursor: pointer;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #0d0d0d, #020202);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px black;
}

.portfolio-popup .pp-project-details-btn:hover {
    background: linear-gradient(45deg, #0b0b0b, #0a0a0a);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-popup .pp-project-details-btn:before {
  content: '';
  position: absolute;
  top: -10px; /* Slightly larger area for the pulse effect */
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 35px; /* Adjusted for the button's border-radius */
  border: 2px solid rgba(9, 9, 9, 0.7); /* Red border with some transparency */
  opacity: 1; /* Make it visible without hover */
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: pulse 2s infinite; /* Apply the animation continuously */
}

.portfolio-popup .pp-project-details-btn:hover:before {
  /* Optional: You can keep or remove the hover effect */
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}









.portfolio-popup .pp-project-details-btn i{
  margin-left: 40px;
}
.portfolio-popup .pp-project-details-btn:after{
  border-radius: 30px;
}
.portfolio-popup .pp-close{
  position: fixed;
  right:0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top:15px;
  right: 15px;
  text-align: center;
  line-height: 35px;
  font-size: 55px;
  color: #060606;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-popup .pp-close:after{
  border-radius: 50%;
}
.portfolio-popup .pp-counter{
  position: absolute;
  right: 0;
  height: 40px;
  line-height: 40px;
  bottom: 5px;
  font-size: 16px;
  color: var(--text-black-600);
}
.portfolio-popup .pp-prev,
.portfolio-popup .pp-next{
  position: fixed;
  top:50%;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 40px;
  cursor: pointer;
  z-index: 1010;
  color: #070707;
  transition: all 0.3s ease;
  
}
.portfolio-popup .pp-prev:hover,
.portfolio-popup .pp-next:hover{
  opacity:1;
}
.portfolio-popup .pp-prev i,
.portfolio-popup .pp-next i{
  line-height: 40px;
}
.portfolio-popup .pp-prev i{
  transform: rotate(180deg);
}
.portfolio-popup .pp-prev{
  left:15px;
}
.portfolio-popup .pp-next{
  right:15px;
}












/* Responsive adjustments */
@media (max-width: 1200px) {
  .portfolio-popup .pp-details {
    margin-left: 120px; /* Adjust margin for screens between 991px and 1200px */
  }
}

@media (max-width: 991px) {
  .portfolio-popup .pp-details {
    margin-left: 60px; /* Adjust margin for screens below 991px */
  }
}

/* To ensure that the width doesn't exceed the screen width */
@media (max-width: 575px) {
  .portfolio-popup .pp-details {
    max-width: 100%;
    width: 100%;
    margin-left: 0; /* Remove the left margin on smaller screens */
  }
}


/* Styles adjustments for tablets */
@media (max-width: 991px) {
  .portfolio-popup .pp-prev,
  .portfolio-popup .pp-next {
    height: 35px; /* Smaller height */
    width: 35px; /* Smaller width */
    font-size: 35px; /* Smaller font size */
    top: 45%; /* Adjust vertical position */
  }
  
  .portfolio-popup .pp-prev i,
  .portfolio-popup .pp-next i {
    line-height: 35px; /* Adjust line height for icon */
  }
  
  .portfolio-popup .pp-prev {
    left: 10px; /* Closer to the edge */
  }
  
  .portfolio-popup .pp-next {
    right: 10px; /* Closer to the edge */
  }
}

/* Styles adjustments for mobile phones */
@media (max-width: 767px) {
  .portfolio-popup .pp-prev,
  .portfolio-popup .pp-next {
    height: 30px; /* Even smaller height */
    width: 30px; /* Even smaller width */
    font-size: 20px; /* Even smaller font size */
    top: 40%; /* Higher up to avoid thumbs */
  }
  
  .portfolio-popup .pp-prev i,
  .portfolio-popup .pp-next i {
    line-height: 30px; /* Adjust line height for icon */
  }
  
  .portfolio-popup .pp-prev {
    left: 4px; /* Even closer to the edge */
  }
  
  .portfolio-popup .pp-next {
    right: 5px; /* Even closer to the edge */
  }
  
  /* Optionally hide arrows on very small screens */
  .portfolio-popup .pp-prev,
  .portfolio-popup .pp-next {
    display: none;
  }
}




.portfolio-popup .pp-project-details h3 {
  font-size: 1.25rem; /* 20px */
  /* Other styles remain unchanged */
}

.portfolio-popup .description, .portfolio-popup .info {
  padding: 0 15px;
}

.portfolio-popup .description p, .portfolio-popup .info ul li {
  font-size: 1rem; /* 16px */
  /* Other styles remain unchanged */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* Tablet and below */
  .portfolio-popup .description, .portfolio-popup .info {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .portfolio-popup .pp-project-details h3 {
      font-size: 1.1rem; /* Slightly smaller */
  }

  .portfolio-popup .description p, .portfolio-popup .info ul li {
      font-size: 0.9rem; /* Slightly smaller */
  }
}

@media (max-width: 480px) { /* Mobile */
  .portfolio-popup .pp-project-details h3 {
      font-size: 1rem; /* Even smaller */
  }

  .portfolio-popup .description p, .portfolio-popup .info ul li {
      font-size: 0.8rem; /* Even smaller */
  }
}

.portfolio-popup .pp-close {
  position: fixed;
  right: 0;
  height: 40px;
  width: 40px;
  bottom: 15px;
  right: 30px;
  text-align: center;
  line-height: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  background-color: #141313;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

.portfolio-popup .pp-close:hover {
  color: #fff; /* White text on hover */
  background-color: #302e2e; /* Red background on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Larger shadow on hover */
  transform: scale(1.1); /* Slightly larger on hover */
}

.portfolio-popup .pp-close:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px solid #000000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-popup .pp-close:hover:before {
  opacity: 1;
  transform: scale(1.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
  100% {
      transform: scale(1);
  }
}


@media (max-width: 480px) {
  .portfolio-popup .pp-close {
      width: 35px; /* Slightly smaller width */
      height: 35px; /* Slightly smaller height */
      font-size: 40px; /* Smaller font size for the icon */
      bottom: 10px;
      right: 15px;
  }

  .portfolio-popup .pp-close:before {
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
  }

  .portfolio-popup .pp-close:hover {
      transform: scale(1.05); /* Smaller scale effect */
  }
}















/* # footer */
.footer{
  border-top: 1px solid var(--border-dark);
  padding: 15px 0;
  background-color: whitesmoke;
}
.footer-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-social{
  margin: 15px 15px 15px 0;
}
.footer-social a{
  height: 60px;
  width: 60px;
  border: 1px solid var(--main-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
  font-size: 30px;
  background-color: #981717;
}



.footer-social a:hover{
  background-color: white;
  color: #981717;
}

@media (max-width: 575px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin: 15px auto; /* Centering the social icons */
  }

  .footer-social a {
    height: 40px; /* Smaller size for icons */
    width: 40px; /* Smaller size for icons */
    font-size: 24px; /* Smaller icon size */
  }
}












@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

html{
  scroll-behavior: smooth;
}


.wrapper{
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
  margin-top: 50px;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.wrapper .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: whitesmoke;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .row{
  display: flex;
}
.wrapper .row-1{
  justify-content: flex-start;
}
.wrapper .row-2{
  justify-content: flex-end;
}
.wrapper .row section{
  background: whitesmoke;
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}
.wrapper .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: whitesmoke;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color:#a22424;
  font-size: 17px;
  box-shadow: 0 0 0 4px whitesmoke, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
  color:black;
  background-color: whitesmoke;
  
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
  font-size: 22px;
  font-weight: 500;
}
.row section p{
  margin: 10px 0 17px 0;
}
.row section .bottom a{
  text-decoration: none;
  background: #981717;
  color: whitesmoke;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
  
}
.row section .bottom a:hover{
  transform: scale(0.97);
}
@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon{
    left: -60px;
  }
}
@media(max-width: 440px){
  .wrapper .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper .row{
    margin: 10px 0;
  }
}
/* Responsive adjustments for mobile screens */
@media(max-width: 767px) {
  .wrapper {
    margin: 20px auto;
    padding: 0 10px;
  }

  .wrapper .center-line {
    left: 20px;
    width: 2px;
  }

  .wrapper .row {
    flex-direction: column;
    margin: 10px 0;
  }

  .wrapper .row section {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .wrapper .row-1, 
  .wrapper .row-2 {
    justify-content: center;
  }

  .row-1 section::before, 
  .row-2 section::before {
    left: 20px;
    top: 10px;
  }

  .row section .icon {
    top: -30px;
    right: auto;
    left: 20px;
  }

  .row section .details,
  .row section .bottom {
    flex-direction: column;
    align-items: center;
  }

  .row section .details .title {
    font-size: 18px;
  }

  .row section p {
    margin: 10px 0;
  }

  .row section .bottom a {
    padding: 5px 10px;
    font-size: 15px;
  }
}


/* Base styles and variables */
:root {
   /* Example variable for vertical padding */
  --primary-color: #a22424; /* Primary color variable */
  --star-color: #a52424; /* Star color variable */
}

/* Testimonial section styling */
.test {
  padding: var(--section-py) 0;
  background-color: whitesmoke;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

::selection{
  background: #a22424;
}
.test{
  background-color: white;
}


.wrapper-t{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.wrapper-t .box{
  background: whitesmoke;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}
.wrapper-t .box i.quote{
  font-size: 20px;
  color:#a22424;
}
.wrapper-t .box .content{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.box .info .name{
  font-weight: 600;
  font-size: 17px;
}
.box .info .job{
  font-size: 16px;
  font-weight: 500;
  color: #a22424;
}
.box .info .stars{
  margin-top: 2px;
}
.box .info .stars i{
  color: #a52424;
}
.box .content .image{
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #a22424;
  border-radius: 50%;
}
.content .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid whitesmoke;
}
.box:hover .content .image img{
  border-color: whitesmoke;
}

.small-boxes-container{
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 40px;
}

/* Testimonial wrapper adjustments */
.wrapper-t {
  display: flex;
  flex-direction: column; /* Stack the boxes in a column */
  align-items: center; /* Center align the boxes */
  gap: 30px; /* Spacing between boxes */
}

.wrapper-t p{
  text-align: left;
}
.wrapper-t .box:nth-of-type(2) .content {
  margin-top: 100px; /* Increase this value to push content lower */
}

/* Adjust the first two boxes to be full width */
.wrapper-t .box:first-child,
.wrapper-t .box:nth-child(2) {
  width: calc(105% - 45px); /* Full width minus padding */
}

/* Adjust the third (large) box */
.wrapper-t .box:nth-child(3) {
  width: calc(100% - 40px); /* Full width minus padding */
  order: -1; /* Place it first in the visual order */
}

.wrapper-t .box:hover {
  transform: scale(1.05); /* Slightly enlarge the box */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); /* Add a deeper shadow for a 'lifted' effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for the transform and shadow */
}







.center-container {
 

 
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  gap: 30px; /* Adjust the space between elements as needed */
  padding: 120px 0; /* Add some padding at the top and bottom */
  

  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  
}

.headertitle{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: var(--fs-3xl);

}



/* Responsive adjustments */
@media (max-width: 767px) {
  .wrapper-t {
    flex-direction: column; /* Stack the boxes in a column */
    padding: 0 10px; /* Reduce padding on smaller screens */
  }

  .wrapper-t .box {
    width: 100%; /* Full width for all boxes on mobile */
    margin-bottom: 20px; /* Add some space between the boxes */
  }

  .wrapper-t .box .content {
    flex-direction: column; /* Stack content vertically inside each box */
    align-items: center; /* Center the content */
  }

  .box .info .name,
  .box .info .job,
  .box .info .stars {
    text-align: center; /* Center text for name, job title, and stars */
  }

  .box .content .image {
    height: 60px; /* Adjust image size */
    width: 60px; /* Adjust image size */
    margin-bottom: 10px; /* Add space between image and text */
  }

  .box .info .stars {
    justify-content: center; /* Center the stars */
  }

  .box .info .stars i {
    font-size: 14px; /* Adjust star size */
  }
  
  /* Adjust the heading */
  .center-container {
    padding: 60px 0; /* Less padding on top and bottom */
  }

  .headertitle {
    margin-bottom: 20px; /* Adjust spacing */
    text-align: center; /* Center title text */
    font-size: var(--fs-2xl); /* Adjust font size */
  }
  
  /* Ensure that the small boxes container allows wrapping */
  .small-boxes-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Further adjustments for even smaller screens */
@media (max-width: 480px) {
  .wrapper-t .box {
    padding: 15px; /* Less padding for very small screens */
  }
  
  /* You may want to make the text even smaller and adjust other properties as needed */
}




















---------------education-------------
.certificates-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.certificate-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px; /* Space between rows */
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid black;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color:whitesmoke;
}

.certificate-logo {
  width: 50px; /* Adjust size as needed */
  height: auto;
  border: none; /* Remove border if logos have their own */
}

.certificate-item p {
  margin: 0;
  font-size: 15px; /* Adjust size as needed */
}

@media (max-width: 768px) {
  .certificate-row {
      flex-direction: column;
      align-items: center;
  }

  .certificate-item {
      width: 100%; /* Full width for smaller screens */
  }
}



--------------experience-----------------

.experience-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 70px;
}

.experience-row {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between items */
  margin-bottom: 20px; /* Space between rows */
  
}

.experience-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-basis: calc(50% - 10px); /* Adjust the width to 50% minus half of the gap */
  align-items: center; /* Center the item vertically */
  border: 1px solid black;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color: whitesmoke;
}


.experience-text p {
  margin: 0;
  font-size: 15px;
}



.experience-section{
  margin-bottom: 30px;
  margin-top: 70px;
}

@media (max-width: 768px) {
  .experience-row {
      flex-direction: column;
  }
  .experience-item {
      flex-basis: auto; /* Full width on smaller screens */
  }
}




-------------skills------------------------

.grid-container {
  display: flex;
  flex-direction: column; /* Stack the row elements vertically */
  align-items: center; /* Center the row elements horizontally */
  gap: 10px;
  padding: 10px;
  font-family: 'Poppins', sans-serif ;
  font-weight: 500px;
}

.row {
  display: flex;
  width: 100%; /* Full width to align the flex children */
  justify-content: center; /* Center the items within the row */
  gap: 10px; /* Keep the gap consistent */
  margin-bottom: 20px;
}

.grid-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  padding: 10px 15px; /* This padding will apply to all items */
  height: 50px; /* Consistent height for all items */
  box-sizing: border-box; /* Ensures padding is included in the width/height */
  background-color: whitesmoke; /* Set background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Box shadow for styling */
}
.title {
  /* flex-basis: 100%; Removed to not force the title to take full width */
  text-align: left; /* Align text to the left */
  align-self: flex-start; /* Align the title to the start of the flex container */
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500; /* font-weight doesn't have 'px', it's a unitless value */
  margin: 0;
  height: auto; /* Allows the title to have a height based on its content */
  padding-left: 10px; /* Add padding to align with the grid items if needed */
}




-----------tools-----------------
.tools-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  font-family: 'Poppins', sans-serif ;
}

.tools-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tool-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  padding: 10px 15px; /* This padding will apply to all items */
  height: 50px; /* Consistent height for all items */
  box-sizing: border-box; /* Ensures padding is included in the width/height */
  background-color: whitesmoke; /* Set background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Box shadow for styling */

}

.title {
  text-align: left; /* Align text to the left */
  align-self: flex-start; /* Align the title to the start of the flex container */
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500; /* font-weight doesn't have 'px', it's a unitless value */
  margin: 0;
  height: auto; /* Allows the title to have a height based on its content */
  padding-left: 10px; /* Add padding to align with the grid items if needed */
  
}


------------tech---------------
.technical-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  font-family: 'Poppins', sans-serif ;
}

.technical-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;

}

.technical-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  padding: 10px 15px; /* This padding will apply to all items */
  height: 50px; /* Consistent height for all items */
  box-sizing: border-box; /* Ensures padding is included in the width/height */
  background-color: whitesmoke; /* Set background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Box shadow for styling */

}

.title {
  text-align: left; /* Align text to the left */
  align-self: flex-start; /* Align the title to the start of the flex container */
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500; /* font-weight doesn't have 'px', it's a unitless value */
  margin: 0;
  height: auto; /* Allows the title to have a height based on its content */
  padding-left: 10px; /* Add padding to align with the grid items if needed */
  
}



.glow {
  color: #981717; /* Text color */
  text-shadow: 0 0 10px #fff, /* White glow */
              0 0 20px #fff, /* Larger white glow */
              0 0 30px #fff, /* Even larger white glow */
              0 0 40px #fff; /* Largest white glow */
 font-weight: 600px;
}







/* Responsive styles */
@media (max-width: 768px) {
  .certificate-row,
  .experience-row,
  .row,
  .tools-row,
  .technical-row {
    /* Stack items vertically */
    flex-direction: column;
    align-items: center;
  }

  .certificate-item,
  .experience-item,
  .grid-item,
  .tool-item,
  .technical-item {
    /* Full width for smaller screens */
    width: 100%;
    /* Adjust padding if necessary for smaller screens */
    padding: 10px;
  }

  .certificate-item p,
  .experience-text p {
    /* Adjust font size for smaller screens */
    font-size: 14px;
  }

  /* Adjust title font size for smaller screens */
  .section-header-title-about,
  .section-header-title-work,
  .skills-section h1 {
    font-size: 30px;
  }

  /* Adjust text for work section for smaller screens */
  .work-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* Further font size adjustments for very small screens */
  .section-header-title-about,
  .section-header-title-work,
  .skills-section h1 {
    font-size: 24px;
  }

  .work-text,
  .certificate-item p,
  .experience-text p {
    font-size: 13px;
  }
}

/* Additional global font size adjustments */
@media (max-width: 768px) {
  :root {
    --fs-1xl: 16px;
    --fs-3xl: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-1xl: 14px;
    --fs-3xl: 24px;
  }
}

/* Adjust the glow effect for smaller screens if necessary */


@media (max-width: 768px) {
  .glow {
    /* Adjust the glow effect size if necessary */
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff;
  }
}








/* Base styles for larger screens */

/* Responsive adjustments for tablet screens (about 768px to 991px) */
@media (max-width: 991px) {
  .performers-itemss, .skills-container {
    grid-template-columns: repeat(1, 1fr); /* Adjust to single column */
    gap: 20px;
  }

  .performers-item:nth-child(even) {
    margin-top: 100px; /* Adjust margin */
  }

  .skills-category h3, .text-content-s, .text-content {
    font-size: 18px; /* Adjust font size */
  }
}

/* Responsive adjustments for mobile phones (up to 767px) */
@media (max-width: 767px) {
  .performers {
    margin-top: 10px; /* Adjust top margin */
    padding: 10px; /* Adjust padding */
  }

   .education-section h1, .experience-section h1, .skills-section h1 {
    font-size: 18px; /* Reduce font size */
  }
  .section-header-title-work{
    font-size: var(--fs-2xl);

  }

  .work-text, .text-content, .text-content-s {
    font-size: 15px; /* Adjust text font size for readability */
  }

  .performers-itemss, .skills-container {
    column-gap: 30px; /* Adjust column gap */
  }

  .performers-item:nth-child(even) {
    margin-top: 50px; /* Adjust margin */
  }

}
