   :root {
            --primary-teal: #44c1c4;
            --primary-blue: #15a6de;
            --dark-navy: #09314e;
            --light-bg: #f5f8fd;
            --white: #ffffff;
            --text-dark: #333;
              --muted: #6c757d;
      --bg-dark: #2c2b5e;

        }

.bg-light-white {
    background-color: #f6f6f6;
}

.btn-primary {
    background: #15a6de !important;
}


        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
        }

        /* --- Navbar --- */
        .navbar {
            transition: all 0.3s ease-in-out;
            padding: 1rem 0;
        }

        /* Initial transparent navbar state */
        .navbar:not(.scrolled) {
    background-color: #000;
}
        
       
        
        .navbar:not(.scrolled) .nav-link {
            color: var(--white);
            font-weight: 800;
        }
        
        .navbar:not(.scrolled) .nav-link:hover,
        .navbar:not(.scrolled) .nav-link.active {
            color: var(--primary-teal);
        }

        /* Scrolled solid navbar state */
        .navbar.scrolled {
            background-color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 0.5rem 0;
        }
        

       
        
        .navbar.scrolled .nav-link {
            color: var(--dark-navy);
            font-weight: 500;
        }
        
        
        .black-logo {
            display: none;
        }


    .navbar.scrolled .black-logo{
        display: block;
    }
    
    .navbar.scrolled .white-logo{
        display: none;
    }
    
    .navbar:not(.scrolled) .white-logo{
        display: block;
    }
    
        .navbar.scrolled .nav-link:hover,
        .navbar.scrolled .nav-link.active {
            color: var(--primary-blue);
        }
        
        .navbar-toggler {
            border: none;
            color: var(--white);
        }
        .navbar.scrolled .navbar-toggler {
            color: var(--dark-navy);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .dropdown-item {
            color: var(--dark-navy);
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-teal);
            color: var(--white);
        }

        .cta-btn {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            color: var(--white);
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .cta-btn:hover {
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(21, 166, 222, 0.4);
        }
        
        .navbar.scrolled .cta-btn {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            color: var(--white);
        }

        /* --- Hero Slider --- */
        
        
        .carousel-item {
          height: auto;
            background-size: cover;
            background-position: center;
        }

        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: left;
            padding-left: 10%;
        }

        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation-delay: 0.5s;
        }
        
        .carousel-caption p {
            font-size: 1.25rem;
            color: var(--white);
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            animation-delay: 0.8s;
        }
        
        .carousel-caption .btn {
            animation-delay: 1.1s;
        }

        /* Gradient overlay for hero images */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(9, 49, 78, 0.7) 0%, rgba(9, 49, 78, 0.2) 100%);
        }

        /* --- General Section Styling --- */
        section {
            padding: 80px 0;
            overflow: hidden; /* For AOS animations */
        }
        
        .bg-light-custom {
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Title accent line */
.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #fff;
    margin: 20px auto 0;
    border-radius: 2px;
}



          body { font-family: 'Poppins', sans-serif; color:#222; }
    header .navbar { background: rgba(255,255,255,0.02); padding: .8rem 0; transition: background .3s ease; }
    header .navbar.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
   



  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slide container */
.hero-slide {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Background images */
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Text section */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 5;
    color: #fff;
    max-width: 600px;
}

/* Heading */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraph */
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Mobile responsive */
@media(max-width: 768px) {
    .hero-slider, .hero-slide {
        height: 30vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-content {
        left: 5%;
        max-width: 90%;
    }
    
 
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
}

/* Hide default icons background */
.carousel-control-prev-icon,
.carousel-control-next-icon {
   position: relative;
}

.carousel-control-prev-icon::Before {
    content: "<";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffffb3;
    top: 0;
    left: 0;
    border-radius: 50%;
    color: #000;
    line-height: 50px;
    font-size: 40px;
}


.carousel-control-next-icon::Before {
    content: ">";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffffb3;
    top: 0;
    left: 0;
    border-radius: 50%;
     color: #000;
    line-height: 50px;
    font-size: 40px;
}


.carousel-control-prev-icon {
    background: none;
}

.carousel-control-next-icon {
    background: none;
}



    .carousel-caption { z-index:2; }
    .carousel-caption h1 { font-size: clamp(28px, 4vw, 56px); font-weight:600; }
    .section-title h2 { font-weight:600; }
    .bg-light-custom { background:#fbfbfd; }

    /* Brand slider */
    .roll__slide img { max-height:60px; object-fit:contain; filter:grayscale(.2); opacity:.95; }

    /* Services */
    .service-card .service-img-wrapper img { height: 220px; object-fit:cover; border-radius:10px; }

    /* Masonry portfolio */
    .masonry-grid {
      column-count: 4;
      column-gap: 16px;
    }
    @media(max-width: 1100px){ .masonry-grid { column-count: 3; } }
    @media(max-width: 768px){ .masonry-grid { column-count: 2; } }
    @media(max-width: 480px){ .masonry-grid { column-count: 1; } }

    .masonry-item { break-inside: avoid; margin-bottom: 16px; position:relative; overflow:hidden; border-radius:12px; }
    .masonry-item .gallery-media { width:100%; display:block; border-radius:12px; object-fit:cover; transition: transform .45s ease; }

    /* Hover overlay */
    .portfolio-item { display:block; position:relative; overflow:hidden; border-radius:12px; }
    .portfolio-overlay {
      position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
      opacity:0; display:flex; align-items:flex-end; justify-content:center; padding:18px; transition: opacity .25s ease;
    }
    .portfolio-item:hover .portfolio-overlay { opacity:1; }
    .portfolio-overlay .label { color:#fff; font-weight:600; background:rgba(0,0,0,0.35); padding:8px 12px; border-radius:999px; }

    .masonry-item .gallery-media:hover { transform: scale(1.06); }

    /* Filter buttons */
    .gallery-filters .btn { border-radius: 30px; padding: .45rem 1rem; border: 1px solid rgba(0,0,0,0.08); background: #fff; }
    .gallery-filters .btn.active { background: var(--primary-blue); color:#fff; border-color: var(--primary-blue); }

    /* Before/After popup styles (also injected in popup) */
    .before-after-wrapper { position:relative; width:100%; max-width:920px; margin:0 auto; }
    .before-after-container { position:relative; width:100%; overflow:hidden; }
    .before-after-container img { width:100%; height:auto; display:block; }
    .before-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; clip-path: inset(0 50% 0 0); transition: clip-path .08s linear; }
    .after-img { width:100%; display:block; }
    .before-after-handle { position:absolute; top:0; left:50%; transform:translateX(-50%); width:4px; height:100%; background: rgba(255,255,255,0.9); cursor: grab; z-index:5; }
    .before-after-handle::before { content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:28px; height:28px; border-radius:50%; background:#fff; box-shadow:0 5px 18px rgba(0,0,0,0.25); }

    /* small helpers */
    .sec-text { color:#555; }
 

        /* --- About Us Section --- */
        #about img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        #about h3 {
            font-weight: 600;
            color: var(--dark-navy);
            font-size: 2rem;
        }
        
        #about p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }
        
        #about .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        #about .btn-primary:hover {
            background-color: var(--primary-teal);
            border-color: var(--primary-teal);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(68, 193, 196, 0.4);
        }

        /* --- Services Section --- */
        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease-in-out;
            border: 1px solid #eee;
            height: auto;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(9, 49, 78, 0.1);
        }
        
        .service-card .icon-box {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: 0 5px 15px rgba(21, 166, 222, 0.3);
        }
        
        .service-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* --- Why Choose Us Section --- */
        .accordion-item {
            border: none;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-navy);
            border-radius: 8px !important;
            background-color: var(--white);
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--white);
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            box-shadow: 0 5px 15px rgba(21, 166, 222, 0.3);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            /* Custom icon (Bootstrap icon) */
            content: "\F282";
            font-family: 'bootstrap-icons';
            font-weight: 900;
            background-image: none;
        }
        
        .accordion-button:not(.collapsed)::after {
            content: "\F273";
            color: var(--white);
        }
        
        .accordion-body {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
        }
        
        #why-us img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* --- Blog Section --- */
        .blog-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card .card-img-top {
            height: 250px;
            object-fit: cover;
        }
        
        .blog-card .card-body {
            padding: 25px;
        }
        
        .blog-card .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 15px;
        }
        
        .blog-card .card-text {
            color: #666;
            font-size: 0.95rem;
        }
        
        .blog-card .read-more {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .blog-card .read-more:hover {
            color: var(--primary-teal);
            padding-left: 5px;
        }
        
        .blog-card .read-more i {
            margin-left: 5px;
        }

        /* --- Portfolio Section --- */
        #portfolio {
            background-color: var(--white);
        }

        .portfolio-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .portfolio-card img {
            transition: all 0.4s ease-in-out;
            width: 100%;
        }

        .portfolio-card:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(9, 49, 78, 0.8) 0%, rgba(9, 49, 78, 0.1) 100%);
            opacity: 0;
            transition: all 0.4s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            color: var(--white);
            font-weight: 600;
            font-size: 1.4rem;
            transform: translateY(15px);
            transition: all 0.4s ease;
        }

        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            transform: translateY(15px);
            transition: all 0.4s ease;
            transition-delay: 0.1s;
        }

        .portfolio-card:hover .portfolio-overlay h4,
        .portfolio-card:hover .portfolio-overlay p {
            transform: translateY(0);
        }

        .portfolio-overlay .links a {
            color: var(--white);
            font-size: 1.5rem;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .portfolio-overlay .links a:hover {
            color: var(--primary-teal);
        }

        /* --- Contact Section --- */

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form .form-control {
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #ddd;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(21, 166, 222, 0.25);
        }
        
        .contact-form .btn-primary {
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
            border: none;
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 600;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .contact-form .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(21, 166, 222, 0.4);
        }
        
        .contact-info {
            padding: 40px;
            background: linear-gradient(45deg, var(--dark-navy), #0b4a7a);
            border-radius: 12px;
            color: var(--white);
            height: 100%;
        }
        
        .contact-info h4 {
            font-weight: 600;
            color: var(--white);
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .contact-info .icon-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-teal);
            margin-right: 20px;
            line-height: 1;
        }
        
        .contact-info .icon-box h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin: 0 0 5px 0;
        }


        /* --- Footer --- */
        footer {
            background-color: var(--dark-navy);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 20px 0;
        }
        
        footer h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
        }
        
        footer h4::after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--primary-teal);
            margin-top: 8px;
        }
        
        footer .footer-logo {
          
            border-color: var(--white);
            color: var(--dark-navy);
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
            width: 100%;
        }

        .footer-logo img {
            width: 40%;
        }
        
        footer p {
            font-size: 0.95rem;
        }
        
        footer .footer-links {
            list-style: none;
            padding: 0;
        }
        
        footer .footer-links li {
            margin-bottom: 10px;
        }
        
        footer .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer .footer-links a:hover {
            color: var(--primary-teal);
            padding-left: 5px;
        }
        
        footer .footer-links i {
            margin-right: 8px;
            color: var(--primary-teal);
            font-size: 0.8rem;
        }
        
        footer .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        footer .social-links a:hover {
            color: var(--primary-teal);
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
        }
        
        .footer-bottom p {
            font-size: 0.9rem;
            margin: 0;
        }

        /* --- Back to Top Button --- */
        .back-to-top {
            position: fixed;
            visibility: hidden;
            opacity: 0;
            right: 15px;
            bottom: 15px;
            z-index: 996;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
            width: 40px;
            height: 40px;
            border-radius: 50px;
            transition: all 0.4s;
        }
        
        .back-to-top i {
            font-size: 28px;
            color: var(--white);
            line-height: 0;
        }
        
        .back-to-top:hover {
            background: linear-gradient(45deg, var(--primary-teal), var(--primary-blue));
            color: var(--white);
        }
        
        .back-to-top.active {
            visibility: visible;
            opacity: 1;
        }


/*Before after*/

.slider-container {
    margin: 0 auto;
    margin-top: 5rem;
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    border-radius: 0.7rem;
    /* overflow: hidden; */
    height: 250px;
}

.before-image img {
    width: 100% !important;
}

.after-image img {
    width: 100% !important;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
  position: absolute;
  font-family: system-ui;
  font-size: 14px;
  font-weight: 600;
  color: #3a3a3a;
  z-index: 4;
  padding: 10px 20px;
  background-color: #ffffff9e;
  border-radius: 0.3rem;
  letter-spacing: 2px;
  transition: opacity 0.3s ease-in-out;
}

/* Before text */
.before-text {
  left: 20px; /* Position text to the left */
  top: 20px;
  z-index: 5;
}

/* After text */
.after-text {
  right: 20px; /* Position text to the right */
  top: 20px;
  z-index: 3;
}

/* Hide the After text initially */
.after-image .after-text {
  visibility: visible;
  z-index: 3;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}
.pulse-container {
  position: relative;
  display: inline-block;
}

.pulse-container::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 70px; /* Larger than the SVG */
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff; /* Color of the pulse */
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.slider-line svg {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, 10%);
  z-index: 3;
  cursor: pointer;
}
/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
  user-select: none; /* Disable selection on most browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
}

.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


/*hero slider*/

.carousel-control-next, .carousel-control-prev {
    width: 7% !important;
}

.bg-background {
 background:#44c1c42e ;
}


.swiper-pagination {
    display: none;
}


.cta {
    background: url(../images/cta.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-light-custom {
    position: relative;
    color: #fff;
}

.bg-light-custom h1, .service-card {
    color:#fff !important;
    position: relative;
    z-index: 99;
}

.bg-light-custom p {
    color:#fff !important;
    position: relative;
    z-index: 99;
}

.bg-light-custom .section-title h2 {
    color: #ffffff !important;
}

.bg-light-custom .section-title p {
    color: #ffffff !important;
}

.bg-light-custom .service-card p {
    color: #000 !important;
}

/*.bg-light-custom::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #0000004d;*/
/*}*/

.bg-light-custom {
      background:#15a6de;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.service-box-area h2 {
    text-align: center;
    padding: 10px 0px;
    font-size: 18px;
    color: #666;
}


.ba-slider {
    padding: 0 20px;
}

.service-section {
    position: relative;
    padding: 100px 0;
}

/* default state */
.image-pin {
    position: relative;
}

/* fixed pinned state */
.image-pin.is-fixed {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}

/* stop at section end */
.image-pin.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: none;
}

/* mobile disable */
@media (max-width: 991px) {
    .image-pin,
    .image-pin.is-fixed,
    .image-pin.is-bottom {
        position: relative;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
}


