/*** Spinner Start ***/

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

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

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 46px;
    height: 46px;
}

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

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

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #012e57;
    font-size: 18px;
    outline: none;
       font-family: "Muli", sans-serif;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #012e57 !important;
}

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, .6); */
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: #088341;
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: #088341;
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        /* min-height: 500px; */
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        /* min-height: 400px; */
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}



/* Make images full width */
.carousel-item img {
    width: 100%;
    /* height: auto; */
    object-fit: cover;
}

/* Fix carousel height */
.carousel-item {
    /* min-height: 80vh; */
}

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

    .carousel-item {
        /* min-height: 60vh; */
    }

    .carousel-item img {
        /* min-height: 60vh; */
        object-fit: cover;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 45px;
    }

}

/* Mobile View */
@media (max-width: 768px) {

    .carousel-item {
        /* min-height: 45vh; */
    }

    .carousel-item img {
        /* min-height: 45vh; */
        object-fit: cover;
    }

    /* Smaller arrows */
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 40px;
    }

    /* Reduce indicator size */
    #carouselId .carousel-indicators li {
        width: 18px;
        height: 6px;
        margin: 5px;
    }

}


.carousel-indicators {
    display: none !important;
}


/* Small Mobile */
@media (max-width: 480px) {

    .carousel-item {
        min-height: 35vh;
    }

    .carousel-item img {
        /* min-height: 35vh; */
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 35px;
                margin-top: -70px;
    }

}
@media (max-width: 768px) {

    .container-fluid.bg-secondary {
        margin-top: -40px;
    }

}



.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/gallery7.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat; */
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #012e57;
}

.contact-form {
    background: #012e57;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
    font-family: "Muli", sans-serif;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/


.py-31{
    padding-top: 1rem !important;
 }


.logo-img {
    height: 129px !important;
    width: auto;
    max-width: 100%;
    margin-top: -12px;
    margin-bottom: -17px;
}

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

/* Mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 120px;
  }
}
.mb-41{
    color: #012c53 !important;
}

.ok1{
  /* background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment:scroll;
    width: 100%;
    opacity: 1px;
    margin-top: -50px;
    margin-bottom: 30px; */
 /* background-color: red; */
}


@media (max-width: 425px) {

    .okkkk {
        margin-top: 50px !important;
    }

}


/* Section */
.uniform-section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
    
     

}

/* Title */
.uniform-title{
    text-align:center;
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
}

/* Card Grid */
.uniform-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:25px;
}

/* Card */
.uniform-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    display:flex;
    flex-direction:column;
    transition:0.3s;
}

.uniform-card:hover{
    transform:translateY(-5px);
}

/* Image */
.uniform-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

/* Content */
.uniform-content{
    padding:25px;
    text-align:center;
    flex:1;
}

.uniform-content h3{
    font-size:22px;
    margin-bottom:15px;
    color:#000;
}

.uniform-content p{
    font-size:15px;
    color:#555;
    line-height:1.6;
    text-align: center;
}

/* Button */
.uniform-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

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

/* Responsive */

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

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

    .uniform-title{
        font-size:26px;
    }
}


.center-btn{
    text-align:center;
    margin-top:40px;
}

.center-btn a{
    display:inline-block;
    padding:14px 35px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

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



/* Section */
.choose-section{
    padding:70px 20px;
    max-width:1200px;
    margin:auto;
}

/* Title */
.choose-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#012e57;
    margin-bottom:50px;
}

/* Layout */
.choose-wrapper{
    display:grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap:30px;
    align-items:center;
}

/* Info Box */
.choose-box{
    background:#fff;
    padding:25px 22px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    margin-bottom:25px;
}

.choose-box h3{
    color:#012e57;
    font-size:18px;
    margin-bottom:10px;
}

.choose-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Center Image */
.choose-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    margin-top: -30px;
}

/* Responsive */

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

    .choose-wrapper{
        grid-template-columns:1fr;
    }

    .choose-image{
        order:-1;
        margin-bottom:30px;
    }
}

/* Mobile */
@media(max-width:600px){

    .choose-title{
        font-size:26px;
    }

    .choose-box{
        padding:20px;
    }
}



.book-section{
    width:100%;
    min-height:350px;
    background:url("img/book-bg.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
        margin-top: -29px;
}

/* Blue Overlay */
.book-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
        background-color: #012e57;
    z-index:1;
}

/* Content */
.book-content{
    position:relative;
    z-index:2;
    max-width:800px;
    color:#fff;
}

/* Heading */
.book-content h2{
    font-size:42px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

/* Text */
.book-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
}

/* Button */
.book-content a{
    display:inline-block;
    background:#fff;
    color:#012e57;
    padding:12px 30px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:4px;
    transition:0.3s;
}

.book-content a:hover{
    background:#fff;
    color:#012e57;
}

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

    .book-content h2{
        font-size:32px;
    }

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

}

/* Mobile */
@media(max-width:480px){

    .book-section{
        min-height:300px;
        padding:30px 15px;
    }

    .book-content h2{
        font-size:26px;
    }

    .book-content p{
        font-size:14px;
    }

    .book-content a{
        padding:10px 24px;
        font-size:14px;
    }

}



/* Gallery Section */
.gallery-section{
    width:100%;
    padding:60px 20px;
    background:#f8f9fa;
    margin-top: -50px;
    margin-bottom: 50px;
}

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

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

.gallery-title p{
    font-size:16px;
    color:#666;
}

/* Gallery Grid */
.gallery-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

/* Image Box */
.gallery-item{
    overflow:hidden;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

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

/* Hover Effect */
.gallery-item:hover img{
    transform:scale(1.1);
}

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

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

}

/* Mobile View */
@media(max-width:576px){

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

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

}


/* FAQ Section */
.faq-section{
    width:100%;
    padding:60px 20px;
    /* background:#ffffff; */
}

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

.faq-title h2{
    font-size:36px;
    font-weight:700;
}

/* Container */
.faq-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* FAQ Box */
.faq-box{
    background:#fff;
    border-radius:6px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    overflow:hidden;
}

/* Item */
.faq-item{
    border-bottom:1px solid #ddd;
}

/* Question */
.faq-question{
    width:100%;
    padding:18px 20px;
    background:#fff;
    border:none;
    outline:none;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
}

/* Active */
.faq-question.active{
    background:#0066cc;
    color:#fff;
}

/* Icon */
.faq-question span{
    font-size:20px;
    transition:0.3s;
}

/* Rotate */
.faq-question.active span{
    transform:rotate(180deg);
}

/* Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    background:#f9fbff;
    transition:0.4s;
}

.faq-answer p{
    padding:15px 0;
    font-size:15px;
    line-height:1.6;
    color:#333;
}

/* Image */
.faq-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

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

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

}

/* Mobile */
@media(max-width:576px){

    .faq-title h2{
        font-size:26px;
    }

    .faq-question{
        font-size:15px;
        padding:15px;
    }

}
.ok2{
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);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}

/* Mobile Responsive */
@media(max-width:768px){
    .whatsapp-float{
        width:50px;
        height:50px;
        font-size:26px;
        bottom:20px;
        right:20px;
    }
}


.top-contact-section {
    /* background: #f2f2f2; */
    /* padding: 60px 20px; */
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.contact-box {
    flex: 1;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: #012e57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: #fff;
    font-size: 30px;
}

.contact-box p {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin: 0;
        text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}



.mission-vision-section{
    padding:60px 20px;
}

.mv-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.mv-box{
    background:#2f4678;
    color:#fff;
    padding:40px;
    border-radius:15px;
    flex:1 1 500px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.mv-box:hover{
    transform:translateY(-5px);
}

.mv-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.mv-icon{
    width:50px;
    height:50px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#2f4678;
}

.mv-title{
    font-size:22px;
    font-weight:600;
}

.mv-text{
    font-size:15px;
    line-height:1.8;
    color:#e5e5e5;
}

/* Responsive */
@media (max-width:768px){
    .mv-container{
        flex-direction:column;
    }
    .mv-box{
        padding:30px;
    }
}


.equipment-section{
    padding:80px 20px;
    text-align:center;
    background-color: #f9fbff;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#0f4c4c;
    margin-bottom:15px;
}

.section-subtitle{
    color:#5f6f7a;
    font-size:16px;
    margin-bottom:60px;
}

/* CHANGE HERE - Using Grid for 4 Columns */
.equipment-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.equipment-box{
      background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.equipment-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.icon-circle{
    width:80px;
    height:80px;
    background:#d7dde3;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}

.equipment-title{
    font-size:16px;
    font-weight:600;
    color:#0f4c4c;
    margin-bottom:12px;
}

.equipment-text{
    font-size:14px;
    color:#6c757d;
    line-height:1.6;
}

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

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

    .section-title{
        font-size:28px;
    }
}



.heavy-section{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
        margin-top: 60px;
    margin-bottom: 60px;
}
.heavy-image{
    position: relative;
    z-index: 1;
    
}

.heavy-image img{
    border-radius: 20px;
}

.heavy-image::before{
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: #1d3557; /* Corner color */
    border-radius: 20px;
    z-index: -1;
}




.heavy-imagee{
    position: relative;
    z-index: 1;
    
}

.heavy-imagee img{
    border-radius: 20px;
}

.heavy-imagee::before{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: #1d3557; /* Corner color */
    border-radius: 20px;
    z-index: -1;
}

.heavy-content{
    flex:1 1 500px;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.heavy-content h2{
    font-size:32px;
    color:#1d3557;
    margin-bottom:20px;
}

.heavy-content p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:25px;
}

.heavy-content h3{
    font-size:22px;
    margin-bottom:15px;
    color:#000;
}

.heavy-content ul{
    list-style:disc;
    padding-left:20px;
}

.heavy-content ul li{
    margin-bottom:10px;
    color:#444;
    font-size:15px;
}

/* Responsive */
@media(max-width:992px){
    .heavy-section{
        gap:30px;
    }
    .heavy-content{
        padding:30px;
    }
}

@media(max-width:768px){
    .heavy-section{
        flex-direction:column;
    }
    .heavy-content{
        padding:25px;
    }
    .heavy-content h2{
        font-size:26px;
    }
}



/* ----- OVERVIEW (with subtle image) ----- */
    .overview {
      padding: 5rem 0 3rem;
      background: #fafafa;
    }

    .overview-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3.5rem;
    }

    .overview-content {
      flex: 1 1 400px;
    }

    .overview-content h2 {
      /* font-size: 3rem; */
      font-weight: 700;
      color: #0a2a3b;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      border-left: 8px solid #ff671e;
      padding-left: 1.8rem;
    }

    .overview-content p {
      /* font-size: 1.2rem; */
      color: #2c3e4f;
      margin-bottom: 2rem;
    }

    .stats-mini {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .stat-pill {
      background: white;
      border-radius: 60px;
      padding: 0.5rem 1.8rem 0.5rem 1.2rem;
      box-shadow: 0 8px 18px -8px rgba(0,35,60,0.15);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #0e3b4f;
    }

    .stat-pill i {
      color: #ff671e;
      font-size: 2rem;
    }

    .overview-image {
      flex: 1 0 360px;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px #0f3e58;
      height: 280px;
    }

    .overview-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .overview-image:hover img {
      transform: scale(1.03);
    }

    /* ----- INDUSTRIES GRID (image cards) ----- */
    .industries-grid {
      padding: 5rem 0;
      background: white;
    }

    .section-title {
      /* font-size: 3.2rem; */
      font-weight: 700;
      color: #0a2a3b;
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title span {
      background: #ff671e;
      padding: 0.2rem 1.5rem;
      border-radius: 40px;
      font-size: 1.3rem;
      font-weight: 500;
      color: #0a2a3b;
      display: inline-block;
      margin-bottom: 0.8rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .industry-card {
      background: #ffffff;
      border-radius: 32px;
      box-shadow: 0 12px 28px -10px rgba(0, 50, 70, 0.15);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 40px -12px #16486380;
      border-color: #ff671e;
    }

    .card-img {
      height: 160px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    /* unique images for each card (all from unsplash) */
    .img-manu { background-image: url('../img/industries1.png'); }
    .img-const { background-image: url('../img/industries2.png'); }
    .img-power { background-image: url('../img/industries3.png'); }
    .img-solar { background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop'); }
    .img-eng { background-image: url('../img/Housekeeping.png'); }
    .img-gov { background-image: url('../img/industries6.png'); }
    .img-corp { background-image: url('../img/industries7.png'); }
    .img-ware { background-image: url('../img/paint.png'); }
    .img-hosp { background-image: url('../img/Hospital.png'); }

    .card-icon {
      position: absolute;
      bottom: -20px;
      right: 16px;
      background: #0b2b40;
      color: #ffffff;
      width: 58px;
      height: 58px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
      border: 3px solid white;
    }

    .card-content {
      padding: 1.8rem 1.5rem 2rem;
    }

    .industry-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 0.7rem;
      color: #0a2a3b;
    }

    .industry-card p {
      color: #2d4a62;
      font-size: 1rem;
      line-height: 1.5;
    }

    /* ----- WHY APPROACH (with background image strip) ----- */
    .why-approach {
      background: linear-gradient(115deg, #f9fafb 40%, #eef2f6 100%);
      padding: 5rem 0;
      position: relative;
      isolation: isolate;
    }

    .why-approach::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop') right/cover no-repeat;
      opacity: 0.06;
      z-index: -1;
    }

    .approach-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }

    .approach-text {
      flex: 1 1 380px;
    }

    .approach-text h2 {
      font-size: 29px;
      font-weight: 700;
      color: #0a2a3b;
      line-height: 1.2;
    }

    .approach-text h2 i {
      color: #ff671e;
      margin-right: 12px;
    }

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

    .check-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      /* font-size: 1.2rem; */
      font-weight: 500;
      background: white;
      padding: 0.6rem 1.2rem 0.6rem 0.8rem;
      border-radius: 50px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.02);
    }

    .check-item i {
      color: #ff671e;
      font-size: 1.8rem;
    }

    .approach-quote {
      background: #0b2b40;
      padding: 2.5rem 2.2rem;
      border-radius: 80px 20px 80px 20px;
      color: white;
      flex: 1 1 360px;
      box-shadow: 0 30px 30px -20px #08212e;
      border-left: 6px solid #ff671e;
    }

    .approach-quote p {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 1.8rem;
      color:white;
    }

    .approach-quote .author {
      color: #ff671e;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

 
 

    /* responsive */
    @media (max-width: 700px) {
      .banner h1 { font-size: 2.8rem; }
      .section-title { font-size: 2.5rem; }
      .check-grid { grid-template-columns: 1fr; }
      .approach-text h2 { font-size: 2.5rem; }
       
      .overview-image { height: 220px; }
    }

    @media (max-width: 480px) {
      .banner .intro { font-size: 1rem; padding: 1rem; }
      .stat-pill { font-size: 0.9rem; }
    }



           .about-grid {
            display: flex;
            gap: 4rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .about-text {
            flex: 1.1;
            min-width: 320px;
        }
        .about-text p {
            /* font-size: 10px; */
            color: #1e445a;
            margin: 1.8rem 0 2rem;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 30px;
            /* box-shadow: 0 15px 20px -10px #9bb8d0; */
            border-left: 6px solid #f5b041;
        }
        .feature-badge-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .feature-badge {
            background: white;
            padding: 1rem 1.2rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            color: #10384b;
            box-shadow: 0 10px 15px -8px #9bb4c7;
            transition: 0.15s;
            border: 1px solid #eaf0f6;
        }
        .feature-badge i {
            color: #f5b041;
            font-size: 1.6rem;
            width: 2rem;
        }
        .feature-badge:hover {
            background: #ffeedb;
            transform: translateY(-3px);
            border-color: #f5b041;
        }
        .about-image-block {
            flex: 0.9;
            border-radius: 50px 50px 50px 50px;
            overflow: hidden;
            box-shadow: 0 35px 45px -20px #07405b;
            border: 4px solid rgba(255,255,240,0.5);
            transition: transform 0.3s;
        }
        .about-image-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 1s ease;
        }
        .about-image-block:hover img {
            transform: scale(1.03);
        }

        /* 3. OPENINGS – clean, with background pattern */
        .job-panel {
            background: #ffffffd9;
            backdrop-filter: blur(4px);
            border-radius: 60px;
            padding: 3rem;
            box-shadow: 0 35px 40px -20px #38658f30;
            border: 1px solid rgba(255,255,255,0.8);
            background-image: radial-gradient(circle at 10% 20%, rgba(245,176,65,0.03) 0%, transparent 30%);
        }
        .pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.3rem;
            margin-bottom: 2.2rem;
        }
        .pill-job {
            background: #edf5fb;
            padding: 1rem 2.1rem;
            border-radius: 50px;
            font-weight: 600;
            color: #123b50;
            box-shadow: 0 5px 10px -3px #bacddc;
            transition: 0.2s;
            border: 1px solid white;
            font-size: 1.1rem;
        }
        .pill-job i {
            color: #f5b041;
            margin-right: 8px;
        }
        .pill-job:hover {
            background: #f5b041;
            color: #102f3f;
            transform: scale(1.05) translateY(-4px);
            box-shadow: 0 18px 20px -10px #a96f1e;
            border-color: #f5b041;
        }
        .pill-job:hover i {
            color: #0f3447;
        }
        .fresher-note-image {
            background: #fef5e9;
            border-radius: 60px;
            padding: 1.2rem 2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            font-size: 1.2rem;
            border-left: 8px solid #f5b041;
            box-shadow: 0 10px 18px -8px #e5c8a2;
        }
        .fresher-note-image i {
            color: #dd9b2b;
        }

        /* 4. PROCESS with subtle bg */
        .process-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .process-card-img {
            flex: 1 1 190px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(8px);
            border-radius: 40px;
            padding: 2.2rem 1rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 0 25px 30px -15px #0b3954;
            transition: 0.25s;
        }
        .process-card-img:hover {
            background: white;
            transform: translateY(-8px);
        }
        .proc-icon {
            background: #0e3f59;
            width: 75px;
            height: 75px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 15px 15px -8px #032d40;
        }

        /* 5. BENEFITS with image placeholder (icon + image vibe) */
        .benefits-grid-img {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .benefit-card-picto {
            background: white;
            padding: 2rem 1rem;
            border-radius: 40px;
            text-align: center;
            box-shadow: 0 20px 30px -10px #b0cfdf;
            transition: 0.2s;
            border: 1px solid white;
        }
        .benefit-card-picto:hover {
            border-color: #f5b041;
            transform: scale(1.02);
        }
        .benefit-card-picto i {
            font-size: 3rem;
            background: linear-gradient(145deg, #f5b041, #ff8f1f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.8rem;
        }
 
        /* utility */
        .text-center { text-align: center; }
        img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 800px) {
            .banner h1 { font-size: 3.2rem; }
            .section-title { font-size: 2rem; }
            .feature-badge-container { grid-template-columns: 1fr; }
        }

        


               .section {
            padding: 70px 0;
        }

        .section-sm {
            padding: 50px 0;
        }

        .bg-white {
            background: #ffffff;
        }

        .bg-soft {
            background: #f0f6ff;
        }

        /* ===== headings ===== */
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #0b2b4a;
            margin-bottom: 16px;
        }

        .section-subhead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #2c3e5c;
            max-width: 720px;
            margin-bottom: 40px;
            border-left: 5px solid #ff8a4c;
            padding-left: 24px;
            background: rgba(255, 138, 76, 0.04);
            border-radius: 0 8px 8px 0;
        }

        /* banner */
        .banner {
            background: linear-gradient(145deg, #0b2f4e 0%, #143c5c 100%);
            color: white;
            border-radius: 0 0 48px 48px;
            margin-top: 0;
            padding: 64px 0;
            box-shadow: 0 15px 30px -10px rgba(0, 40, 70, 0.3);
        }

        .banner .container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .banner h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 900px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #ffe2d1 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .banner .subheading {
            font-size: 1.8rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .banner .subheading i {
            color: #ffb347;
        }

        .banner .intro {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 750px;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(4px);
            padding: 16px 28px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        /* feature grid (about) */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p {
            font-size: 1.18rem;
            color: #1e3349;
            margin-bottom: 28px;
        }

        .benefit-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 32px;
            margin-top: 20px;
        }

        .benefit-tags span {
            font-size: 1.1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .benefit-tags i {
            color: #ff7011;
            font-size: 1.5rem;
            width: 32px;
        }

        .about-highlight {
            background: #ffffff;
            border-radius: 40px;
            padding: 40px 30px;
            /* box-shadow: 0 25px 40px -20px rgba(0, 30, 70, 0.15); */
            /* border: 1px solid rgba(255, 115, 0, 0.2); */
        }

        .about-highlight h3 {
            font-size: 2rem;
            margin-bottom: 24px;
            color: #0b2b4a;
        }

        /* job grid */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin: 40px 0 30px;
        }

        .job-card {
            background: white;
            padding: 24px 18px;
            border-radius: 28px;
            box-shadow: 0 8px 18px -6px rgba(0, 30, 50, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #eaf0f8;
            text-align: center;
        }

        .job-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 30px -12px rgba(230, 110, 30, 0.2);
            border-color: #ffbc8c;
        }

        .job-card i {
            font-size: 2.3rem;
            background: #fdeee5;
            padding: 18px;
            border-radius: 50px;
            color: #d95104;
            margin-bottom: 16px;
        }

        .job-card h4 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #0f2f4a;
        }

        .job-card p {
            color: #3f566e;
            font-size: 0.95rem;
            text-align: center;
        }

        .fresher-note {
            background: #ffefe3;
            border-radius: 60px;
            padding: 18px 28px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            font-size: 1.15rem;
            margin-top: 10px;
            border: 1px dashed #f07c2e;
        }

        .fresher-note i {
            color: #bb4b00;
        }

        /* process steps */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 50px 0 20px;
        }

        .step {
            background: white;
            flex: 1 1 200px;
            border-radius: 32px;
            padding: 32px 16px;
            text-align: center;
            box-shadow: 0 20px 30px -10px rgba(0, 40, 70, 0.1);
            border-bottom: 5px solid #ff914d;
        }

        .step .step-num {
            background: #0b2f4e;
            color: white;
            width: 50px;
            height: 50px;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 60px;
            line-height: 50px;
            text-align: center;
            margin: 0 auto 20px;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .step p {
            color: #3b4d62;
            text-align: center;
        }

        .process-footer {
            text-align: center;
            background: #e3f0fc;
            padding: 20px 28px;
            border-radius: 90px;
            color: #0b2f4e;
            font-weight: 500;
            max-width: 600px;
            margin: 40px auto 0;
        }

        /* employee benefits cards */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .benefit-item {
            background: white;
            padding: 30px 20px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 8px 20px #e1ecf9;
            transition: 0.15s;
            border: 1px solid rgba(255, 130, 40, 0.2);
        }

        .benefit-item i {
            font-size: 2.5rem;
            background: #fdaa6b30;
            padding: 18px;
            border-radius: 60px;
            color: #c45300;
            margin-bottom: 20px;
        }

        .benefit-item h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }

         .benefit-item p{
            text-align: center;
         }

        /* responsive */
        @media (max-width: 1100px) {
            .job-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 800px) {
            .banner h1 { font-size: 2.5rem; }
            .banner .subheading { font-size: 1.4rem; }
            .section-title { font-size: 1.9rem; }
            .about-grid { grid-template-columns: 1fr; }
            .job-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { flex-direction: column; }
            .step { max-width: 400px; margin: 0 auto; width: 100%; }
        }

        @media (max-width: 500px) {
            .job-grid { grid-template-columns: 1fr; }
            .banner .intro { font-size: 1.1rem; padding: 14px; }
            .contact-row { flex-direction: column; gap: 16px; }
            .btn-apply { font-size: 1.3rem; padding: 16px 30px; width: 100%; }
        }

        /* utility */
        .text-center { text-align: center; }
        .mt-2 { margin-top: 30px; }
        /* hr { border: 1px solid #e0ecfe; width: 120px; margin: 30px auto; } */




        .apply-btn {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
}