/*** Spinner Start ***/
:root{
    --primary: #2563EB;     /* Blue */
    --secondary: #6D28D9;   /* Purple */
    --accent: #2ED573;      /* Green from logo */
    --dark: #0F172A;
    --light: #F8FAFC;
}

body{
    overflow-x:hidden;
}

#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: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !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: var(--bs-secondary);
    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: var(--bs-secondary);
    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;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) 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 ***/


/*** 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 ***/


/*** 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: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/
/* Logo */
.logo-text{
    color:#1842B6;
    font-size:32px;
    font-weight:800;
}

.logo-text span{
    color:#26D48C;
}

/* Navbar */
.navbar-nav .nav-link{
    color:#1842B6 !important;
    font-weight:600;
    margin:0 12px;
    position:relative;
    transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#26D48C !important;
}

/* Hover Line */
.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    left:0;
    bottom:-5px;
    background:#26D48C;
    transition:0.3s;
    border-radius:10px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:10px;
}

.dropdown-item{
    padding:10px 15px;
    border-radius:8px;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#26D48C;
    color:#fff;
}

/* Phone */
.phone-box{
    color:#1842B6;
    font-weight:600;
    font-size:15px;
}

.phone-box i{
    color:#26D48C;
}

/* Button */
.quote-btn{
    background:#26D48C;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
    background:#1842B6;
    color:#fff;
    transform:translateY(-2px);
}

/* Mobile */
@media (max-width:991px){

    .navbar-nav{
        padding-top:15px;
        text-align:center;
    }

    .navbar-nav .nav-link{
        margin:8px 0;
    }

    .phone-box{
        display:none;
    }

    .quote-btn{
        margin-top:15px;
        display:inline-block;
    }
}
 
 /* cta */

/* CTA Section */

.cta-section{
    background:linear-gradient(135deg,#1842B6,#26D48C);
    padding:90px 30px;
    border-radius:25px 25px 0 0;
    /*margin-top:80px;*/
    margin-bottom:0;
    overflow:hidden;
    position:relative;
}
/* Decorative Circles */

.cta-section::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.cta-section::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-80px;
    left:-80px;
}

/* Badge */

.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

/* Title */

.cta-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

/* Text */

.cta-text{
    color:rgba(255,255,255,0.9);
    font-size:18px;
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-cta-primary{
    background:#fff;
    color:#1842B6;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-cta-primary:hover{
    background:#f5f5f5;
    color:#1842B6;
    transform:translateY(-3px);
}

.btn-cta-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-cta-secondary:hover{
    background:#fff;
    color:#1842B6;
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){

    .cta-title{
        font-size:32px;
    }

    .cta-text{
        font-size:16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary{
        width:100%;
        text-align:center;
    }

}

/* popup */

.popup-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popup-image{
    height:100%;
    min-height:500px;
}

.popup-image img{
    object-fit:cover;
}

.popup-form{
    padding:45px;
    background:#fff;
}

.popup-badge{
    background:#e8fff4;
    color:#26D48C;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.popup-form h2{
    margin-top:20px;
    color:#1842B6;
    font-weight:800;
}

.popup-form p{
    color:#666;
    margin-bottom:25px;
}

.popup-form .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #e5e5e5;
}

.popup-form .form-control:focus{
    border-color:#26D48C;
    box-shadow:none;
}

.popup-btn{
    width:100%;
    border:none;
    background:#26D48C;
    color:#fff;
    height:55px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.popup-btn:hover{
    background:#1842B6;
}

.popup-close{
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 999;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.popup-close:hover{
    transform: rotate(90deg);
    transition: 0.3s ease;
}

.btn-close {
    box-sizing: content-box;
    width:2em !important;
    height:2em !important;
}

/* Industry We Serve */
.industry-card{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.industry-card:hover{
    transform:translateY(-10px);
}

.industry-card i{
    font-size:40px;
    color:#26D48C;
    margin-bottom:15px;
}

.industry-card h5{
    color:#1842B6;
    font-weight:700;
}

/* Services We Serve */

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#26D48C;
    margin-bottom:20px;
}

.service-card h4{
    color:#1842B6;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    background:#26D48C;
    color:#fff;
    text-decoration:none;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#1842B6;
    color:#fff;
}


/* Portfolio */

.portfolio-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

.portfolio-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.portfolio-content{
    padding:25px;
}

.portfolio-category{
    background:#e8fff4;
    color:#26D48C;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.portfolio-content h4{
    color:#1842B6;
    margin-top:15px;
    font-weight:700;
}

.portfolio-content p{
    color:#666;
    margin:15px 0;
}

.portfolio-btn{
    display:inline-block;
    text-decoration:none;
    background:#26D48C;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    transition:.3s;
}

.portfolio-btn:hover{
    background:#1842B6;
    color:#fff;
}

/* Loader */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader-wrapper{
    text-align:center;
}

/* Growth Bars */

.growth-loader{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:10px;
    height:100px;
    position:relative;
}

.growth-loader span{
    width:18px;
    border-radius:20px;
    background:linear-gradient(
        180deg,
        #26D48C,
        #1842B6
    );
    animation:grow 1.5s infinite ease-in-out;
}

.growth-loader span:nth-child(1){
    height:30px;
    animation-delay:0s;
}

.growth-loader span:nth-child(2){
    height:50px;
    animation-delay:.2s;
}

.growth-loader span:nth-child(3){
    height:70px;
    animation-delay:.4s;
}

.growth-loader span:nth-child(4){
    height:90px;
    animation-delay:.6s;
}

/* Arrow */

.growth-arrow{
    position:absolute;
    top:-25px;
    right:-15px;
    color:#26D48C;
    font-size:35px;
    animation:floatArrow 1.5s infinite;
}

.loader-wrapper h2{
    margin-top:25px;
    color:#1842B6;
    font-weight:800;
}

.loader-wrapper h2 span{
    color:#26D48C;
}

.loader-wrapper p{
    color:#777;
    margin-top:10px;
}

@keyframes grow{

    0%,100%{
        transform:scaleY(.8);
    }

    50%{
        transform:scaleY(1.2);
    }

}

@keyframes floatArrow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}

/* Arrow */

.about-section{
background:#fff;
}

.about-image-wrapper{
position:relative;
}

.about-image-wrapper img{
width:100%;
border-radius:25px;
}

.experience-box{
position:absolute;
bottom:30px;
right:-20px;
background:#26D48C;
color:#fff;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-box h2{
font-size:40px;
font-weight:800;
margin:0;
}

.about-badge{
    display:inline-block;
    background:#26D48C;
    color:white;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.about-title{
    font-size:42px;
    font-weight:800;
    color:#1842B6;
    line-height:1.3;
}

.about-text{
    color:#666;
    line-height:1.9;
}

.feature-item{
    font-weight:600;
    color:#333;
}

.feature-item i{
    color:#26D48C;
    margin-right:10px;
}

.btn-about{
    display:inline-block;
    background:#1842B6;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}
.btn-about:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(24,66,182,.35);
}

.btn-about i{
    transition:.3s;
}

.btn-about:hover i{
    transform:translateX(5px);
}


/* Banner */

.hero-section{
    position:relative;
    min-height:700px;
    background:url('img/banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.50);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    padding:120px 0;
}

.hero-badge{
    display:inline-block;
    background:rgba(38,212,140,.15);
    color:#26D48C;
    border:1px solid rgba(38,212,140,.4);
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-title{
    font-size:65px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
}

.hero-title span{
    color:#26D48C;
}

.hero-description{
    color:#fff;
    font-size:19px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

.hero-buttons{
    margin-bottom:50px;
}

.btn-hero-primary{
    display:inline-block;
    background:#26D48C;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
    transition:.4s;
}

.btn-hero-primary:hover{
    background:#1842B6;
    color:#fff;
}

.btn-hero-secondary{
    display:inline-block;
    background:#1842B6;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-hero-secondary:hover{
    background:#26D48C;
    color:#fff;
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-box h3{
    color:#26D48C;
    font-size:40px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-box p{
    color:#fff;
    margin:0;
}

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

}

@media(max-width:768px){

    .hero-section{
        min-height:600px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-description{
        font-size:16px;
    }

    .btn-hero-primary,
    .btn-hero-secondary{
        display:block;
        width:100%;
        text-align:center;
        margin-bottom:15px;
    }

    .hero-stats{
        gap:25px;
    }

}

/* Why Choose Us */

.why-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(46,213,115,.12);
    color:var(--accent);
    font-size:14px;
    font-weight:600;
}

.modern-why-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    display:flex;
    align-items:center;
    gap:25px;
    height:100%;
    transition:.4s;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.modern-why-card:hover{
    transform:translateY(-10px);
    border-color:#26D48C;
}

.why-number{
    min-width:90px;
    height:90px;
    border-radius:20px;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:800;
}

.why-content h3{
    color:#1842B6;
    font-weight:700;
    margin-bottom:12px;
}

.why-content p{
    color:#666;
    margin:0;
    line-height:1.8;
}

@media(max-width:768px){

    .modern-why-card{
        flex-direction:column;
        text-align:center;
    }

}

/* ==========================
   Latest Blog Section
========================== */

.blog-section{
    background:#f8fbff;
    padding:100px 0;
}

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
    border:1px solid rgba(24,66,182,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 55px rgba(0,0,0,.12);
}

/* Image */
.blog-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .5s ease;
}

.blog-card:hover img{
    transform:scale(1.08);
}

/* Content */
.blog-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* Date */
.blog-date{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#26D48C;
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
}

.blog-date i{
    font-size:13px;
}

/* Title */
.blog-content h4{
    color:#1842B6;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;
    min-height:62px;
}

/* Description */
.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

/* Button */
.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#26D48C;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.blog-btn::after{
    content:"→";
    transition:.3s;
}

.blog-btn:hover{
    color:#1842B6;
}

.blog-btn:hover::after{
    transform:translateX(6px);
}

/* Responsive */

@media (max-width:991px){

    .blog-section{
        padding:80px 0;
    }

    .blog-content{
        padding:20px;
    }

    .blog-content h4{
        font-size:20px;
        min-height:auto;
    }

}

@media (max-width:576px){

    .blog-card{
        border-radius:18px;
    }

    .blog-content{
        padding:18px;
    }

    .blog-content h4{
        font-size:18px;
    }

    .blog-content p{
        font-size:15px;
    }

}

/* Process Section */
.process-section{
    background:#f8fbff;
    position:relative;
}

.section-badge{
    display:inline-block;
    background:#E8FFF4;
    color:#26D48C;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;
}

/* Process Card */
.process-card{
    background:#fff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    position:relative;
    height:100%;
    transition:all .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* Step Number */
.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:800;
    color:rgba(24,66,182,.08);
    line-height:1;
}

/* Icon */
.process-icon{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    font-size:35px;
    margin-bottom:25px;
}

/* Title */
.process-card h4{
    color:#1842B6;
    font-weight:700;
    margin-bottom:15px;
}

/* Description */
.process-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* Hover Effect */
.process-card::before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#26D48C;
    transition:.4s;
}

.process-card:hover::before{
    width:100%;
}

/* Mobile */
@media(max-width:768px){

    .process-card{
        padding:30px 20px;
    }

    .process-number{
        font-size:40px;
    }

    .process-icon{
        width:75px;
        height:75px;
        line-height:75px;
        font-size:28px;
    }

}

/* Testimonials */

.testimonial-section{
    background:#f8fbff;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #26D48C;
}

.client-info h5{
    margin:0;
    color:#1842B6;
    font-weight:700;
}

.client-info span{
    color:#777;
    font-size:14px;
}

/* Footer */

.footer-section ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-section ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.footer-section ul li::before{
    content:"➜";
    width:22px;
    height:22px;
    background:rgba(38,212,140,.12);
    color:#26D48C;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:bold;
    transition:.3s;
    flex-shrink:0;
}

.footer-section ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li:hover::before{
    background:#26D48C;
    color:#fff;
    transform:translateX(4px);
}

.footer-section ul li:hover a{
    color:#26D48C;
    padding-left:4px;
}

.footer-section{
    background:#0b1220;
    color:#fff;
    padding:80px 0 0;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    color:#fff;
}

.footer-logo span{
    color:#26D48C;
}

.footer-text{
    color:#c7c7c7;
    line-height:1.9;
    margin-top:20px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1842B6;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.4s;
}

.footer-social a:hover{
    background:#26D48C;
}

.footer-section h5{
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.footer-section ul{
    padding:0;
    list-style:none;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:#c7c7c7;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#26D48C;
    padding-left:5px;
}

.footer-contact p{
    color:#c7c7c7;
    margin-bottom:15px;
}

.footer-contact i{
    color:#26D48C;
    margin-right:10px;
}

.newsletter-form{
    display:flex;
    margin-top:20px;
}

.newsletter-form input{
    flex:1;
    border:none;
    padding:14px;
    border-radius:50px 0 0 50px;
}

.newsletter-form button{
    border:none;
    background:#26D48C;
    color:#fff;
    padding:14px 25px;
    border-radius:0 50px 50px 0;
}

.footer-bottom{
    margin-top:60px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.1);
    color:#c7c7c7;
}

/*==============================
        Footer Bottom
==============================*/

.footer-bottom{
    background: linear-gradient(90deg,#4163C3,#26D48C);
    padding:18px 0;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Top Border */
.footer-bottom::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.25);
}

.footer-bottom p{
    margin:0;
    font-size:15px;
    font-weight:500;
    letter-spacing:.3px;
    color:#fff;
}

.footer-bottom strong{
    color:#fff;
    font-weight:700;
}

.developer-link{
    color:#fff;
    font-weight:700;
    text-decoration:none;
    position:relative;
    transition:.3s;
}

.developer-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#fff;
    transition:.35s;
}

.developer-link:hover{
    color:#ffffff;
}

.developer-link:hover::after{
    width:100%;
}

.heart{
    color:#ff4d6d;
    animation:heartbeat 1.5s infinite;
}

@keyframes heartbeat{
    0%,100%{
        transform:scale(1);
    }
    25%{
        transform:scale(1.2);
    }
    50%{
        transform:scale(1);
    }
   
   
   75%{
       transform:scale(1.2);
    }
}

@media(max-width:991px){

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    font-size:14px;
}

}

/* Contact */

.contact-modern{
    background:#f5f9ff;
}

.contact-wrapper{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-tag{
    background:#E8FFF4;
    color:#26D48C;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.contact-title{
    font-size:48px;
    font-weight:800;
    color:#1842B6;
    margin:25px 0;
}

.contact-text{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-feature{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    border:1px solid #eee;
}

.contact-card .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

.contact-card textarea.form-control{
    height:auto;
}

.contact-btn{
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    width:100%;
}

.contact-btn:hover{
    opacity:.9;
}

/* Success Toast */

.success-toast{
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);

    background: #198754;
    color: #fff;

    padding: 15px 30px;
    border-radius: 10px;

    font-weight: 600;
    font-size: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    z-index: 9999999;

    display: none;
}

/* About Page Hero Banner */

.about-hero{
    background:#1842B6;
    position: relative;
    overflow: hidden;
}

.about-hero::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.hero-btn{
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
}

.hero-image{
    max-height:450px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

/* About Page */

.about-section{
    background:#ffffff;
    position:relative;
}

.about-title{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    color:#0f172a;
}

.about-text{
    color:#64748b;
    font-size:17px;
    line-height:1.9;
    margin-bottom:15px;
}

.about-features{
    margin:25px 0;
}

.feature-item{
    margin-bottom:12px;
    font-size:16px;
    font-weight:500;
    color:#0f172a;
}

.about-btn{
    display:inline-block;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    color:#fff;
    padding:14px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

.about-image img{
    border-radius:20px;
    transition:.4s;
}

.about-page{
    background:#f8fbff;
}

.about-image img:hover{
    transform:scale(1.03);
}

/* Mission Vision Story Section */

.section-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(37,99,235,.1);
    color:#2563eb;
    border-radius:50px;
    font-weight:600;
}

.section-title{
    font-size:46px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title span{
    color:var(--accent);
}

.our-story p{
    color:#64748b;
    line-height:1.9;
    font-size:17px;
}

.mission-vision{
    background:#f8fafc;
}

.mv-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.mv-card:hover{
    transform:translateY(-8px);
}

.mv-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
}

.mv-card h3{
    font-weight:700;
    margin-bottom:15px;
}

.mv-card p{
    color:#64748b;
    line-height:1.8;
}

/* Story Section */

.our-story-section{
    background:#f8fafc;
}

.story-badge{
    background:rgba(37,99,235,.1);
    color:#2563eb;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.story-title{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-top:20px;
}

.story-subtitle{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.story-item{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-left:4px solid var(--accent);
    transition:.3s;
}

.story-item:hover{
    transform:translateY(-5px);
}

.story-year{
    display:inline-block;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.story-card{
    background:linear-gradient(135deg,#2563eb,#6d28d9);
    border-radius:25px;
    padding:35px;
    color:#fff;
}

.counter-box{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.counter-box:last-child{
    border:none;
}

.counter-box h3{
    font-size:38px;
    font-weight:700;
    margin-bottom:5px;
}

.counter-box p{
    margin:0;
    opacity:.9;
}
.story-card{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary),
        var(--accent)
    );
    border-radius:25px;
    padding:40px;
    color:#fff;
}

/* Contact Page */

.contact-section{
    background:#f7f9fc;
}

.contact-badge{
    background:#eaf2ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.contact-card,
.contact-info{
    background:#fff;
    border-radius:20px;
    padding:40px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-card h3{
    font-size:30px;
}

.form-control,
.form-select{
    border-radius:12px;
    min-height:52px;
    border:1px solid #dee2e6;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

textarea.form-control{
    min-height:150px;
}

.contact-btn{
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    padding:12px 35px;
    transition:.3s;
}

.contact-btn:hover{
    background:#084298;
    color:#fff;
}

.contact-info{
    background:linear-gradient(135deg,#f5f9ff,#eef4ff);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-info img{
    max-width:100%;
}

.feature-box{
    padding:20px;
    background:#fff;
    border-radius:15px;
    margin-top:15px;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-box i{
    font-size:30px;
    color:#0d6efd;
    margin-bottom:15px;
}

.feature-box h6{
    font-weight:700;
}

.feature-box p{
    font-size:14px;
    color:#6c757d;
    margin-bottom:0;
}

@media(max-width:991px){

.contact-card,
.contact-info{
    padding:30px;
}

}

/*=========================================
        PRICING SECTION
=========================================*/

.pricing-section{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.pricing-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#1842B6;
    opacity:.06;
    border-radius:50%;
    top:-180px;
    left:-150px;
}

.pricing-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#26D48C;
    opacity:.08;
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

.pricing-tag{
    display:inline-block;
    background:rgba(24,66,182,.08);
    color:#1842B6;
    padding:10px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.pricing-title{
    font-size:44px;
    font-weight:800;
    color:#1842B6;
    margin-top:20px;
}

.pricing-subtitle{
    max-width:720px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:30px;
    margin-top:20px;
}

/*=========================================
        CARD
=========================================*/

.price-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:2px solid transparent;
    height:100%;
}

.price-card:hover{
    transform:translateY(-15px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
    border-color:#26D48C;
}

.featured{
    border:2px solid #26D48C;
    transform:scale(1.05);
}

.featured:hover{
    transform:translateY(-15px) scale(1.05);
}

.popular{
    position:absolute;
    top:20px;
    right:-55px;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    padding:10px 60px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.price-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
}

.price-card h4{
    text-align:center;
    font-weight:700;
    color:#1842B6;
    margin-bottom:20px;
}

.price{
    text-align:center;
    font-size:50px;
    color:#1842B6;
    font-weight:800;
    margin-bottom:10px;
}

.price span{
    display:block;
    font-size:15px;
    color:#777;
    font-weight:500;
    margin-top:6px;
}

.price-card ul{
    margin:35px 0;
    padding:0;
    list-style:none;
}

.price-card ul li{
    padding:12px 0;
    font-size:16px;
    color:#555;
    display:flex;
    align-items:center;
}

.price-card ul li i{
    color:#26D48C;
    margin-right:12px;
    font-size:18px;
}

/*=========================================
        BUTTON
=========================================*/

.price-btn{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    padding:16px;
    border-radius:50px;
    font-weight:700;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    transition:.35s;
}

.price-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(24,66,182,.35);
}

/*=========================================
        CARD TOP GLOW
=========================================*/

.price-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#1842B6,#26D48C);
}

/*=========================================
        ANIMATION
=========================================*/

.price-card{
    animation:cardUp .8s ease;
}

@keyframes cardUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

.pricing-title{
    font-size:38px;
}

.price{
    font-size:42px;
}

}

@media(max-width:991px){

.featured{
    transform:none;
}

.featured:hover{
    transform:translateY(-12px);
}

.price-card{
    margin-bottom:30px;
}

.pricing-section{
    padding:80px 0;
}

}

@media(max-width:768px){

.pricing-title{
    font-size:32px;
}

.pricing-subtitle{
    font-size:15px;
}

.price-card{
    padding:35px 25px;
}

.price{
    font-size:38px;
}

.price-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.price-card ul li{
    font-size:15px;
}

}

@media(max-width:576px){

.pricing-title{
    font-size:28px;
}

.pricing-tag{
    font-size:12px;
}

.price{
    font-size:34px;
}

.price-btn{
    padding:14px;
}

.popular{
    font-size:10px;
    right:-58px;
}

}

/*===============================
        FAQ
================================*/

.faq-section{
    background:#fff;
    padding:100px 0;
}

.custom-accordion .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.custom-accordion .accordion-button{
    background:#fff;
    color:#1842B6;
    font-weight:700;
    font-size:18px;
    padding:22px 25px;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#1842B6;
    color:#fff;
}

.custom-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-accordion .accordion-body{
    padding:25px;
    color:#666;
    line-height:28px;
}

/*===============================
        CTA
================================*/

.pricing-cta{
    padding:80px 0;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
}

.pricing-cta h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.pricing-cta p{
    font-size:18px;
    opacity:.95;
    margin:0;
}

.cta-btn-white{

    display:inline-block;
    padding:18px 45px;
    border-radius:50px;
    background:#fff;
    color:#1842B6;
    text-decoration:none;
    font-weight:700;
    transition:.35s;

}

.cta-btn-white:hover{

    background:#26D48C;
    color:#fff;
    transform:translateY(-5px);

}

/*===============================
        MOBILE
================================*/

@media(max-width:768px){

.pricing-cta{
    text-align:center;
}

.pricing-cta h2{
    font-size:30px;
}

.pricing-cta p{
    font-size:16px;
}

.cta-btn-white{
    margin-top:20px;
}

}

/* Navbar */
.navbar{
    min-height:75px;
}

.logo-text{
    font-size:32px;
    font-weight:800;
    margin:0;
}

.logo-text span{
    color:#26D48C;
}

/* Mobile */
@media (max-width:991px){

    .navbar{
        padding:12px 0 !important;
    }

    .navbar-brand{
        margin-right:auto;
    }

    .logo-text{
        font-size:22px;
        line-height:1.2;
    }

    .navbar-toggler{
        margin-left:auto;
        border:0;
        padding:6px;
        box-shadow:none !important;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .navbar-collapse{
        margin-top:15px;
        background:#fff;
        border-radius:15px;
        padding:20px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .navbar-nav{
        margin:0 !important;
    }

    .navbar-nav .nav-link{
        padding:12px 0;
        font-size:16px;
        border-bottom:1px solid #f1f1f1;
    }

    .dropdown-menu{
        border:none;
        box-shadow:none;
        padding-left:15px;
    }
}