
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e43c5c;
  text-decoration: none;
}

a:hover {
  color: #ea6981;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e43c5c;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e9607a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  /* border: 1px solid red; */

}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9) !important;
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}


.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 15px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #e43c5c;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #493c3e;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e43c5c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.social-links {

  display: flex; /* Ensures they're in a flex container */
  justify-content: flex-end; /* Pushes the children to the right of their container */
  align-items: center; /* Vertically centers the icons in case there are differences in height */
  /* margin-right: 10px;  */
  padding: 0 !important;

}

.social-links a {
  margin-left: 5px;
  line-height: normal;

}

.social-links a i {
  line-height: normal;
  font-size: 1.6rem !important;  /* increase from default, adjust as needed */

}

.social-links a  .phone {
  font-size: 1.35rem !important;
}




@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/* Assuming the breakpoint is 768px for tablets and below */
@media (max-width: 868px) {
  /* Flex container adjustments */
  .container.d-flex.align-items-center.justify-content-between {
      flex-direction: row; /* Maintain the standard row direction */
  }

video {
  display: none;
}
.video-container {
  background: url("../../background-mobile.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  width: 100%; /* Makes the container full width */
  height: 100vh; /* Makes the container full viewport height */
}

  /* Positioning the logo on the left */
  h1.logo {
      order: 1; /* Ensures it's on the left side */
      flex-grow: 1; /* Allows it to take available space pushing everything else to the right */
  }

  /* Adjusting the size and position of the social icons */
  .social-links {
      order: 2; /* Places the icons before the toggle */
      display: flex; /* Ensures they're in a flex container */
      justify-content: flex-end; /* Pushes the children to the right of their container */
      align-items: center; /* Vertically centers the icons in case there are differences in height */
      margin-right: 10px; /* Spacing between icons and toggle button */
  }

  .links-footer {
    justify-content: center !important;
  }
 

  .social-links a i {
      font-size: 18px; /* Smaller icon size */
  }

  /* Positioning the navbar */
  #navbar.navbar {
      order: 3; /* Ensures the menu comes last */
  }
}



@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 37, 38, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #493c3e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e43c5c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e43c5c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../../background.mov") top center; */
  /* background: url("../../wp4748437.jpg") center center; */
  background-size: cover; /* Change from cover to contain */
  background-repeat: no-repeat; /* Ensure the image doesn’t repeat */
  position: relative;
  clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%); 
  /* border: 2px solid greenyellow; */
  background-image: url("5.jpg");
  z-index: 99;
}


.video-container  {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  position: fixed; }


video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  overflow: hidden;
  object-fit: cover;
  display: none;
}
#mobile-background {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: none;
}

#hero:before {
  content: "";


  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
 
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;


background: radial-gradient(
  circle at top,
  rgba(0, 0, 0, 0.7) 0%,
  transparent 100%
);


}

.about-me-text {
  min-height: 35% !important;
  margin-top: 13%;
  min-width: 65%;
  max-width: 69% !important;
  padding-left: 60px;
  text-align: left;
  font-family:  monospace;
 /* color: #dcdcdc; /* Default text color */
  color: #ffffff; /* Default text color */
  
  font-size: 18px;
}

.variable {
  color: #569cd6; /* Python variable color */
}

.operator {
  color: #dcdcdc; /* Python operator color */
}

.string {
  color: #d28567; /* Python string color */
}

.btn-get-started {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #569cd6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-left: 18%;
}

.btn-get-started:hover {
  background-color: #3f7bbf;
}





.neural-network {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px auto;
}

.layer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.neuron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #569cd6;
  margin: 10px;
  animation: pulse 2s infinite;
}

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

/* ----------------------------*/

.container {
  padding: 0px 50px ;
}

.image-container {
  min-width: 35%;
  /* border: 2px solid blue; */
  
  
}

.image-container img {
  width: 300px;
  height: 300px;
  /* border-radius: 50%; */
  /* border: 2px solid rgb(0, 255, 47); */
  float: left;
}

#hero h3 {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  padding: 10px 50px;
  margin-bottom: 30px !important;
  border-radius: 50px;
  width: fit-content;
  margin: auto;
  /* border: 1px solid greenyellow; */
  

}

    .animate__delay-9s {
        animation-delay: 9s;
    }




#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  min-height: fit-content;
}

#hero h2 {
  color: #eee;
  margin-bottom: 20px;
  font-size: 24px;
  min-height: fit-content;
 

  /* border: 1px solid red;*/
} 

#description {
  height: 30px;
  
}
#second-sentence {
  height: 60px;
  margin-bottom: 2%;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
  margin-top: 5%;
}

#hero .btn-get-started:hover {
  background: #e43c5c;
  border: 2px solid #e43c5c;
}


#work-experience {
  font-family: Arial, sans-serif;
}
.experience {
  display: flex;
  align-items: center;
}
.job {
  margin: 0 20px;
}
.arrow {
  display: flex;
  align-items: center;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }


  
}

@media (max-width: 768px) {

  


   .row {
    

    margin-left: 0px !important;
    
   }

    .imperial-description {
      max-width: 100% !important;
    }

    .imperial-section {
      max-width: 100% !important;
    }

    .imperial-logo {
      margin-top: 0px;
    }

    .machine-learning {
      /* max-width: 100% !important; */

    }
    
    .description-wide{
      width: 100% !important;
    }

    

    .python-certifications {
      max-width: 100% !important; 
    }

    .skill-wide {
      max-width: 100% !important;
    }
    .skill-logo {
      max-width: 40% !important;
    }


    .portfolio-nav {
      
      max-width: 100%;
    }

    .portfolio #portfolio-flters {
      max-width: 100% !important;
      
      flex-wrap: wrap;
      padding: 10px !important;
    }

    .data-filter {
      max-width: 20%;
    }

    #portfolio-flters li {
      
      /* max-width: 50% !important; */
      text-align: center;
      margin: 0px;
      margin-bottom: 0px !important;
      align-content: space-evenly;
      /* line-height: 0; */
    }

    .section-title .journey {
      text-align: justify !important;
      width: 100% !important;}


  .job {
    margin: 0px;
}
  .container {
    padding: 0px ;
  }

  .python-certifications {
    flex-direction: column;
  }
  .certification-image {
    max-width: 100% !important;
    height: auto;
}
  section {
    padding: 20px !important;
  }

  #hero .hero-container {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

  }
  #hero {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); 
  }

  .about-me-text {
    min-width: 99%;
    padding-left: 0px !important;
    /* border: 1px solid red; */
  }

  .about-me-text span {
   /* border: 1px solid yellow; */
  }

  #hero h3 {
    font-size: 22px;
    width: 100% !important;

    
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    /* margin-bottom: 30px; */
    max-width: 95% !important;
  }

  .btn-get-started {
    margin-top: 0px;
    margin: 0;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}


/* .python-certifications {
  display: flex;             
  gap: 20px;                
  padding: 0px 15px 15px 15px;          
  justify-content: center;    
} */



.python-certifications {
  position: relative;
  max-width: 50%;
  margin: auto;
 
  overflow: hidden; /* Ensures images stay within the red border */
   margin-top: 6%; 
}

.slides {
  display: flex;
  width: 100%; /* Adjusted to fit two slides side by side */
  transition: transform 0.5s ease;
}

.slide {
  width: 100%; /* Ensures each slide takes the full width of the container */
  flex-shrink: 0; /* Prevents the slides from shrinking */
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.certification-image {
  max-width: 95%;
  height: auto;
}

input[type="radio"] {
  display: none;
}

#slide1:checked ~ .slides {
  transform: translateX(0);
}

#slide2:checked ~ .slides {
  transform: translateX(-100%); /* Shift to show the second image */
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.navigation label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

#slide1:checked ~ .navigation label[for="slide1"],
#slide2:checked ~ .navigation label[for="slide2"] {
  background-color: #333;
}




.skill-logo {
  max-width: 40%;
  margin: auto;
  margin-top: 5%;

}


.powershell-logo {

}

.imperial-python-libraries {

}

.command-line {
  justify-content: center !important;
  /* margin-right: 2%; */
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px  ;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  /* text-align: center; */
  padding-bottom: 30px;
 
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  margin: 0;
  background: #fdeff2;
  color: #e43c5c;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
 
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.section-title h3 span {
  color: #e43c5c;
}

.section-title .journey {
  margin: 15px auto 0 auto;
  font-weight: 550;
  font-size: 1.2rem;
text-align: center;
  width: 80%;
}

@media (min-width: 1024px) {
  .section-title p {
    /* width: 50%; */
  }
}

.mom-container  {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  align-content: center;
}

.mom-video {
min-width: 70% !important; 
    min-width: 55% !important;
    max-width: 70% !important;
  
    object-fit: contain;
     position:  relative !important; 
     margin: auto !important;
     margin-top: 0px !important;
     display: block;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}



.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #e43c5c;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #e43c5c;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #e43c5c;
}

.about .content .btn-learn-more:hover {
  background: #e43c5c;
  color: #fff;
  text-decoration: none;
}


.about-p {
  font-size: 1.2rem;
  font-style: italic;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #fdeff2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #e43c5c;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #e43c5c;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #493c3e;
  transition: ease-in-out 0.3s;
}

.features .icon-box:hover a {
  color: #e43c5c;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.8)), url("./portfolio-background.webp") center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #e43c5c;
  border: 2px solid #e43c5c;
}

@media (min-width: 1024px) {
  .cta {
    background-attachment: fixed;
  }
}

/* /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/* .portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 7px 17px 9px 17px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #ede9e9;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #e43c5c;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #e43c5c;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #f7c2cc;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
} */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/* .portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e43c5c;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e43c5c;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(73, 60, 62, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
} */ 


.portfolio #portfolio-flters {
  padding: 0px ;
  /* margin: 0 auto 35px auto; */
  /* list-style: none; */
  /* text-align: center; */
  background: #dbd5d5;
  box-shadow: 0px 2px 15px rgba(183, 179, 179, 0.1);
  border-radius: 50px;
  display: flex;
  color: rgb(31, 28, 28);
  justify-content: center;
  align-items: center;


}


.project {

  justify-content: center;
  align-items: center;
  }
  
  
  .project img {
    width: 50%;
    height: auto;
  
  }
  

.project h3 {
  width: 100%;
  float: left;


}


.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: rgb(96, 80, 80);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #e2516c;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}






.scraper-title, .scraper-heading {
  color: #333;
}
.scraper-container {
  padding: 20px;
background-color: #f4f4f4;
margin: 0 auto;
max-width: 900px;
}
.scraper-description p {
margin-bottom: 15px;
}
.scraper-features ul {
margin: 20px 0;
padding-left: 20px;
}
.scraper-features li {
margin-bottom: 10px;
}
.scraper-code {
background-color: #eef;
padding: 10px;
border-radius: 6px;
overflow-x: auto;
font-family: monospace;
}
.scraper-btn-group {
text-align: center;
margin: 30px 0;
}
.scraper-btn-group a {
text-decoration: none;
padding: 10px 20px;
background-color: #007BFF;
color: white;
border-radius: 5px;
margin: 5px;
display: inline-block;
}
.scraper-btn-group a:hover {
background-color: #0056b3;
}





.header {
  text-align: center;
  padding: 20px;
  background-color: #4CAF50;
  color: white;
}
/* 
.header h1 {
  margin: 0;
  font-size: 2.5rem;
} */

.projects {
  max-width: 95%;
  margin: 0 auto;
  padding: 20px;
}

.project {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;

  justify-content: center;
}



.project h2 {
  font-size: 1.5rem;
  color: #333;
  float: left !important;
}


.project img {
  max-width: 100%;
  border-radius: 5px;
}

.technologies {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.technologies ul {
  list-style-type: none;
  padding: 0;
}

.technologies li {
  font-size: 1.1rem;
  margin: 8px 0;
}













.portfolio-container {
  padding: 0; /* Ensure no padding on the container */
  margin: 0 auto; /* Center if necessary, remove margin */
}
.portfolio-item {
  box-sizing: border-box;
}






/* Filter buttons */
#portfolio-flters {
  list-style: none;
  display: flex;
  gap: 15px;
  cursor: pointer;
}

#portfolio-flters li {
  padding: 10px 20px;

  transition: background-color 0.3s ease;
}


/* Portfolio Grid */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust grid */
  gap: 15px;
  padding: 20px 0;
}

.project-list-item {
  display: block;

  
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.project-list-item.hide {
  display: none; /* Hide non-filtered items */
}

/* Hover effects ADD THIS FOR THE ONES THAT DO NOT HAVE MOBILE EFFECT */
.project-list-item:hover {
  transform: scale(1.05);
}

/* Portfolio Images */











/* Add transition effect to portfolio items */

























/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q


/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #f1eeef;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #e43c5c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #d01d3f;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #e43c5c;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (min-width: 1280px) {
  .faq .container {
    padding: 0 120px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #e43c5c;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #493c3e;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #816a6e;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #e43c5c;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #e43c5c;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #d01d3f;
}

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

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


.mt-5 {
  margin-top: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f4f4;
  margin-top: 67px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 50px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #655356;
  content: "/";
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #493c3e;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #e43c5c;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #b1a0a3;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e43c5c;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #e7526f;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #493c3e;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #9a8487;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #57484a;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e43c5c;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #493c3e;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(73, 60, 62, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e43c5c;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #493c3e;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #655356;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f096a7;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f096a7;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #493c3e;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #57484a;
}

.blog .blog-pagination {
  color: #816a6e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #493c3e;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #e43c5c;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #493c3e;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e43c5c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #e64e6b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #493c3e;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #e43c5c;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #493c3e;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #e43c5c;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #8e767a;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #f6f4f4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e43c5c;
  background: #e43c5c;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #dfd8d9;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f6f4f4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ea6981;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #e43c5c;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #f7c2cc;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 15px;
  padding: 0 22px;
  background: #e43c5c;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #d01d3f;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e43c5c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #d01d3f;
  color: #fff;
  text-decoration: none;
}

.d-md-flex {
  justify-content: center;
}
/*----------------------PORTOFOLIO----------------------------------*/
.project-overview-container {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
   /* background-image: url("./images/portofolio-background2.png");  */
  background-image: url("./portfolio-background.webp");
  
  background-size: cover;  
  background-repeat: no-repeat;
  background-position: center; 
  overflow-x: hidden;
  
}

.project-page-title {
  font-size: 1.4em;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  margin-bottom: 20px;
  background: #fdeff2;
  /* color: #e43c5b; */
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;

  ;
}



.project-list {
    display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center; /* Centers items horizontally */
  align-items: center; /* Centers items vertically 
  ;  /* This will center the items */
  width: 100%;
  max-width: 95%;
  /* border: 3px solid yellow; */
  
  
}

.project-list-item {
  
  flex: 1 1 calc(30% - 20px); /* For 3 items per row */
  max-width: calc(30% - 20px); /* Ensure max-width is also set */
  /* border: 1px solid red; */
  transition: all 0.3s;
  margin: 20px;
}

.project-tile {
  position: relative;
  height: 425px;
  cursor: pointer;
  /* border: 1px solid yellow; */
  z-index: 1;

}

.project-image {
  width: 100%;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
}

.desktop-version {
  height: 47%;
  opacity: 1;
}

.mobile-version {
  width: 47%;
  height: 65%;
  opacity: 0;
  left: 25%;
  top: -12%;
}

.mobile-version:last-of-type {
  z-index: 99;
}


.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height:53%;
  background: linear-gradient(to top, rgba(2, 26, 53, 0.849), rgba(2, 26, 53, 0.849) 70%, rgba(2, 26, 53, 0));
  color: #ffffff;
  padding: 5px 10px 10px;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.project-tile:hover .desktop-version {
  opacity: 0;
}

.project-tile:hover .mobile-version {
  opacity: 1;
}

.project-data:hover .desktop-version {
  opacity: 1 !important;
}
.project-data:hover .mobile-version {
  opacity: 0 !important;
}




.project-content h2.title {
  font-size: 1.5rem;
  text-align: center;
  margin: 5px 0;
  color: #ffffff;
}

.project-content h3.subtitle {
  font-size: 1rem;
  text-align: center;
  font-weight: lighter;
  margin-bottom: 5px;
  color: #ffffff;
  font-style: italic;
}

.project-content p.summary {
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  max-width: 100%;
  margin: 0 auto;
}

.project-links {
  display: flex;
  justify-content: center;
}

.btn {
  padding: 3px 12px;
  margin: 5px;
  background-color: #ffffffad;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e43c5c;
}


/* Custom CSS to increase modal size */
.modal-dialog {
  max-width: 85%; /* You can set this to whatever percentage or pixel value you prefer */
  height: 89%;   /* Adjust this value as well */
}

.modal-content {
  height: 100%;  /* This makes sure that the content takes up the full height of .modal-dialog */
}

.modal-header , .modal-footer {
  background-image: linear-gradient(to right, #082b53, #0680a5);
}

.modal-title {
  color: white;
  font-size: 1.7rem;
  line-height: 0;
}

.modal-footer {
  padding: 5px !important;
}
.modal-body h2 {
  text-align: center;
}

/* END OF PORTOFOLIO */
.custom-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.custom-link:hover {
  text-shadow: 2px 2px 5px rgba(128, 128, 128, 0.5); /* Gray transparent shadow */
  color: #e43c5c !important;
}

/* END OF PORTOFOLIO */

/* ---------CV-------- */
.cv-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.cv {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  gap: 10px;
}

.cv:hover {
  background-color: #e43c5c;
}

.cv i {
  margin-right: 10px;
}


/* SKILLS */
.languages {
  font-weight: normal !important;
  font-size: 1.2em !important;
}

 .languages i {
  
  font-size: 20px;
  color: #e43c5c;
  line-height: 1;
  
} 


.row h4 {

  color: #e43c5c;
  margin: 15px 0 0 0;
  font-size: 20px;
  font-weight: 700;
}

.machine-learning  {
align-content: center;
align-items: center;
}


.uni-logo {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}

.uni-image {

 
}

#preloader {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-wrapper {
  width: 300px;
  text-align: center;
}

.loader-bar {
  width: 100%;
  height: 10px;
  background: #222;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

#loader-fill {
  width: 0%;
  height: 100%;
  background: #00aaff;
  transition: width 0.2s ease;
}

#loader-text {
  color: white;
  font-size: 14px;
  margin: 0;
}

.imperial-logo {
  margin-top: 3%;
}

.imperial-description {
  max-width:50%;
  
}

.imperial-section {
  max-width: 50%;

}


.skill-wide {
  max-width: 40% ;
}

.description-wide {
  max-width: 60% ;
}


.imperial-python-libraries {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: auto;
  align-items: center;
}
.imperial-python-libraries img {
  max-width: 20%;
  padding: 0px 10px  0px 10px;
  height: fit-content;
  /* border: 1px solid red; */
}


.soft-skills {
  display: flex;
  margin: auto !important;
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.soft-skills p {
  text-align: left !important;
}


.library {
  height: auto;
}
/* 
.languages li {
  font-size: medium !important;
} */

#services {
  padding-bottom: 0px;
  border-top: 1px solid black;
}
/* About section */
#services h2 {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .services h3 {
    text-align: center;
    color: #e43c5c;
  }
  /* .description {
    display: flex;
    flex-direction: column;
  }
   */
  #services p, #about ul {
    font-size: 1em;
    line-height: 1.6;
  }
  
  #services ul {
    list-style: none;
    padding: 0;
  }
  
  #services ul li {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  #services ul li img {
    width: 80%;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
  }  

  /* Style for the description text */
  
  #services .col-md-6 p {
    font-size: 1em;
    line-height: 1.6;
    font-weight: normal;  /* Making it normal, not bold */
  }
  /* Style for the skills list */
  #services ul {
    font-size: 1.2em;
    font-weight: 600; /* Making it thicker but not as thick as the description */
  }
  
  /* Styling the container around description and skills */
 /* Styling the container around description and skills */

  
  /* Remove the border from individual columns */
  #services .col-md-6 {
    border: none;
    padding: 10px;
    /* margin-top: 5%; */
  }

  .moving-columns  {
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.6); */
  }

/* For JavaScript */
.fab.fa-js {
  color: #F0DB4F;
}

/* For Node.js */
.fab.fa-node {
  color: #3C873A;
}

/* For Express.js */
.fas.fa-server {
  color: #8C8C8C;
}

/* For RESTful API */
.fas.fa-cloud {
  color: #007BFF;
}

/* For CRUD operations */
.fas.fa-tasks {
  color: #6C757D;
}

/* For PostgreSQL */
.fas.fa-database:first-of-type {
  color: #336791;
}

/* For SQL (generic database color) */
.fas.fa-database:last-of-type {
  color: #FF963F;
}

/* For Python */
.fab.fa-python {
  color: #3776AB;
}

/* For Sequelize */
.fas.fa-project-diagram {
  color: #8C8C8C;
}

/* For React */
.fab.fa-react {
  color: #61DBFB;
}

/* For HTML5 */
.fab.fa-html5 {
  color: #E34F26;
}

/* For Git/GitHub */
.fab.fa-github {
  color: #000;  /* Making GitHub icon black */
}

/* For SwaggerAPI Doc */
.fas.fa-book {
  color: #007BFF;
}



.row {
  margin-top: 0px;
  padding-top: 0px !important;
}
  .row p {
    width: 100%;
    text-align: justify;
    
  }
  /* Click effect*/
  /* ... existing CSS ... */

  @keyframes moveRight {
    to {
        transform: translateX(100%);
    }
}

@keyframes moveLeft {
    to {
        transform: translateX(-100%);
    }
}

.skill-col.animating-right {
    animation: moveRight 2s forwards; 
}

.skill-col.animating-left{
    animation: moveLeft 2s forwards; 
}




@media (max-width: 768px) {



  .project-list-item {
     margin: 0px !important;
    margin-bottom: 30px !important;}
.project {
  padding: 5px;
}

  .projects { 
    padding: 5px;
    max-width: 100% !important}

  .project img { min-width: 100%}

 /* NAVBAR */
 .social-links a i {

  font-size: 1.35rem !important;  

}

.social-links a  .phone {
  font-size: 1.10rem !important;
}


#about {}

/* 
ABOUT ME SECTION */

.journey{
  text-align: left;
}

/* SKILLS */
  #services ul {
 max-width: 100%;
 margin: auto;
}
#services ul i {
  margin-right: 5px;
}
/* ----------Portofolio Smll Device---------- */

.mobile-version {
  display: none;
}

.project-tile:hover .desktop-version {
  opacity: 1;
}
.project-list {
  flex-direction: column;
  align-items: center;
  max-width: 100%;

  
}

.project-list-item {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px auto;
}

/* Making sure each project takes full width */
.project-tile {
  width: 100%;
  /* margin: 0 0 20px auto; */
}

/* Adjusting font sizes to be readable on smaller devices */
.project-content h2.title {
  font-size: 1.4rem;  /* Adjusted font size */
}

.project-content h3.subtitle {
  font-size: 1.1rem;  /* Adjusted font size */
}

.project-content p.summary {
  font-size: 1rem;    /* Adjusted font size */
  padding: 0 10px;    /* Added padding to give some space */
}

.mobile-version {
  top: 0;             /* Reset the top position */
  left: 25%;          /* Adjusted to keep the image centered */
}


/* Modals */
.modal-dialog {
  max-width: 90%; /* You can set this to whatever percentage or pixel value you prefer */
  height: auto;   /* Adjust this value as well */
  margin: auto;
}


.soft-skills {
  flex-direction: column;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.imperial-python-libraries img {
  height: auto !important;
  max-height: 35px !important;
}

}











@media (max-width: 768px) {
  .project-list-item {
    flex: 1 1 calc(30% - 20px); /* 2 items per row on smaller screens */
    max-width: calc(30% - 20px);
  }
}

@media (max-width: 576px) {
  .project-list-item {
    flex: 1 1 100%; /* 1 item per row on mobile screens */
    max-width: 100%;
  }
}
