@charset "UTF-8";
/* Minimal LeadMark CSS - Only styles needed for index.html */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

/* CSS Variables */
:root {
  --primary: #fd1c1cbf;
  --secondary: #6c757d;
  --dark: #1b1b1b;
  --white: #fff;
  --light: #f8f9fa;
  --gray: #6c757d;
  --font-family-sans-serif: "Poppins", sans-serif;
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  text-align: left;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: calc(17px + (14 - 13) * ((100vw - 320px) / (1200 - 320)));
  font-weight: 400;
  opacity: 0.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #fd1c1cbf;
  text-decoration: underline;
}

/* Images */
img {
  vertical-align: middle;
  border-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Bootstrap Grid System */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-sm {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Navbar */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand img {
  height: 40px;
  transition: height 0.3s ease;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-item {
  list-style: none;
}

.navbar-nav .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fd1c1cbf;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.nav-link:hover,
.nav-link:focus {
  color: #fd1c1cbf!important;
}

.collapse:not(.show) {
  display: none;
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  
  .navbar-expand-md > .container {
    flex-wrap: nowrap;
  }
  
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

/* Custom navbar styles */
.custom-navbar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.custom-navbar .navbar-brand img {
  height: 50px;
  transition: height 0.3s ease;
}

.custom-navbar .nav-link {
  color: #fff !important;
  margin: 0 6px;
}

.custom-navbar .nav-link:hover {
  color: #fd1c1cbf !important;
}

.custom-navbar.affix {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  background-color: rgba(0, 0, 0, 0.9) !important;
  transition: all 0.3s ease;
}

.custom-navbar.affix .navbar-brand img {
  height: 35px;
}

.custom-navbar.affix .nav-link {
  color: #fff !important;
}

.custom-navbar.affix .nav-link:hover {
  color: #fd1c1cbf !important;
}

.custom-navbar .navbar-brand {
  color: #fff !important;
}

.custom-navbar.affix .navbar-brand {
  color: #fff !important;
}

.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-navbar.affix .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}

.custom-navbar.affix .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-nav .nav-link {
  color: #fd1c1cbf;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #fd1c1cbf;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: #fd1c1cbf;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #fd1c1cbf;
  border-color: #fd1c1cbf;
}

.btn-primary:hover {
  color: #fff;
  background-color: rgba(214, 80, 80, 1);
  border-color: rgba(214, 80, 80, 1);
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 132, 94, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #ff6e42;
  border-color: #ff6e42;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ff470f;
  border-color: #ff3d02;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 132, 94, 0.5);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.rounded {
  border-radius: 0.25rem !important;
}

/* Utility classes */
.ml-auto {
  margin-left: auto !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mt {
  margin-top: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.text-center {
  text-align: center !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Header */
.header {
  position: relative;
  height: 65vh;
  min-height: 500px;
  background: url(../imgs/header.jpg) no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

.header .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.header .title {
  font-size: calc(30px + (70 - 30) * ((100vw - 320px) / (1200 - 320)));
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}

.header .subtitle {
  font-size: calc(13px + (18 - 13) * ((100vw - 320px) / (1200 - 320)));
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 8px;
  word-spacing: 10px;
  text-align: center;
  opacity: 0.8;
}

.header .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.header .shape svg {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  z-index: 9;
  fill: white;
}

.header .shape svg path {
  fill: #fff;
}

/* Mouse icon animation */
.mouse-icon {
  border: 2px solid #fff;
  border-radius: 16px;
  height: 40px;
  width: 24px;
  display: block;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  margin: auto;
  cursor: pointer;
}

.mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: #fff;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
  animation: drop 1.4s infinite linear;
}

@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: #f5f8fc;
}

.section-title {
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
  padding-bottom: 7px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark);
}

/* About section */
.about_image {
  border-radius: 10px;
  width: 90% !important;
}

.about_txt {
  padding-left: 2rem;
  padding-top: 60px;
}

/* Portfolio */
.portfolio-section {
  background-color: var(--light);
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.portfolio_item {
  margin-bottom: 30px;
  cursor: pointer;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.content-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .content-holder {
  opacity: 1;
}

.content-holder .img-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.text-holder {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.text-holder .title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Contact section */
.contact_info {
  color: white;
}

.contact_info h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact_info p {
  margin-bottom: 0.5rem;
}

.contact_info a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

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

#contact {
  background: url('../imgs/header.jpg') no-repeat center top fixed;
  background-size: cover;
  color: white;
  position: relative;
}

#contact:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#contact * {
  position: relative;
  z-index: 100;
}

/* Footer */
.footer {
  display: flex;
  min-height: 70px;
  border-top: 1px solid #dee2e6;
  align-items: center;
}

.footer p,
.footer .social-links {
  flex-grow: 1;
  flex-basis: 0;
}

.footer a,
.footer p {
  color: #343a40;
  padding: 4px 0;
  display: inline-block;
  margin: 0;
}

.footer .brand {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

.footer .social-links {
  margin-left: auto;
}

.footer .social-links a {
  padding: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  border: 2px solid #6c757d;
  color: #6c757d;
}

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

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-top: 3rem !important;
  padding: 2rem 0 !important;
}

footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Utility classes */
.mt-5 {
  margin-top: 3rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.small {
  font-size: 0.875em;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.has-img-bg {
  position: relative;
  background: url('../imgs/header.jpg') no-repeat center top fixed;
  background-size: cover;
  color: #fff;
}

.has-img-bg * {
  position: relative;
  z-index: 100;
}

.has-img-bg:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* Font Awesome icons */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-linkedin-square:before {
  content: "\f08c";
}

/* Responsive design */
@media (max-width: 1199.98px) {
  .header .shape svg {
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .header .shape svg {
    bottom: 0;
  }
  
  .header .title {
    font-size: 2.5rem;
  }
  
  .header .subtitle {
    font-size: 1.2rem;
  }
  
  .about_txt {
    padding-left: 0;
    margin-top: 2rem;
    padding-top: 30px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact_info .row > div {
    margin-bottom: 2rem;
  }
  
  .footer {
    padding: 15px 0;
    flex-direction: column;
  }
  
  .footer .social-links {
    margin-top: 15px;
  }
}

/* Hidden filters (as specified in HTML) */
.filters {
  display: none !important;
}

.download_cv .btn {
  background-color: #fd1c1cbf !important;
  border-color: #fd1c1cbf !important;
  color: #fff !important;
}

.download_cv .btn:hover {
  background-color: rgba(214, 80, 80, 1) !important;
  border-color: rgba(214, 80, 80, 1) !important;
  color: #fff !important;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}

.navbar>.container,
.navbar>.container-fluid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.1rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

.personal-info-row{
  height:580px;
}

@media (max-width: 575.98px) {

  .navbar-expand-sm>.container,
  .navbar-expand-sm>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .navbar-expand-sm>.container,
  .navbar-expand-sm>.container-fluid {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

/* Shopware Plugins - Override Grid for Smaller Icons */
.shopware-plugins {
  padding: 50px 0 30px 0;
}

.shopware-plugins .section-title {
  margin-bottom: 1.5rem;
}

/* Override Bootstrap grid to fit more items per row */
.shopware-plugins .col-md-6 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.shopware-plugins .col-lg-4 {
  flex: 0 0 33%;
  max-width: 20%;
}

.shopware-plugins .portfolio_item {
  margin-bottom: 20px;
  padding: 0 10px;
}

.shopware-plugins .portfolio-item {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.shopware-plugins .portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure images fit well in smaller containers */
.shopware-plugins .portfolio-item img {
  height: 200px;;
  object-fit: cover;
  width: 100%;
}

.shopware-plugins .text-holder .title {
  font-size: 0.9rem;
  line-height: 1.2;
}

.info-section{
  padding: 35px 0;
}

.section-title{
  padding-top: 50px;
}

/* Responsive breakpoints for Shopware Plugins */

/* Mobile phones - 1 item per row */
@media (max-width: 575px) {
  .shopware-plugins .col-md-6,
  .shopware-plugins .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .shopware-plugins .portfolio-item img {
    height: 250px;
  }
}

/* Small tablets - 2 items per row */
@media (min-width: 576px) and (max-width: 767px) {
  .shopware-plugins .col-md-6,
  .shopware-plugins .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .shopware-plugins .portfolio-item img {
    height: 200px;
  }
}

/* Medium screens - 3 items per row */
@media (min-width: 768px) and (max-width: 991px) {
  .shopware-plugins .col-md-6,
  .shopware-plugins .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .shopware-plugins .portfolio-item img {
    height: 180px;
  }
}

/* Large screens - 4 items per row */
@media (min-width: 992px) and (max-width: 1199px) {
  .shopware-plugins .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .shopware-plugins .portfolio-item img {
    height: 170px;
  }
}

/* Extra large screens - 5 items per row (existing rule) */
@media (min-width: 1200px) {
  .shopware-plugins .col-lg-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  
  .shopware-plugins .portfolio-item img {
    height: 180px;
  }
}
