.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.customtextsize {
  font-weight: 400;
 font-size: 110px;

}

.customtextsize2 {
  font-weight: 400;
 font-size: 50px;

}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.video-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-header video {
    width: 100%;
    height: 100%;

}
.video-mobile {
    display: none;
}

/* Mobile breakpoint */
@media (max-width: 767px) {
    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-overlay h1 {
    font-size: 3rem;
}

.video-overlay p {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Default sizes */
.logo-desktop {
    height: 60px;
}

.logo-mobile {
    height: 38px;
    display: none;
}

/* Mobile breakpoint */
@media (max-width: 767px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline-block;
    }
}


.split-row {
    background-color: #070d24;
    height: 400px;
    position: relative;
}

.split-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    width: 2px;
    background: white;
}

.services-left {
    background: #070d24;
    height: 100vh;
    position: relative;
}

.services-title {
    position: sticky;
    top: 50px;   /* distance from top when stuck */
}

.divider {
    background-color: white;
    height: 2px;
    width: 60px;
    margin: 20px auto 0;
}

#services-left-col {
    position: sticky;
    top: 0;
    height: 100vh;
    transition: height 0.2s ease-out;
    display: flex;
    align-items: flex-start;
}
#services-left-col {
    will-change: height;
  overflow: hidden;
}

.portfolio-section {
    padding: 120px 0;
}

.portfolio-section img {
    transition: transform 0.4s ease;
    cursor: pointer;
}

.portfolio-section img:hover {
    transform: scale(1.05);
}

/* Bigger arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 3rem;
    height: 3rem;
}

.portfolio-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.portfolio-scroll img {
    height: 420px;
    border-radius: 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.portfolio-scroll img:hover {
    transform: scale(1.05);
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
.portfolio-wrapper {
    position: relative;
}

.portfolio-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 60px 30px;
}

.portfolio-scroll img {
    height: 420px;
    border-radius: 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
}

/* Arrow buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 10;
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

.portfolio-scroll {
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
        scroll-behavior: auto; /* disable native so JS fully controls */
}

.portfolio-scroll::-webkit-scrollbar {
    display: none;                /* Chrome/Safari */
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.portfolio-scroll img {
    cursor: zoom-in;
}
.lightbox img {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}
.portfolio-scroll img {
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px 20px;
}

.lightbox-arrow.left {
    left: 30px;
}

.lightbox-arrow.right {
    right: 30px;
}

.lightbox-arrow:hover {
    opacity: 0.7;
}
.lightbox img {
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

.site-footer {
    background: #ED254E;
    color: white;
    padding: 80px 0 30px;
}

.site-footer h3,
.site-footer h5 {
    margin-bottom: 20px;
}

.site-footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd3ff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 60px 20px 30px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #ED254E; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #070d24; /* Add a dark-grey background on hover */
}

#contact .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 14px;
    font-size: 0.95rem;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: #070d24;
}

#contact button {
    background: #070d24;
    border: none;
    letter-spacing: 1px;
}

#contact button:hover {
    background: #000;
}


.testimonial-col {
  position: relative;
  padding: 60px;
  min-height: 500px;
    border-left: 1px solid  #e5e5e5; /* thin dark grey */
}

/* arrows top */
.carousel-controls {
  position: absolute;
  top: 0;
  right: 0;
}

.carousel-controls button {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}

/* slides */
.carousel {
  margin-top: 150px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide-num {
  border: 1px solid #000;
  border-radius: 50%;
  padding: 6px 12px;
  font-size: 14px;
}

.slide h2 {
  font-size: 48px;
  margin: 20px 0 0;
}

.company {
  font-size: 16px;
  margin-bottom: 40px;
}

.quote {
  font-size: 20px;
    text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


.carousel-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e5e5e5;

}

.carousel-controls button {
  height: 150px;
  font-size: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.carousel-controls button:first-child {
  border-right: 1px solid #e5e5e5;
}
.carousel-controls button:hover {
  background: rgba(0,0,0,0.03);
}