/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.text {
    color: white !important;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background-color: #2B4BD1;
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;

}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: #2B4BD1;
}

/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Arial", sans-serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid #2B4BD1;
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: #2B4BD1 !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler {
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    /* background: var(--bs-secondary); */
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/
/* Mega Menu Container */
.mega-menu {
    width: 900px;
    right: -25% !important;
    transform: translateX(-50%);
    border-radius: 15px;
    background: #C1E2EB !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.35s ease;
    margin-top: 18px !important;
}

/* Show on hover */
.mega-dropdown:hover .mega-menu,
.mega-dropdown.show .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

/* Title Styling */
.mega-menu h5 {
    font-weight: 700;
    font-size: 18px;
    color: #1e1e1e;
    border-left: 4px solid #2596be;
    padding-left: 10px;
}

/* Dropdown links */
.mega-menu .dropdown-item {
    padding: 8px 0;
    font-size: 15px;
    color: #333 !important;
    transition: 0.3s ease;
    position: relative;
}

/* Hover Animation */
.mega-menu .dropdown-item:hover {
    color: #2596be !important;
    padding-left: 8px;
}

/* Decorative bullet on hover */
.mega-menu .dropdown-item:hover::before {
    content: "•";
    color: #2596be;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Image Styling */
.mega-menu img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

/* Image Hover Zoom */
.mega-menu img:hover {
    transform: scale(1.03);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .mega-menu {
        width: 100%;
        left: 0;
        transform: translateY(10px) !important;
    }
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}


.dropdown-toggle-split {
    padding-left: 0;
}

.mega-dropdown {
    position: relative;
}

/* megamenu ends */

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/car-3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 136, 232, 0.5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid #2B4BD1;
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: #2B4BD1;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** About Start ***/
.about .about-item-content-img {
    border: 4px solid;
    border-color: black var(--bs-primary) var(--bs-primary) black;
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/abt-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about .about-item-image .img-1 {
    margin-bottom: 250px;
    margin-right: 0;
    border: 4px solid;
    border-color: black var(--bs-light) var(--bs-light) black;
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px;
    margin-left: 0;
    border: 4px solid;
    border-color: var(--bs-light) black black var(--bs-light);
    z-index: 3;
}

.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 2;
    opacity: 0.5;
}

.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}

/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
    position: relative;
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}

/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: #2B4BD1 !important;
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    right: 0;
    background: var(--bs-light);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}

/*** Services End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: black;
}

/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

/*** Contact End ***/

/* Vertical Social Icons */
.social-icons {
    position: fixed;
    top: 40%;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a.whatsapp {
    background: #25D366;
}

.social-icons a.facebook {
    background: #1877F2;
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.linkedin {
    background: #0077B5;
}

.social-icons a.phone {
    background: #28a745;
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* calltoaction */
.contact-map-section {
    padding: 60px 20px;
    background-color: #dcdee8 !important;

}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Map Styling */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Form Box */
.contact-form-box {
    /* background: black(255, 255, 255, 0.08); */
    padding: 30px;
    background-color: black;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: fadeUp 1s ease forwards;
}

.contact-form-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-box p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 15px;
    outline: none;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
}

.contact-btn:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 1);
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Container */
.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Map Styling */
.contact-map,
.mapouter,
.gmap_canvas {
    width: 100%;
    height: 100%;
    max-width: 700px;
}

.gmap_canvas iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Hide generated link */
.gme-generated-link {
    display: none !important;
}

/* Form Box */
.contact-form-box {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
}

.contact-form-box h2 {
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        width: 100%;
    }

    .contact-form-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 15px;
    }

    .gmap_canvas iframe {
        height: 300px;
    }
}

/* mission */
.containers {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e8ec;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 28px;
}

.mission {
    background: linear-gradient(135deg, #0ea96d, #0f766e);
}

.vision {
    background: linear-gradient(135deg, #6366f1, #7c3aed);
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 20px;
}

p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 6px 10px;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.separator {
    margin: 40px auto;
    width: 160px;
    height: 2px;
    background: linear-gradient(to right, transparent, #cbd5e1, transparent);
}

.floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #2B4BD1;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.form-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 30px;
    background: white;
    width: 320px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 99999;
}

.close-btn {
    float: right;
    font-size: 22px;
    cursor: pointer;
}


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(20, 136, 232, 0.9), rgba(20, 136, 232, 1)), url(../img/footer-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.para {
    line-height: 35px;
    color: white;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2B4BD1;
}

/*** copyright end ***/
.hero-premium {
    position: relative;
    overflow: hidden;
    background: #f7faff;
    min-height: 100vh;
}

/* Animated Gradient */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(-45deg,
            #eef6ff,
            #ffffff,
            #edf7ff,
            #f6fbff);

    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 15px;
}

.hero-text h1 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.15;
    color: #111;
}

.hero-text h1 span {
    color: #0d6efd;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    margin: 30px 0;
    line-height: 1.8;
}

.hero-btns {
    margin-top: 40px;
}

.btn-main {
    background: linear-gradient(135deg,
            #0d6efd,
            #00c6ff);
    color: #fff;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    margin-right: 15px;
    box-shadow: 0 15px 40px rgba(13, 110, 253, .3);
    transition: .4s;
}

.btn-main:hover {
    transform: translateY(-6px);
}

.btn-outline {
    background: white;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 15px;
}

.stat-card {
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.stat-card h2 {
    color: #0d6efd;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    animation: float 5s ease infinite;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(15px);
    padding: 18px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    font-weight: 600;
}

.card1 {
    top: 80px;
    left: 0;
    animation: float 4s ease infinite;
}

.card2 {
    right: 0;
    top: 180px;
    animation: float 5s ease infinite;
}

.card3 {
    bottom: 80px;
    left: 50px;
    animation: float 6s ease infinite;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.circle1 {
    width: 350px;
    height: 350px;
    background: #0d6efd20;
    top: -120px;
    right: -100px;
}

.circle2 {
    width: 250px;
    height: 250px;
    background: #00d4ff25;
    bottom: -50px;
    left: -50px;
}

.circle3 {
    width: 180px;
    height: 180px;
    background: #7f5cff25;
    top: 40%;
    left: 45%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-modern {
    background: linear-gradient(180deg,
            #ffffff,
            #f7faff);
}

.section-badge {
    background: #edf3ff;
    color: #2B4BD1;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    margin-top: 20px;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
}

/* Image */

.image-stack {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.floating-box {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    animation: float 4s infinite;
}

.box-1 {
    top: 10%;
    right: -20px;
}

.box-2 {
    bottom: 35%;
    left: -20px;
}

.box-3 {
    bottom: 10%;
    right: 20px;
}

/* Journey */

.journey-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

.journey-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #edf3ff;
    color: #2B4BD1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

/* Stats */

.stat-card {
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    color: #2B4BD1;
    font-weight: 800;
}

/* Animation */

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================
   WHY EVOLWIN SECTION
========================= */

.why-evolwin {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f6f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Badge */

.section-badge {
    display: inline-block;
    padding: 12px 28px;
    background: #edf3ff;
    color: #2B4BD1;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Heading */

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.section-desc {
    max-width: 750px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Cards */

.modern-feature-card {
    position: relative;
    background: #fff;
    padding: 45px 30px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    height: 100%;
    transition: .5s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
}

.modern-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(43, 75, 209, .15);
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #2B4BD1,
            #5e7cff);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #2B4BD1,
            #5e7cff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: floatIcon 4s infinite ease-in-out;
}

.feature-icon i {
    color: #fff;
    font-size: 40px;
}

.modern-feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.modern-feature-card p {
    color: #666;
    line-height: 1.8;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: #eef3ff;
}

/* Statistics */

.stat-card {
    background: #fff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    font-size: 48px;
    color: #2B4BD1;
    font-weight: 800;
}

.stat-card p {
    margin-bottom: 0;
    color: #666;
}

/* Animation */

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Mobile */

@media(max-width:991px) {

    .section-title {
        font-size: 34px;
    }

    .section-desc {
        font-size: 16px;
    }

    .modern-feature-card {
        padding: 35px 25px;
    }

}

.services-modern {
    background: linear-gradient(180deg,
            #ffffff,
            #f7faff);
}

.service-badge {
    background: #edf3ff;
    color: #2B4BD1;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-heading {
    font-size: 52px;
    font-weight: 800;
    color: #111;
}

.service-subheading {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Service Card */

.service-card-modern {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #2B4BD1,
            #6b85ff);
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(43, 75, 209, .15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            #2B4BD1,
            #6b85ff);
    margin-bottom: 25px;
    animation: floatService 4s infinite;
}

.service-icon i {
    color: #fff;
    font-size: 36px;
}

.service-card-modern h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card-modern p {
    color: #666;
    line-height: 1.8;
}

.service-link {
    color: #2B4BD1;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    color: #111;
}

.btn-services {
    background: linear-gradient(135deg,
            #2B4BD1,
            #6b85ff);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: .4s;
}

.btn-services:hover {
    color: #fff;
    transform: translateY(-5px);
}

@keyframes floatService {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px) {

    .service-heading {
        font-size: 34px;
    }

    .service-card-modern {
        padding: 30px 25px;
    }

}

.contact-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            #ffffff,
            #f5f9ff);
}

/* Floating Background */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #2B4BD1;
    top: -80px;
    left: -80px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #5c84ff;
    bottom: -80px;
    right: -80px;
}

/* Heading */

.contact-badge {
    background: #edf3ff;
    color: #2B4BD1;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.contact-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
}

.contact-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
}

/* Glass Card */

.contact-glass-card {
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.contact-glass-card h3 {
    font-weight: 700;
}

.premium-input {
    border: none;
    background: #f5f8ff;
    padding: 15px;
    border-radius: 15px;
}

.premium-input:focus {
    box-shadow: 0 0 0 3px rgba(43, 75, 209, .15);
    border: none;
}

/* Button */

.contact-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg,
            #2B4BD1,
            #6488ff);
    transition: .4s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* Map */

.map-card {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.map-card iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Info Cards */

.info-card {
    background: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card i {
    font-size: 30px;
    color: #2B4BD1;
    margin-bottom: 15px;
}

.info-card h5 {
    font-weight: 700;
}

.info-card p {
    margin-bottom: 0;
    color: #666;
}

/* Mobile */

@media(max-width:991px) {

    .contact-title {
        font-size: 34px;
    }

    .contact-glass-card {
        padding: 30px;
    }

    .map-card iframe {
        height: 300px;
    }

}

.case-studies-section {
    background: linear-gradient(180deg,
            #ffffff,
            #f7faff);
    overflow: hidden;
}

.case-badge {
    display: inline-block;
    padding: 10px 25px;
    background: #edf3ff;
    color: #2B4BD1;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.case-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
}

.case-subtitle {
    max-width: 750px;
    margin: auto;
    color: #666;
    font-size: 18px;
}

/* Cards */

.case-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .5s;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.case-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(43, 75, 209, .15);
}

.case-img {
    position: relative;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}

.case-card:hover .case-img img {
    transform: scale(1.1);
}

.case-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2B4BD1;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
}

.case-content {
    padding: 30px;
}

.case-result {
    display: inline-block;
    background: #eef4ff;
    color: #2B4BD1;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-content p {
    color: #666;
    line-height: 1.8;
}

.case-btn {
    text-decoration: none;
    color: #2B4BD1;
    font-weight: 600;
}

.case-btn:hover {
    color: #111;
}

/* Button */

.all-case-btn {
    background: linear-gradient(135deg,
            #2B4BD1,
            #6a87ff);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: .4s;
}

.all-case-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

@media(max-width:991px) {

    .case-title {
        font-size: 34px;
    }

    .case-subtitle {
        font-size: 16px;
    }

}

.premium-footer {
    position: relative;
    overflow: hidden;
    background: #050b18;
    padding: 90px 0 25px;
}

/* Animated Glow */

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: #2B4BD1;
    top: -120px;
    right: -100px;
    opacity: .25;
    animation: float1 8s infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #4F6FFF;
    bottom: -100px;
    left: -80px;
    opacity: .20;
    animation: float2 10s infinite alternate;
}

@keyframes float1 {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

@keyframes float2 {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}

/* Logo */

.footer-logo {
    max-height: 90px;

}

.footer-desc {
    color: #b8c4dd;
    line-height: 1.9;

}

/* Social */

.footer-social a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    margin-right: 10px;
    transition: .4s;
}

.footer-social a:hover {
    background: #2B4BD1;
    transform: translateY(-6px);
}

/* Headings */

.premium-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.premium-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #2B4BD1;
    border-radius: 10px;
}

/* Links */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #b8c4dd;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Contact */

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #b8c4dd;
}

.contact-box i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F6FFF;
}

/* Divider */

.footer-divider {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Bottom */

.footer-bottom {
    padding-top: 25px;
}

.footer-bottom p {
    color: #9ca8c1;
    margin: 0;
}

.footer-bottom a {
    color: #9ca8c1;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .premium-footer {
        text-align: center;
    }

    .premium-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-box {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-lg-end {
        text-align: center !important;
        margin-top: 15px;
    }

}

.back-to-top {
    position: fixed;
    right: 35px;
    bottom: 35px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;

    background: linear-gradient(135deg,
            #2B4BD1,
            #6C87FF);

    color: #fff;
    font-size: 24px;

    overflow: hidden;

    animation:
        floating 4s ease-in-out infinite,
        breathing 3s ease-in-out infinite;
}

/* Rotating Border */

.back-to-top::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;

    background: conic-gradient(transparent,
            #ffffff,
            transparent,
            #ffffff,
            transparent);

    animation: rotateRing 3s linear infinite;
}

/* Inner Circle */

.back-to-top::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #2B4BD1,
            #4366ff);
}

/* Ripple Circle */

.back-to-top span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(43, 75, 209, .4);

    animation: ripple 2s infinite;
}

.back-to-top i {
    position: relative;
    z-index: 2;

    animation: arrowJump 1.5s infinite;
}

/* Floating */

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Breathing Glow */

@keyframes breathing {
    0% {
        box-shadow:
            0 0 20px rgba(43, 75, 209, .4),
            0 0 40px rgba(43, 75, 209, .2);
    }

    50% {
        box-shadow:
            0 0 40px rgba(43, 75, 209, .8),
            0 0 80px rgba(43, 75, 209, .5);
    }

    100% {
        box-shadow:
            0 0 20px rgba(43, 75, 209, .4),
            0 0 40px rgba(43, 75, 209, .2);
    }
}

/* Rotating Ring */

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Ripple */

@keyframes ripple {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* Arrow */

@keyframes arrowJump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

/* Hover Effect */

.back-to-top:hover {

    transform:
        translateY(-12px) scale(1.15);

    color: #fff;

}

.back-to-top:hover i {

    animation: rocket .4s infinite alternate;

}

@keyframes rocket {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }

}

/* =========================
   FLOATING BUTTON
========================= */
.floating-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: 10000;
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-btn img {
    border-radius: 50%;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

/* =========================
   OVERLAY
========================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
}

/* =========================
   POPUP FORM (FIXED)
========================= */
.form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;

    display: none;
    z-index: 9999;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =========================
   FORM CONTENT
========================= */
.form-container h3 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.form-container input:focus {
    border-color: #ff6a00;
}

/* BUTTON */
.form-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-container button:hover {
    transform: scale(1.05);
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* ==========================
   CORE PURPOSE PREMIUM
========================== */

.core-purpose-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* Section Heading */

.section-header {
    max-width: 900px;
    margin: auto;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 25px;

    border-radius: 50px;

    background: linear-gradient(135deg, #133AF1, #4f7cff);

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header h2 span {
    background: linear-gradient(90deg,
            #133AF1,
            #00AEEF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
}

/* Cards */

.purpose-card {
    position: relative;

    height: 100%;

    padding: 45px;

    border-radius: 30px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

    transition: .5s;
}

.purpose-card:hover {
    transform: translateY(-15px);
}

/* Glow */

.card-glow {
    position: absolute;
    width: 250px;
    height: 250px;

    background: rgba(19, 58, 241, .12);

    border-radius: 50%;

    top: -100px;
    right: -100px;

    transition: .5s;
}

.purpose-card:hover .card-glow {
    transform: scale(1.5);
}

/* Icon */

.purpose-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #133AF1,
            #00AEEF);

    color: #fff;

    font-size: 35px;

    margin-bottom: 25px;
}

.purpose-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.purpose-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Features */

.purpose-card ul {
    list-style: none;
    padding: 0;
}

.purpose-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

.purpose-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #133AF1;
    font-weight: bold;
}

/* Floating Shapes */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(19, 58, 241, .15);
    top: 0;
    left: -100px;
    animation: float 8s infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(0, 174, 239, .15);
    right: -80px;
    top: 200px;
    animation: float 10s infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 165, 0, .12);
    bottom: 50px;
    left: 50%;
    animation: float 7s infinite;
}

@keyframes float {
    50% {
        transform: translateY(-35px);
    }
}

/* Responsive */

@media(max-width:991px) {

    .section-header h2 {
        font-size: 40px;
    }

    .purpose-card {
        padding: 30px;
    }
}

@media(max-width:767px) {

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .purpose-card {
        padding: 25px;
    }
}

.about-modern-section {
    position: relative;
    background: #050816;
    overflow: hidden;
    padding: 120px 0;
    color: #fff;
}

/* Background Glow */

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: floatBlob 10s infinite alternate;
}

.shape1 {
    width: 350px;
    height: 350px;
    background: #7c3aed;
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    right: -100px;
    top: 30%;
}

.shape3 {
    width: 250px;
    height: 250px;
    background: #ec4899;
    bottom: -80px;
    left: 40%;
}

@keyframes floatBlob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(80px);
    }
}

.section-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin: 25px 0;
}

.hero-title span {
    background: linear-gradient(90deg,
            #06b6d4,
            #8b5cf6,
            #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: #c5cbe0;
    font-size: 18px;
    line-height: 1.8;
}

/* Feature Cards */

.feature-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    transition: .4s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, .3);
}

.feature-card i {
    font-size: 35px;
    margin-bottom: 20px;
    background: linear-gradient(90deg,
            #06b6d4,
            #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #c5cbe0;
}

/* Right Panel */

.glass-panel {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 40px;
    animation: floatingCard 5s ease infinite;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.glass-panel h3 {
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-item span {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #06b6d4,
            #8b5cf6);
    text-align: center;
    line-height: 55px;
    font-weight: 700;
}

.timeline-item p {
    color: #c5cbe0;
}

/* Stats */

.stat-box {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px;
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, .25);
}

.stat-box h2 {
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(90deg,
            #06b6d4,
            #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: #c5cbe0;
}

/* Mobile */

@media(max-width:991px) {

    .hero-title {
        font-size: 40px;
    }

    .glass-panel {
        margin-top: 50px;
    }

}

.about-trust-section {
    background: #f8fafc;
}

.about-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    margin: 20px 0;
    color: #0f172a;
}

.about-desc {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.btn-about {
    background: #0f172a;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    transition: .4s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.service-card i {
    font-size: 32px;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box {
    text-align: center;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.counter-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0ea5e9;
}

.counter-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, .15);
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.counter-box p {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.industries-section {
    background: #f8fafc;
}

.industry-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.industry-title {
    font-size: 46px;
    font-weight: 800;
    margin: 20px 0;
    color: #0f172a;
}

.industry-desc {
    max-width: 700px;
    margin: auto;
    color: #64748b;
}

.industry-card {
    background: #fff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 20px;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.industry-card i {
    font-size: 45px;
    color: #0ea5e9;
    margin-bottom: 20px;
}

.industry-card h5 {
    font-weight: 700;
    margin: 0;
}

/* =========================
   PREMIUM HERO 2026
========================= */

.premium-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(5, 20, 45, .75),
            rgba(5, 20, 45, .85));

    background-size: cover;
    background-position: center;
}

/* Overlay */

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right,
            rgba(255, 140, 0, .25),
            transparent 35%);
}

/* Content */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 25px;

    background: rgba(255, 255, 255, .1);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 50px;

    color: #fff;

    margin-bottom: 25px;

    animation: fadeUp 1s ease;
}

/* Heading */

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content h1 span {
    background: linear-gradient(90deg,
            #ff8a00,
            #ffd000);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */

.hero-content p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.8;
    max-width: 750px;
    margin: auto auto 35px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-custom {
    padding: 15px 35px;
    background: linear-gradient(135deg,
            #ff8a00,
            #ff5e00);

    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;

    transition: .4s;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, .4);
    color: #fff;
}

.btn-outline-custom {
    padding: 15px 35px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #111;
}

/* Breadcrumb */

.premium-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.premium-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.premium-breadcrumb .active {
    color: #ffb400;
}

/* Stats */

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 20px;

    padding: 25px 35px;

    min-width: 180px;

    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h3 {
    color: #ffb400;
    font-size: 35px;
    font-weight: 800;
}

.stat-box span {
    color: #fff;
}

/* Floating Glow */

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.circle1 {
    width: 300px;
    height: 300px;
    background: #ff7b00;
    top: 5%;
    left: 5%;
    opacity: .3;
    animation: float 8s infinite;
}

.circle2 {
    width: 250px;
    height: 250px;
    background: #007bff;
    right: 10%;
    top: 20%;
    opacity: .3;
    animation: float 10s infinite;
}

.circle3 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    bottom: 10%;
    left: 45%;
    opacity: .15;
    animation: float 6s infinite;
}

@keyframes float {
    50% {
        transform: translateY(-30px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-box {
        min-width: 140px;
        padding: 20px;
    }
}

.hero-brand-line {
    margin: 10px 0 15px;
    font-size: 25px;
    letter-spacing: 1px;
    color: blue;
}

.hero-brand-line strong {
    color: black;
    font-weight: 600;
}
/* Floating Button */

#eva-chat-btn{
    position:fixed;
    right:40px;
    bottom:120px;
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#0d6efd,#6f42c1);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    animation:evaPulse 2s infinite;
}

@keyframes evaPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

/* Chat Box */

#eva-chatbox{
    width:380px;
    height:600px;
    background:#fff;
    position:fixed;
    right:25px;
    bottom:110px;
    border-radius:20px;
    overflow:hidden;
    display:none;
    z-index:99999;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.eva-header{
    background:linear-gradient(135deg,#0d6efd,#6f42c1);
    color:#fff;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.eva-header h5{
    margin:0;
}

#eva-close{
    cursor:pointer;
    font-size:25px;
}

#eva-chat-body{
    height:470px;
    overflow-y:auto;
    padding:15px;
    background:#f7f9fc;
}

.eva-message{
    max-width:85%;
    padding:12px 15px;
    margin-bottom:12px;
    border-radius:15px;
    font-size:14px;
    line-height:1.5;
}

.bot{
    background:#ffffff;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.user{
    background:#0d6efd;
    color:#fff;
    margin-left:auto;
}

.quick-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:15px;
}

.quick-buttons button{
    border:none;
    background:#e8f0ff;
    color:#0d6efd;
    padding:8px 14px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.quick-buttons button:hover{
    background:#0d6efd;
    color:#fff;
}

.eva-input-area{
    display:flex;
    border-top:1px solid #ddd;
}

.eva-input-area input{
    flex:1;
    border:none;
    padding:15px;
    outline:none;
}

.eva-input-area button{
    width:60px;
    border:none;
    background:#0d6efd;
    color:#fff;
}

.typing{
    color:#777;
    font-style:italic;
}
/* =====================================
   MOBILE NAVBAR FIX
===================================== */

@media (max-width: 991px) {

    /* Navbar Background */
    .navbar {
        background: #ffffff !important;
        padding: 10px 15px !important;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    /* Smaller Logo */
    .navbar-brand img {
        height: 60px !important;
        width: auto;
    }

    /* Mobile Menu Container */
    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    /* Menu Items */
    .navbar-nav .nav-link {
        color: #222 !important;
        padding: 12px 15px !important;
        border-radius: 8px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .active .nav-link {
        background: #f5f7fa;
        color: #0d6efd !important;
    }

    /* Mega Menu */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        padding: 10px !important;
        background: #f8f9fa !important;
        border-radius: 10px;
        margin-top: 10px;
    }

    /* Hide Mega Menu Image */
    .mega-menu img {
        display: none;
    }

    /* Dropdown Links */
    .mega-menu .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
    }

    .mega-menu .dropdown-item:hover {
        background: #e9ecef;
    }

    /* Let's Talk Button */
    .navbar .btn-secondary {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    /* Hamburger Icon */
    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }
}
