/********** Template CSS **********/
:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
max-height: 130px;
    margin-top: -17px;
    margin-bottom: -25px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #000000;
    font-weight: 400;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(0, 0, 0);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
      max-height: 70px;
        margin-top: -5px;
        margin-bottom: 5px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(1, 10, 53, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
        background-color: #ffffff;
    border: 12px solid #ffffff;
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }
}

.page-header {
    /* background:url(../img/banner.png) center center no-repeat; */
    background: rgba(0, 0, 0, .7);
    background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color:#ffffff;
}


/*** Facts ***/
.facts {
    background: rgba(1, 10, 53, .8);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #7F8499;
    border-top: 1px dashed #0289c7;
    background-image: url(../img/bg-shape-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    background-color: rgb(19, 19, 19);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000000;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #0289c7;
    border: 1px solid #0289c7;
}

.footer .btn.btn-square:hover {
    color: #0289c7 !important;
    border-color:  #0289c7 !important;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #0292d4;
}

.footer .copyright a:hover {
    color: #0292d4;
}




.copyright {
 padding: 25px 0;
    background-color:#0289c7;
}








.logo-img {
  height: 140px !important;        /* default desktop height */
  width: auto;         /* keeps aspect ratio */
  max-width: 100%;
     margin-top: -15px;
    margin-bottom: -10px;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-img {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 120px;
  }
}

@media (max-width: 768px) {

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    margin-top: -345px;
}

}


.features-section{
padding:60px 0;
background:#ffffff;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.feature-box{
background:#0d67a8;
color:#fff;
padding:40px 25px;
border-radius:10px;
text-align:center;
transition:0.3s;
}

.feature-box i{
font-size:35px;
margin-bottom:20px;
display:block;
}

.feature-box h4{
font-size:18px;
margin-bottom:10px;
font-weight:600;
}

.feature-box p{
font-size:14px;
line-height:1.6;
margin:0;
}

.feature-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width:991px){
.features-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media (max-width:576px){
.features-grid{
grid-template-columns:1fr;
}
}


.faq-question{
width:100%;
padding:15px;
font-size:16px;
background:#1e73be;
color:#fff;
border:none;
text-align:left;
cursor:pointer;

display:flex;
justify-content:space-between;
align-items:center;
}

.faq-icon{
transition:0.3s;
}

.faq-item.active .faq-icon{
transform:rotate(180deg);
}
.faq-section{
padding:60px 20px;
/* background:#f7f7f7; */
}

.faq-container{
display:flex;
gap:40px;
max-width:1200px;
margin:auto;
align-items:center;
}

.faq-left{
flex:1;
}

.faq-item{
border:1px solid #ddd;
margin-bottom:10px;
background:#fff;
}

.faq-question{
width:100%;
padding:15px;
font-size:16px;
background:#1e73be;
color:#fff;
border:none;
text-align:left;
cursor:pointer;
}

.faq-answer{
display:none;
padding:15px;
background:#fafafa;
}

.faq-right{
flex:1;
}

.faq-right img{
width:100%;
border-radius:10px;
}

/* responsive */

@media (max-width:992px){
.faq-container{
flex-direction:column;
}
}


.ok1{
        background-image: url(../img/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    margin-top: -50px;
    margin-bottom: 30px;
    background-color: rgb(19, 19, 19);
}


.counter-section{
    /* background:#0d6efd; */
    padding:80px 20px;
}

.counter-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.counter-box{
    color:#fff;
        box-shadow: 0 4px 10px #0000001a;
    background-color:#076bffc2;
    border-radius: 10px;
}

.counter-number{
    font-size:45px;
    font-weight:700;
}

.counter-box p{
    font-size:18px;
    /* margin-top:10px; */
}

@media(max-width:992px){
    .counter-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .counter-container{
        grid-template-columns:1fr;
    }

    .counter-number{
        font-size:36px;
    }
}

.ok2{
    
    background: rgb(3 106 180);
    background-image: url(../img/booknow.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    background-color: rgb(19, 19, 19);
}

@media (max-width: 576px) {
    .xxx{
        margin-top: -400px;
    }
}




 .testimonial-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;

      background-image: url(../img/background1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.testimonial-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.testimonial-container {
  overflow: hidden;
  width: 100%;
  padding-right: 30px;  /* increase space on right */
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 10px;
  text-align: center;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;  flex: 0 0 33.33%;
  box-sizing: border-box;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  padding: 0px 40px 0px 0px;
}

.testimonial-card h4 {
  margin: 5px 0;
  font-size: 18px;
}

.testimonial-card span {
  font-size: 14px;
  color: #888;
}

.prev, .next {
  background: #0289c7;
  color: #fff;
  border: none;
  padding: 3px 10px;
  cursor: pointer;
  border-radius: 50%;
  /* font-size: 20px; */
}

.prev:hover, .next:hover {
  background: #ff6600;
  background: #001d23;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-title {
    font-size: 24px;
  }
}


.gallery-section{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.gallery-title{
font-size:36px;
margin-bottom:40px;
}

.gallery-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:8px;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* Tablet */
@media (max-width:992px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media (max-width:576px){

.gallery-container{
grid-template-columns:1fr;
}

.gallery-item img{
height:200px;
}

}


.cta-section{
padding:100px 20px;
text-align:center;
color:#fff;
    margin-bottom: -45px;

background:

url("../img/booknow1.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.cta-content{
max-width:850px;
margin:auto;
}

.cta-content h2{
font-size:40px;
letter-spacing:3px;
margin-bottom:20px;
font-weight:700;
}

.cta-content p{
font-size:17px;
line-height:1.8;
margin-bottom:30px;
}

.cta-btn{
display:inline-block;
background:#fff;
color:#333;
padding:12px 30px;
font-size:16px;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.cta-btn:hover{
background:#0d6efd;
color:#fff;
}

/* Tablet */

@media (max-width:992px){

.cta-content h2{
font-size:34px;
}

.cta-content p{
font-size:16px;
}

}

/* Mobile */

@media (max-width:576px){

.cta-section{
padding:70px 15px;
}

.cta-content h2{
font-size:28px;
}

.cta-content p{
font-size:15px;
}

.cta-btn{
padding:10px 24px;
font-size:15px;
}

}


.rju-contact-sec {
    padding: 50px 20px;
    /* background: #f5f5f5; */
    /* font-family: Arial, sans-serif; */
}

/* Container */
.rju-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.rju-title {
    text-align: center;
    margin-bottom: 40px;
}

.rju-title h2 {
    font-size: 24px;
    color: #1e3a5f;
    letter-spacing: 2px;
}

.rju-title h3 {
    font-size: 28px;
    font-weight: bold;
}

/* Layout */
.rju-wrapper {
    display: flex;
    gap: 30px;
}

/* Left Info */
.rju-info {
    flex: 1;
}

.rju-box {
    display: flex;
    align-items: center;
    background: #e9e9e9;
    padding: 20px;
    margin-bottom: 20px;
}

.rju-icon {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.rju-text h4 {
    margin: 0;
    font-size: 18px;
}

.rju-text p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Right Form */
.rju-form-area {
    flex: 2;
}

.rju-form-area p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
}

/* Form */
.rju-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.rju-input,
.rju-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
}

.rju-textarea {
    height: 120px;
    resize: none;
}

/* Button */
.rju-btn {
    width: 100%;
    padding: 15px;
    background: #0d6efd;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.rju-btn:hover {
    background: #084298;
}

/* Responsive */
@media (max-width: 768px) {
    .rju-wrapper {
        flex-direction: column;
    }

    .rju-row {
        flex-direction: column;
    }
}


.rju-map-sec {
    padding: 20px;
    /* background: #f5f5f5; */
}

/* Container */
.rju-map-wrap {
    max-width: 1200px;
    margin: auto;
}

/* Responsive Map Box */
.rju-map-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 35%; /* height control */
    overflow: hidden;
    border-radius: 10px;
}

/* iframe */
.rju-map-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rju-map-box {
        padding-bottom: 60%;
    }
}



        /* main container */
        .lapy-wrapper {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }

        /* cards & glassmorphism touch */
        .section-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(2px);
            border-radius: 2.5rem;
            padding: 2.5rem 2.2rem;
            /* box-shadow: 0 20px 40px -12px rgba(0,20,50,0.15),
                        0 4px 18px rgba(0,0,0,0.02);
            transition: all 0.2s ease;
            border: 1px solid rgba(255,255,255,0.5); */
        }

        .section-card:hover {
            background: rgba(255,255,255,0.95);
            /* box-shadow: 0 28px 48px -16px rgba(0,35,70,0.25); */
        }

        /* headings */
        .highlight-box h1 {
            font-size:25px;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(145deg, #0b2b4e, #1d4a7c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .highlight-bo h2 {
            font-size: 20px;;
            font-weight: 650;
            letter-spacing: -0.01em;
            color: #0e2f4b;
            margin-bottom: 1.2rem;
            /* display: flex; */
            align-items: center;
            gap: 0.6rem;
        }

        h2 i {
            color: #2a6b9e;
            font-size: 2rem;
            width: 2.4rem;
        }

        h3 {
                font-size: 20px;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 0.75rem;
        }

        .badge-sub {
            display: inline-block;
               background: #2a6b9e;
    color: #ffffff;
            font-weight: 500;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(44, 110, 173, 0.2);
        }

        /* welcome section */
        .welcome {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .welcome-text {
            flex: 2 1 300px;
        }

        .welcome-text p {
            font-size: 1.2rem;
            color: #2c3e50;
            max-width: 650px;
            margin-top: 0.8rem;
            border-left: 4px solid #2f6ea2;
            padding-left: 1.4rem;
            background: rgba(220, 240, 255, 0.3);
            border-radius: 0 12px 12px 0;
        }

        .trust-icon {
            flex: 0 0 auto;
            background: #ffffffc7;
            padding: 1.2rem 2rem;
            border-radius: 80px;
            box-shadow: 0 10px 18px #d9e6f2;
            font-weight: 600;
            color: #1e4e7a;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.2rem;
        }

        .trust-icon i {
            font-size: 2.4rem;
            color: #1663a5;
        }

        /* who & mission/vision grid */
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0 2rem;
        }

        .highlight-box {
            background: #ffffffd6;
            border-radius: 2rem;
            padding: 2rem 1.8rem;
            box-shadow: 0 10px 18px -10px #afc9e0;
            border: 1px solid white;
        }

        .mission-vision {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin: 2.8rem 0;
        }

        .mission, .vision {
            flex: 1 1 240px;
            background: linear-gradient(145deg, #fafeff, #ecf5fc);
            border-radius: 2rem;
            padding: 2rem 1.8rem;
            border-left: 6px solid;
            transition: 0.15s;
        }

        .mission { border-left-color: #1f6fb0; }
        .vision { border-left-color: #2f8d6b; }

        .mission i, .vision i {
            font-size: 2.2rem;
            background: white;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px #cbdae9;
            margin-bottom: 1.2rem;
            color: #1f4e7a;
        }

        /* service cards */
        .service-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0 1.5rem;
        }

        .service-itemm {
            background: white;
            border-radius: 2rem;
            padding: 2rem 1.2rem;
            text-align: center;
            box-shadow: 0 8px 16px -12px #355e7e;
            border: 1px solid rgba(60, 130, 200, 0.15);
            transition: all 0.2s;
        }

        .service-itemm:hover {
            transform: translateY(-6px);
            border-color: #3173aa44;
            box-shadow: 0 20px 24px -16px #1b4f79;
        }

        .service-iconn {
            background: #e2effb;
            color: #1c62a0;
            width: 5rem;
            height: 5rem;
            border-radius: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            margin: 0 auto 1.4rem;
        }

        /* approach & why choose */
        .approach-block {
            background: #dceaf5c9;
            border-radius: 2.5rem;
            padding: 2.5rem;
            margin: 2.8rem 0;
            border: 1px solid #b3d2ec;
        }

        .bullet-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem 2rem;
            list-style: none;
            margin-top: 1.5rem;
        }

        .bullet-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
        }

        .bullet-list li i {
            color: #1b6fa5;
            font-size: 1.4rem;
            width: 2rem;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.4rem;
            margin: 2rem 0 1.2rem;
        }

        @media (max-width: 700px) {
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .why-choose-grid {
                grid-template-columns: 1fr;
            }
        }

        .chip {
            background: white;
            border-radius: 60px;
            padding: 0.8rem 1.2rem;
            text-align: center;
            font-weight: 550;
            color: #103d61;
            box-shadow: 0 3px 10px #e1edf8;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 1px solid #c7def5;
        }

        .chip i {
            color: #ffffff;
        }

        /* cta section */
        .cta-banner {
            background: linear-gradient(102deg, #0d2d47, #1d4f7c);
            color: white;
            border-radius: 3rem;
            padding: 3rem 2.5rem;
            margin-top: 3rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: 0 30px 40px -20px #0b2b40;
        }

        .cta-banner h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 0.3rem;
        }

        .cta-banner p {
            font-size: 1.2rem;
            opacity: 0.85;
        }


        .cta-btn i {
            font-size: 2rem;
        }

        .cta-btn:hover {
            background: #ffa72a;
            transform: scale(1.02);
            box-shadow: 0 24px 36px -10px #030f1b;
        }

        

        hr {
            border: 1px solid #bed7ef;
            margin: 2rem 0;
        }

        /* responsive fine-tuning */
        @media (max-width: 600px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .section-card { padding: 1.8rem 1.2rem; }
            .trust-icon { padding: 1rem 1.5rem; font-size: 1rem; }
            .cta-btn { font-size: 1.2rem; padding: 1rem 2rem; }
        }


        .what h2{
                text-align: center;
        }










            .page {
      max-width: 1300px;
      margin: 2rem auto;
      padding: 0 2rem;
    }

    /* main container — refined depth */
    .mastercard {
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(6px);
      border-radius: 3.8rem;
      padding: 2.8rem 3rem;
      /* box-shadow: 0 45px 65px -32px #0a314b, 0 10px 20px -6px rgba(0,40,70,0.1);
      border: 1px solid rgba(255,255,255,0.7); */
    }

    /* images */
    .fluid-image {
      width: 100%;
      border-radius: 2.2rem;
      border: 4px solid white;
      box-shadow: 0 28px 38px -22px #0f3857;
      object-fit: cover;
      transition: all 0.3s;
    }

    .fluid-image:hover {
      transform: scale(1.01);
      box-shadow: 0 32px 44px -22px #093457;
    }

    /* headings */
    /* h1 {
      font-size: 3.4rem;
      font-weight: 750;
      background: linear-gradient(140deg, #0f3c60, #2367a2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.3rem;
      font-weight: 700;
      color: #103d5e;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin: 2.2rem 0 1.2rem;
    } */

    /* h2 i {
      background: #dfefff;
      padding: 0.8rem;
      border-radius: 1.8rem;
      color: #1b66a5;
    } */
/* 
    h3 {
      font-size: 1.6rem;
      font-weight: 660;
      color: #18496b;
      margin-bottom: 0.8rem;
    } */

    .chip {
      display: inline-block;
      background: #1b5785;;
      border-radius: 60px;
      padding: 0.5rem 2rem;
      font-weight: 600;
      color: #ffffff;
      border: 1px solid #c2ddff;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
      backdrop-filter: blur(2px);
    }

    /* intro split */
    .intro-duo {
      display: flex;
      flex-wrap: wrap;
      gap: 2.4rem;
      /* margin: 2rem 0 2.8rem; */
    }

    .intro-txt {
      flex: 1 1 320px;
    }

    .intro-img {
      flex: 1 1 280px;
    }

    .intro-txt p {
      background: #e6f1ffb0;
      padding: 2rem;
      border-radius: 2.8rem;
      border-left: 8px solid #2577bb;
      font-size:17px;
      box-shadow: 0 14px 22px -18px #143c5c;
    }

    .highlight-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: white;
      border-radius: 60px;
      padding: 1rem 2rem;
      margin-top: 1.2rem;
      font-weight: 600;
      color:#2577bb;
      border: 1px solid #b9d7fd;
    }

    /* about + extra visual */
    .about-duo {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2.2rem;
      margin: 2.5rem 0 2rem;
    }

    .about-card-blue {
      background: #d8ebff;
      border-radius: 2.8rem;
      padding: 2rem 2.2rem;
      border: 2px solid white;
    }

    .about-card-blue i {
      font-size: 2.6rem;
      background: #c4e0fe;
      padding: 0.8rem;
      border-radius: 1.8rem;
      color: #1e6bb0;
    }

    @media (max-width: 800px) {
      .about-duo { grid-template-columns: 1fr; }
    }

    /* what you learn — card with 2 cols */
    .learn-zone {
      background: #ffffff;
      border-radius: 3rem;
      padding: 2.2rem 2.5rem;
      border: 1px solid #d2e8ff;
      box-shadow: 0 20px 28px -28px #143f62;
      margin: 2rem 0;
    }

    .dual-bullet {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem 2.5rem;
      margin-top: 1.5rem;
    }

    .dual-bullet div {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-weight: 500;
      font-size: 1.05rem;
    }

    .dual-bullet i {
      color: #1d74ba;
      font-size: 1.5rem;
    }

    @media (max-width: 600px) {
      .dual-bullet { grid-template-columns: 1fr; }
    }

    /* feature grid (3 columns) */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 2.2rem 0;
    }

    .feature-card {
      background: white;
      border-radius: 2.5rem;
      padding: 2rem 1.5rem;
      border: 1px solid #cae0fc;
      box-shadow: 0 16px 26px -22px #154466;
    }

    .feature-card i {
      font-size: 2.5rem;
      background: #deefff;
      padding: 0.8rem;
      border-radius: 1.8rem;
      color: #1968aa;
      margin-bottom: 1.2rem;
    }

    @media (max-width: 850px) {
      .feature-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 550px) {
      .feature-grid { grid-template-columns: 1fr; }
    }

    /* two column info (who can join / duration) */
    .info-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 2.5rem 0;
    }

    .info-block {
      background: #eef5ff;
      border-radius: 2.8rem;
      padding: 2.2rem 2rem;
      border: 2px solid white;
    }

    .info-block ul {
      list-style: none;
    }

    .info-block li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .info-block li i {
      color: #1f71b5;
    }

    @media (max-width: 700px) {
      .info-panel { grid-template-columns: 1fr; }
    }

    /* career opportunities + why choose modern */
    .career-wrap {
      background: #ffffff;
      border-radius: 3rem;
      padding: 2.4rem 2.5rem;
      border: 1px solid #bad5fc;
      margin: 2rem 0 2.5rem;
    }

    .career-double {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem 2rem;
      margin-top: 1.5rem;
    }

    .career-double div {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .career-double i {
      color: #1d6db0;
      font-size: 1.5rem;
    }

    @media (max-width: 550px) {
      .career-double { grid-template-columns: 1fr; }
    }

    /* pill reasons */
    .pill-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
      margin: 2rem 0 1rem;
    }

    .pill {
      background: white;
      border-radius: 60px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      color: #154e7a;
      border: 1px solid #bed9ff;
      box-shadow: 0 5px 12px #e0efff;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .pill i {
      color: #2170b3;
    }

    /* big CTA */
    .cta-premium {
      background: radial-gradient(120% 150% at 10% 30%, #134267, #072a43);
      border-radius: 4rem;
      padding: 3rem 3.2rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
      margin: 3rem 0 1.8rem;
      border: 1px solid #4b85b5;
    }

    .cta-premium h3 {
      color: white;
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .cta-premium p {
      color: #ffffffcc;
      font-size: 1.3rem;
    }

    .cta-button {
      background: #ffb347;
      color: #072c44;
      font-size: 1.9rem;
      font-weight: 700;
      padding: 1.2rem 3.2rem;
      border-radius: 60px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 22px 32px -14px #010d15;
      transition: all 0.2s;
    }

    .cta-button:hover {
      background: #ffa525;
      transform: scale(1.02);
    }

   

    /* responsiveness */
    @media (max-width: 700px) {
      .mastercard { padding: 2rem 1.5rem; }
      h1 { font-size: 2.6rem; }
      .cta-button { font-size: 1.4rem; padding: 1rem 2rem; }
    }


    .bg-soft-blur-lapy {
            position: fixed;
            top: -20vh;
            right: -10vw;
            width: 70vw;
            height: 70vh;
            background: radial-gradient(circle at 70% 30%, rgba(0,153,255,0.08) 0%, transparent 60%);
            z-index: -2;
            pointer-events: none;
        }
        .bg-soft-blur-lapy2 {
            position: fixed;
            bottom: -10vh;
            left: -5vw;
            width: 60vw;
            height: 60vh;
            background: radial-gradient(circle at 20% 80%, rgba(29,109,240,0.08) 0%, transparent 70%);
            z-index: -2;
            pointer-events: none;
        }

        .container-lapy {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* --- navigation (glass) --- */
        .navbar-lapy {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 8px 28px -6px rgba(0,30,60,0.08);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav-container-lapy {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo-lapy {
            display: flex;
            align-items: baseline;
        }
        .logo-lapy h2 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(130deg, #10316b, #1d6df0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .logo-lapy span {
            font-size: 0.9rem;
            font-weight: 500;
            background: #eef3ff;
            color: #10316b;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            margin-left: 10px;
        }

        .nav-links-lapy {
            display: flex;
            gap: 2.5rem;
            font-weight: 550;
            align-items: center;
        }
        .nav-links-lapy a {
            text-decoration: none;
            color: #1a2b4e;
            transition: 0.2s;
            font-size: 1.05rem;
        }
        .nav-links-lapy a:not(.nav-cta-lapy):hover {
            color: #1d6df0;
        }
        .nav-cta-lapy {
            background: #0b1b33;
            color: white !important;
            padding: 0.55rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 8px 18px -6px #0b1b3340;
            transition: 0.2s;
        }
        .nav-cta-lapy:hover {
            background: #1d6df0;
            transform: scale(1.02);
        }

        /* --- hero --- */
        .hero-lapy {
            padding: 3rem 0 2rem;
        }
        .hero-grid-lapy {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
                margin-top: -50px;
        }
        .hero-content-lapy {
            flex: 1 1 350px;
        }
        .mini-tag-lapy {
            background: rgba(29,109,240,0.12);
            color: #10316b;
            font-weight: 600;
            padding: 0.3rem 1.3rem;
            border-radius: 40px;
            display: inline-block;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            border: 1px solid rgba(29,109,240,0.25);
            margin-bottom: 1.3rem;
        }
        .hero-content-lapy h1 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.1;
           background: linear-gradient(to right, #0a1c3a, #0a1c3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.2rem;
        }
        .hero-highlight-lapy {
            font-size: 15px;
            color: #2b3b60;
            max-width: 520px;
            margin-bottom: 2.2rem;
            border-left: 5px solid #1d6df0;
            padding-left: 1.4rem;
            background: rgba(255,255,255,0.5);
            border-radius: 0 20px 20px 0;
            text-align: justify;
        }
        .hero-badge-group-lapy {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .badge-pill-lapy {
            background: white;
            box-shadow: 0 6px 18px rgba(0,0,0,0.02);
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
            color: #0b1b33;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #eef4ff;
        }
        .badge-pill-lapy i {
            color: #1d6df0;
            font-size: 1.2rem;
        }

        .hero-visual-lapy {
            flex: 1 1 350px;
            /* background: linear-gradient(140deg, #ffffff, #f1f7ff); */
            border-radius: 70px 70px 70px 20px;
            padding: 2.5rem 2rem;
            /* box-shadow: 0 35px 55px -25px rgba(0,50,120,0.25); */
            /* border: 1px solid rgba(255,255,255,0.8); */
            backdrop-filter: blur(4px);
            text-align: center;
        }

         .hero-visual-lapy img{
            border-radius: 10px;
         }
        .floating-icon-lapy {
            font-size: 4.5rem;
            color: #1d6df0;
            filter: drop-shadow(0 8px 14px #1d6df030);
            animation: float-lapy 4s infinite ease-in-out;
        }
        @keyframes float-lapy {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        .brand-cloud-lapy {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
            margin: 1.8rem 0 1rem;
            font-weight: 600;
            background: rgba(255,255,255,0.5);
            padding: 1.2rem 1.8rem;
            border-radius: 70px;
        }
        .brand-cloud-lapy span {
            background: white;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        /* section titles */
        .section-title-lapy {
            text-align: center;
            margin: 4rem 0 2.5rem;
        }
        .section-title-lapy h2 {
            font-size: 2.7rem;
            font-weight: 700;
            letter-spacing: -0.02em;
           background: linear-gradient(to right, #0a1c3a, #0a1c3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .section-title-lapy p {
            color: #3b4e6b;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0.5rem auto 0;
        }

        /* ===== PRECISION REPAIR SECTION ===== */
        /* using images instead of icons + unique class names */
        .solutions-grid-lapy {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 2rem;
            margin: 2rem 0 1rem;
        }
        .solution-card-lapy {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 36px;
            padding: 2.2rem 1.5rem;
            box-shadow: 0 18px 35px -12px rgba(0,40,100,0.12);
            transition: all 0.25s;
            text-align: center;
        }
        .solution-card-lapy:hover {
            background: white;
            border-color: white;
            box-shadow: 0 30px 45px -16px #1d6df070;
            transform: translateY(-8px);
        }

        /* image wrapper — unique classes */
        .solution-img-lapy {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.4rem auto;
            background-color: #eaf1fe;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem;
            box-shadow: 0 8px 16px -6px rgba(29,109,240,0.2);
            transition: 0.2s;
        }
        .solution-card-lapy:hover .solution-img-lapy {
            background-color: #d4e2ff;
        }
        .solution-img-lapy img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .solution-card-lapy h3 {
            font-size: 20px;;
            font-weight: 650;
            margin-bottom: 0.3rem;
        }
        .solution-card-lapy p {
            color: #2e4468;
            font-size: 0.95rem;
        }

        /* process stepper */
        .process-steps-lapy {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin: 3rem 0;
        }
        .step-lapy {
            flex: 1 1 180px;
            background: white;
            border-radius: 40px;
            padding: 2.2rem 1.5rem;
            text-align: center;
            box-shadow: 0 16px 32px -12px rgba(0,33,94,0.1);
            border: 1px solid #ffffff;
            transition: 0.2s;
            position: relative;
        }
        .step-lapy:hover {
            border-color: #a3c6ff;
        }
        .step-num-lapy {
            width: 60px;
            height: 60px;
            background: #0b1b33;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 18px #0b1b3340;
        }
        .step-lapy:nth-child(2) .step-num-lapy { background: #1d6df0; }
        .step-lapy:nth-child(3) .step-num-lapy { background: #2563eb; }
        .step-lapy:nth-child(4) .step-num-lapy { background: #10316b; }

        /* why choose us cards */
        .highlights-grid-lapy {
          display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin: 2rem 0 2rem;
        }
        .highlight-item-lapy {
            background: white;
            border-radius: 30px;
            padding: 2.3rem 1.8rem;
            box-shadow: 0 16px 30px -10px rgba(0,0,0,0.05);
            transition: 0.2s;
            border: 1px solid #f0f5ff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .highlight-item-lapy i {
            font-size: 2.5rem;
            color: #1d6df0;
            margin-bottom: 1.2rem;
            background: #eaf1fe;
            padding: 0.8rem;
            border-radius: 20px;
        }
        .highlight-item-lapy h4 {
            font-size: 1.5rem;
            margin-bottom: 0.2rem;
        }
        .highlight-item-lapy p {
            color: #365277;
        }

        /* service tagline */
        .service-tagline-lapy {
            background: linear-gradient(115deg, #ffffff, #f1f9ff);
            border-radius: 100px 100px 100px 20px;
            padding: 3rem 2.5rem;
            margin: 3rem 0;
            border: 1px solid #cddfff;
        }
        .tagline-flex-lapy {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            justify-content: center;
        }
        .tagline-flex-lapy span {
            background: #ffffffd6;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 3px 8px rgba(0,0,0,0.02);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(4px);
            border: 1px solid white;
        }
        .tagline-flex-lapy i {
            color: #1d6df0;
        }

        /* cta premium */
        .cta-premium-lapy {
            background: linear-gradient(125deg, #0a1b3a, #143e8a);
            border-radius: 70px 70px 70px 20px;
            padding: 4rem 3rem;
            margin: 4rem 0 3rem;
            color: white;
            box-shadow: 0 40px 55px -20px #0b1b33;
        }
        .cta-flex-lapy {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2.5rem;
        }
        .cta-left-lapy h3 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
        }
        .cta-left-lapy p {
            font-size: 1.3rem;
            opacity: 0.85;
            margin-top: 0.5rem;
        }
        .cta-btn-modern-lapy {
            background: white;
            color: #0b1b33;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 60px;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 20px 30px -8px rgba(0,0,0,0.3);
            transition: 0.2s;
            text-decoration: none;
            border: 2px solid transparent;
        }
        .cta-btn-modern-lapy:hover {
            background: #eef4ff;
            border-color: white;
            transform: scale(1.02);
        }

        /* footer */
        .footer-lapy {
            text-align: center;
            padding: 2.5rem 0 3rem;
            color: #3d5273;
            border-top: 2px solid rgba(29,109,240,0.08);
        }

        /* responsiveness */
        @media (max-width: 700px) {
            .nav-container-lapy { flex-direction: column; gap: 0.8rem; }
            .hero-content-lapy h1 { font-size: 2.8rem; }
            .hero-grid-lapy { flex-direction: column; }
            .section-title-lapy h2 { font-size: 2rem; }
            .cta-left-lapy h3 { font-size: 2rem; }
            .cta-btn-modern-lapy { padding: 1rem 2rem; font-size: 1.2rem; }
            .service-tagline-lapy { border-radius: 50px; padding: 2rem 1rem; }
        }
        @media (max-width: 480px) {
            .container-lapy { padding: 0 1.2rem; }
            .brand-cloud-lapy { flex-direction: column; align-items: center; }
        }
        hr {
            border: 1px solid rgba(0,60,130,0.1);
            margin: 2rem 0;
        }


        /* MAIN SECTION */
.lapyx-service-section{
    background:#f3f6fb;
    padding:30px 20px;
}

.lapyx-wrapper{
    max-width:1200px;
    margin:auto;
}

/* GRID */
.lapyx-grid-box{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.lapyx-service-card{
    background:#ffffff;
    border-radius:22px;
    padding:25px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
}

.lapyx-service-card:hover{
    transform:translateY(-10px);
}

/* IMAGE BOX */
.lapyx-img-holder{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:15px;
    border-radius:22px;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.lapyx-img-holder img{
    width:50px;
}

/* TEXT */
.lapyx-service-title{
    font-size:18px;
    color:#2c3e50;
    margin-bottom:8px;
    font-weight:600;
}

.lapyx-service-desc{
    font-size:14px;
    color:#6c7a89;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:992px){
    .lapyx-grid-box{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .lapyx-grid-box{
        grid-template-columns:1fr;
    }
}