/* Import custom font */

@font-face {
    font-family: 'Arcon';
    src: url('../fonts/Arcon.otf');
}

@keyframes bgChanger {
  0% {
    background-color: #161616;
  }
  25% {
    background-color: #18283f; /* deep blue */
  }
  50% {
    background-color: #202020;
  }
  75% {
    background-color: #1b3a5c; /* richer blue */
  }
  100% {
    background-color: #161616;
  }
}



/* Animation for border color */

/* Body style */
body {
    background-color: #1a1a1a;
    animation-name: bgChanger;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
 /* Head style */


.head a {
    pointer-events: auto;
    color: white;
}
.head a:hover {
    color: white;
}
.logo {
    cursor: pointer;
    position: relative;
    float: left;
}
.menu {
    cursor: pointer;
    position: relative;
    pointer-events: auto;
}

/* Cover section style */

.cover {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* make the image actually fill the cover */
.cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops nicely, keeps aspect ratio */
  display: block;
}

.typed-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	height: 9rem!important;
	display: flex;
  	flex-direction: column;
  	justify-content: center;
}
.typed-text {
	font-family: Arcon;
	text-align: center;
	font-size: 4rem;
	color: white;
	vertical-align: middle;
}
.typed-cursor {
    opacity: 0;
}
.scroll-container {
    position: absolute;
    bottom: .2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}
#scroll {
    color: white;
    font-size: 3.5rem;
    cursor: pointer;
}

/* About section style */

.avatar {
	border: 1px solid white;
	max-width: 25rem;
}
.about-text {
	font-size: 1.8rem;
	color: white;
	font-family: Arcon;
	text-align: justify;
}
.beauty-button {
    text-decoration: none;
    font-family: Arcon;
    font-size: 1.5rem;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    transition: .2s all;
}

.beauty-button:hover {
    background-color: white;
    animation-name: colorChanger;
    animation-duration: 10s;
    color: #1a1a1a;
    animation-iteration-count: infinite;
    text-decoration: none;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.5);
}
.beauty-button:focus {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    transition: .2s all;
    outline: 0;
}

/* Skills section style */

.skills .skillbar {
  width: 100%;
  height: 20px;
  position: relative;
  margin-bottom: 60px;
  padding: 5px;
  box-sizing: border-box;
}

.skills .count-bar {
  width: 100%;
  height: 10px;
  width: 0px;
  position: relative;
  background-color: white;
}

.skills .count-bar span{
    font-size: 17px;
}

.skills .title {
  position: relative;
  line-height: 25px;
  top: -10px;
  left: 0;
  font-weight: bold;
  font-size: 1.25em;
  font-family: Arcon;
  color: white;
  opacity: 0;
}

.skills .count-bar .count {
  position: absolute;
  line-height: 18px;
  top: -33px;
  right: -20px;
  width: 60px;
  height: 18px;
  color: white;
  font-family: Arcon;
  text-align: center;
}

.skills .count-bar .count span {
  position: relative;
  display: block;
}

.skills .count-bar .count span:after {
  position: absolute;
  left: 50%;
  margin-left: -4px;
  top: 18px;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

/* Portfolio & Fun section style */

.portfolio-section img, .fun-section img {
    transition: .3s all;
    border: 0px solid white;
}
.portfolio-section a:focus, .fun-section a:focus {
    outline: 0;
}
.portfolio-section img:hover, .fun-section img:hover {
    box-shadow: rgba(1, 119, 228, 1)  0px 6px 12px 1px;}
.portfolio-section .col-md-4, .fun-section .col-md-4 {
    margin-bottom: 2rem;
}

/* Feedback section style */

.feedback-section {
    color: white;
    font-family: Arcon;
}
.feedback-section hr {
    border-width: 3px;
    border-color: white;
}
.feedback-section p {
    font-size: 1.1rem;
    text-align: justify;
}
.feedback-section a {
    color: white;
    text-decoration: underline;
}
.feedback-section a:hover {
    color: white;
}
.feedback-section a:focus {
    color: white;
}

/* Contact section style */

.contact-section h5 {
    color: white;
    font-family: Arcon;
}
.contact-section form {
    padding-left: 10rem;
    padding-right: 10rem;
}
.contact-section input, .contact-section textarea {
    background-color: transparent;
    border-radius: 0;
    border-width: 3px 0 0 0;
    border-color: rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    font-family: Arcon;
    color: white!important;
    transition: all .2s;
    -webkit-appearance: none;
    resize: none;
}
.contact-section input:focus, .contact-section textarea:focus {
    outline: 0;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.1);
}
.contact-section input::-webkit-input-placeholder, .contact-section textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.contact-section input::-moz-placeholder,
.contact-section textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.contact-section input:-ms-input-placeholder,
.contact-section textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.contact-section button {
    border-radius: 0;
    background-color: transparent;
    border: 2px solid white;
    transition: .2s all;
    font-family: Arcon;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.contact-section button:hover {
    background-color: white;
    border-color: white;
    animation-name: colorChanger;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    text-decoration: none;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.5);
    color: #1a1a1a;
}
.contact-section button:focus {
    border-color: white;
}
.contact-section .help-block {
    color: white;
    opacity: .8;
    font-family: Arcon;
    padding-top: 5px;
}

/* Footer style */

.footer {
    color: white;
    font-family: Arcon;
    background-color: rgba(0, 0, 0, 0.5);
}
.footer p {
    font-size: 1.2rem;
}
.footer .list-inline {
    margin-top: 2rem;
}
.footer .btn-social {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #1a1a1a;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    border: 2px solid white;
    animation-name: colorChanger;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}







/* Styling for the modals */

.portfolio-modal .modal-content {
    padding: 100px 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: Arcon;
}
.portfolio-modal .modal-content h2 {
    font-size: 3em;
    font-family: Arcon;
    animation-name: colorChanger;
    animation-duration: 10s;
    animation-iteration-count: infinite;

}
.portfolio-modal .modal-content img {
    max-width: 65%;
    border: 5px solid white;
    animation-name: borderColorChanger;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
.portfolio-modal .modal-content p {
    font-size: 1.5em;
}
.portfolio-modal .modal-content .item-details {
    font-size: 1.2em;
}
.portfolio-modal .close {
    position: absolute;
    top: 25px;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: transparent;
    cursor: pointer;
}
.portfolio-modal .close:hover {
    opacity: .3;
}
.portfolio-modal .close .lr {
    z-index: 1051;
    width: 1px;
    height: 60px;
    background-color: #1a1a1a;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.portfolio-modal .close .lr .rl {
    z-index: 1052;
    width: 1px;
    height: 60px;
    background-color: #1a1a1a;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.portfolio-modal .modal-backdrop {
    display: none;
    opacity: 0;
}
.portfolio-modal ol {
    text-align: left;
    font-size: 1.5em;
}
.portfolio-modal .close-button {
    border: 3px solid white;
    background-color: transparent;
    animation-name: borderColorChanger, colorChanger;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transition: all .2s;
    cursor: pointer;
    font-family: Arcon;
    font-size: 1.5rem;
    padding: .6rem 1rem .6rem 1rem;
}
.portfolio-modal .close-button:focus {
    outline: 0;
}
.portfolio-modal .close-button:hover {
    animation-name: bgChanger;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    color: white;
    border: 3px solid transparent;
}

@media (max-width: 767px) {

    .logo {
	width: 130px;
     }
    .menu {
        cursor: pointer;
        position: relative;
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }
    .menu img {
        height: 24px;
        width: auto;
        display: block;    }

        .head {
            height: auto;
            padding: 10px 20px;
            flex-direction: row;
            align-items: center;
        }
    .typed-text {
	font-size: 2rem;
    }
    .about-text {
	font-size: 1.4rem;
    }
    .beauty-button {
     	width: 100%;
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    #scroll {
        font-size: 2.5rem;
    }
    .portfolio-section .col-md-4 {
        margin-bottom: 1rem;
    }
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
    .portfolio-modal .modal-content img {
        max-width: 100%;
    }
    .contact-section form {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    iframe {
	height: 300px;
    }
}
@media (max-width: 991px) {
    iframe {
        height: 300px;
    }

}



/* Styling navigation menu */

.menu-container {
    position: fixed;
    z-index: 101;
    right: -300px;

    overflow-y: auto;

    width: 300px;
    height: 100%;

    background-color: #efefef;

    font-family: Arcon;
}

.menu-container h2 {
    margin-top: 50px;
    margin-right: 20px;
    margin-left: 20px;
    padding: 10px;

    animation-name: borderColorChanger;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 5px solid black;

    font-family: Arcon;
    font-size: 3rem;
    font-weight: 500;
}

.menu-container ul {
    margin-top: 50px;
    padding: 0;

    list-style-type: none;
}

.menu-nav ul li a {
    display: block;

    padding: 15px 30px 15px 30px;

    cursor: pointer;
    -webkit-transition: background 0.2s, box-shadow 0.2;
    transition: background 0.2s, box-shadow 0.2s;
    animation-name: colorChanger;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    outline: none;
    box-shadow: inset 0 -1px rgba(0,0,0,0.1);

    font-size: 1.5rem;
    font-weight: bold;
}

.menu-nav ul li:first-child a {
    box-shadow: inset 0 -1px rgba(0,0,0,0.1), inset 0 1px rgba(0,0,0,0.1);
}

.menu-nav ul li a:hover {
    color: #fff;
    background: rgba(0,0,0,0.1);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
}

@media (max-width: 767px) {
    .menu-container {
        width: 250px;
    }
    .menu-container h2 {
        margin-top: 25px;

        border: 4px solid black;

        font-size: 2rem;
    }
    .menu-container ul {
        margin-top: 25px;
    }
    .menu-nav ul li a {
        padding: 10px 20px;
        font-size: 1.3rem;
    }
}

/* Modernize feedback section with cleaner cards and subtle shadows */
.feedback-section {
    color: white;
    font-family: Arcon;
    padding: 1.5rem 0;
  }
  
  .feedback-section hr {
    border-width: 2px;
    border-color: white;
    width: 40px;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  
  .feedback-section p {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1rem;
  }
  
  .feedback-section h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .feedback-section h6 {
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .feedback-section h6 a {
    color: white;
    text-decoration: underline;
  }
  
  .feedback-section h6 a:hover {
    color: white;
    text-decoration: none;
  }

  /* Add container with shadow on hover for each feedback item */

.feedback-section .col-md-4 {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
  }
  
  .feedback-section .col-md-4:hover {
    box-shadow: rgba(1, 119, 228, 1)  0px 6px 12px 1px;
        transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Add spacing between feedback items to avoid sticking */

.feedback-section .row > .col-md-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1.5rem; /* extra vertical spacing */
  }
  /* Add horizontal margins on mobile and keep small gaps between items */

@media (max-width: 767px) {
    .feedback-section .row > .col-md-4 {
      margin-left: 1rem;
      margin-right: 1rem;
      margin-bottom: 1.5rem;
    }
  }
  
  /* Keep small horizontal gaps on larger screens */
  .feedback-section .row {
    gap: 0.5rem; /* gap between columns */
  }

  /* Ensure feedback items stay on the same line with gaps on larger screens */

.feedback-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* gap between items */
    margin-left: -0.75rem; /* compensate padding */
    margin-right: -0.75rem;
  }
  
  .feedback-section .row > .col-md-4 {
    flex: 1 1 calc(33.333% - 1rem); /* three items per row with gap */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
  }
  
  /* On smaller screens, stack with margins */
  @media (max-width: 767px) {
    .feedback-section .row > .col-md-4 {
      flex: 1 1 100%;
      margin-left: 1rem;
      margin-right: 1rem;
    }
  }
  @media (max-width: 767px) {
    .feedback-section .row {
      gap: 0.1rem; /* equal spacing between stacked boxes vertically */
    }
}
.logo-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: transparent; /* no background color */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-banner {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: transparent !important;
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

/* Increase logo size and remove hover effect */
.logo-track a img {
  max-height: 90px; /* increased from 60px */
  filter: grayscale(40%);
  transition: none; /* removed transition */
  vertical-align: middle;
}

.logo-track a:hover img {
  filter: grayscale(40%); /* keep grayscale on hover */
  transform: none; /* remove scale on hover */
}

/* Add horizontal margins on mobile for spacing */
@media (max-width: 767px) {
  .logo-track a {
    display: inline-block; /* ensure margin applies */
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}




.head {
    width: 90%; /* Made it narrower */
    height: 10%;
    position: fixed;
    top: 20px; /* Added space from top */
    left: 50%; /* Centering */
    transform: translateX(-50%); /* Centering */
    z-index: 3;
    padding: 15px 30px;
    pointer-events: none;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 0px; /* or 20px, adjust to taste */
  }
  

  @media (max-width: 767px) {
    .head {
        padding: 0px 20px 0px 0px;/* same horizontal spacing left & right */
    }
  
    .menu {
      padding: 0.5rem;     /* Optional: for better tap area */
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .menu img {
      height: 24px;
      width: auto;
      display: block;
    }
  }
  

   /* Section container */
.fun-section {
    text-align: center;
    color: white;
    font-family: Arcon;
    font-size: 1.2rem;
  
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)); /* same as header */
    border-radius: 24px;
    padding: var(--pad-y) var(--pad-x);
    margin: clamp(18px,4vw,38px) auto;
    width: 100%;
    max-width: 1280px;
  
    box-shadow: 0 10px 28px rgba(0,0,0,0.30); /* same shadow as header */
    position: relative;
    overflow: hidden;
  }
  
  /* Gradient stroke (same style as header) */
  .fun-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff15, #ffffff05);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  
  /* Mobile tweaks */
  @media (max-width: 640px) {
    .fun-section {
      padding: 12px 10px;
      margin: 16px auto;
      max-width: 92%;
    }
  }
  
  
/* Portfolio images */
.portfolio-section img {
    border-radius: 12px; /* smooth rounded edges */
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 100%;
  }
  
  /* Gradient stroke around images */
  .portfolio-section img {
    position: relative;
    z-index: 0; /* make sure stroke sits above bg */
  }
  
  .portfolio-section img::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* stroke thickness */
    background: linear-gradient(180deg, #ffffff26, #ffffff10);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
  }
  
  /* Hover effect (lift image slightly) */
  .portfolio-section img:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(1, 119, 228, 1) ; /* teal glow */
}
  
  

/* Themed Primary Button */
.btn.btn-primary {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    color: #fff;
    font-family: Arcon, sans-serif;
    font-weight: 500;
  
    border: none;
    border-radius: 18px;         /* match header/fun-section radius */
    padding: 0.6rem 1.4rem;
  
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: all 0.25s ease;
  }
  
  /* Subtle gradient stroke */
  .btn.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff12, #ffffff05);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  
  /* Hover effect */
  .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.45), 
              0 0 12px rgba(1, 119, 228, 0.4); /* teal glow */
  }
  
  /* Active / pressed */
  .btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  }
  
/* Banner wrapper */
.logo-banner {
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
}

/* Track of logos */
.logo-track {
  display: flex;
  transition: transform 0.6s ease; /* smooth sliding */
  will-change: transform;
}

/* Each logo cell */
.logo-track a {
  flex: 0 0 200px; /* each cell fixed width */
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default: all logos are grayed */
.logo-track img {
  max-height: 100px;
  filter: grayscale(100%) brightness(0.7) opacity(0.7);
  transition: filter 0.35s ease, transform 0.35s ease;
}

/* Active logo: colored & slightly bigger */
.logo-track a.active img {
  filter: none;
  transform: scale(1.1);
}
/* ===== Logo rail overrides (works with your existing HTML) ===== */

/* 1) Kill the old marquee animation even if set inline */
#fun-section .logo-track {
  animation: none !important;
  will-change: transform;
  transition: transform 600ms ease; /* slide time */
  white-space: nowrap;              /* keep a single row (you already have this inline) */
}

/* 2) Default: all logos dimmed (override inline grayscale:40%) */
#fun-section .logo-banner img {
  max-height: 100px;
  vertical-align: middle;
  filter: grayscale(100%) brightness(.65) opacity(.65) !important;
  transition: filter .35s ease, transform .35s ease;
  transform-origin: center;
}

/* 3) The centered (active) logo = colored and slightly larger */
#fun-section .logo-banner a.active img {
  filter: none !important;
  transform: scale(1.08);
}

/* Optional: avoid text selection while it slides */
#fun-section .logo-banner, 
#fun-section .logo-banner * {
  user-select: none;
}
/* Kill any marquee/inline animation and enable transform sliding */
#fun-section .logo-track {
  animation: none !important;
  will-change: transform;
  transition: transform 600ms ease;
  white-space: nowrap; /* keep single row (you already had this inline) */
}

/* Default: every logo dimmed (override any inline grayscale) */
#fun-section .logo-banner img {
  max-height: 100px;
  vertical-align: middle;
  filter: grayscale(100%) brightness(.65) opacity(.65) !important;
  transition: filter .35s ease, transform .35s ease;
  transform-origin: center;
}

/* Only the centered/active one is colored and slightly bigger */
#fun-section .logo-banner a.active img {
  filter: none !important;
  transform: scale(1.08);
}

/* Optional quality-of-life */
#fun-section .logo-banner, 
#fun-section .logo-banner * { user-select: none; }


/* Kill any marquee animation and enable transform sliding */
#fun-section .logo-track {
  animation: none !important;
  will-change: transform;
  transition: transform 600ms ease;
  white-space: nowrap; /* your strip layout */
}

/* Default: gray all logos (overrides any inline filter) */
#fun-section .logo-banner img {
  max-height: 100px;
  vertical-align: middle;
  filter: grayscale(100%) brightness(.65) opacity(.65) !important;
  transition: filter .35s ease, transform .35s ease;
}

/* Only the active one is colored & slightly larger */
#fun-section .logo-banner a.active img {
  filter: none !important;
  transform: scale(1.08);
}

#services-section .service-icon {
  font-size: 3.2rem;   /* adjust size (≈50px) */
  color: #00d6be;      /* teal color */
}

/* Equalize spacing between service rows and columns */
#services-section .row {
  --gap-x: 16px;   /* horizontal gap between cards */
  --gap-y: 16px;   /* vertical gap between rows */
  margin-left: calc(var(--gap-x) * -1);
  margin-right: calc(var(--gap-x) * -1);
}

#services-section .col-md-4 {
  padding-left: var(--gap-x);
  padding-right: var(--gap-x);
  margin-bottom: var(--gap-y);  /* ⬅ controls row spacing */
}

/* Mobile tighter spacing */
@media (max-width: 767.98px) {
  #services-section .row {
    --gap-x: 8px;
    --gap-y: 10px;
  }
}
.feedback-section .row {
  gap: 0.75rem !important;
}

.feedback-section .row > .col-md-4 {
  margin-bottom: 0 !important;
}
