/********** Template CSS **********/
:root {
    --primary: #00BF63;
    --secondary: #5F656F;
    --light: #fbf9f9;
    --dark: #02245B;
    --medium: #ffffff;
    --new:#fbf9f9;
}

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

.large-font {
    font-size: 24px; /* Adjust size as needed */
  }

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}



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

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


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

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

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

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

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

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


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


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

.navbar .navbar-brand {
    position:relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--medium);

}



.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

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

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


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
   
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

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

    
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;

}
@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .about-section img {
        width: 100%;
        margin-bottom: 1rem;
    }
}



/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 300px;
    height: auto;
    margin: 60px auto 0 auto;
}


.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 5px;
    width: 150px;
    height: 150px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #d1d3d2;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

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


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.carousel-inner {
    position: relative;
    width: 100%;
}

.carousel-item video {
    object-fit: cover;
}

.carousel-caption h1 {
    font-size: 2rem; /* Adjust based on screen size */
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

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

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

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

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

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

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

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

.feature .feature-item:hover .feature-content {
    position: relative;
    color: whitesmoke;
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/

/** Moving Text Container ***/

.moving-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #72757a;
    padding: 20px;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.moving-text-container1 {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #adadad;
    padding: 20px;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.moving-text {
    display: inline-block;
    animation: moveText 25s linear infinite;
}
.moving-text span {
    padding-right: 100px; /* Adds space between repeated text */
}

/* Keyframes for continuous scrolling without break */
@keyframes moveText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/*** new themese ***/

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

  
  .services .naccs {
    position: relative;
    z-index: 1;
  }
  
  
  .services .naccs .menu div .thumb {
    display: inline-block;
    width: 100%;
    padding: 30px 0px;
    background-color: #a28282;
  }
  
  .services .naccs .menu div.active {
    box-shadow: 0px 0px 15px rgba(0, 61, 74, 0.807);
  }
  
  .services ul.nacc {
    height: 100% !important;
    position: relative;
    min-height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  .services ul.nacc li {
    opacity: 0;
    transform: translateX(-50px);
    position: absolute;
    list-style: none;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  .services ul.nacc li.active {
    transition-delay: 0.3s;
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateX(0px);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    background-color: #463f3f;
    border-radius: 15px;
    padding: 80px 120px 50px 120px;
  }
  
  .services ul.nacc li {
    width: 100%;
  }
  
  .services ul.nacc li .right-image img {
    max-width: 420px;
    float: right;
  }
  
  .services .nacc .thumb h4 {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 25px;
  }
  
  .services .nacc .thumb .main-white-button {
    text-align: right;
    margin-top: 40px;
  }
  
  .services .nacc .thumb .main-white-button a {
    background-color: #8d99af;
    color: #fff;
  }
  
  .services .nacc .thumb .main-white-button a i {
    background-color: #fff;
    color: #8d99af;
  }
  
  .services .left-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fa65b1 !important;
  }
  
  .services .left-text p {
    margin-bottom: 30px;
  }
  
  .nacc .ticks-list span {
    display: inline-block;
    opacity: 1;
    margin-right: 45px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
  }

  /*** Contact US form changes ***/


form {
    max-width: 500px;
    margin: auto;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}

        /*** blogs ***/

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
        }

        /* Header Styling */
        header {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 32px;
            letter-spacing: 1.5px;
        }

        /* Footer Styling */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 14px;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        /* Main Container */
        .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: 20px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Main Content */
        .main-content {
            flex: 3;
            margin-right: 20px;
            box-sizing: border-box;
        }

        /* Blog Post Card */
        .blog-post {
            background-color: #fff;
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .blog-post img {
            width: 100%;
            height: auto;
            display: block;
        }

        .blog-post h2 {
            padding: 20px;
            font-size: 24px;
            color: #333;
        }

        .blog-post p {
            padding: 0 20px 20px;
            font-size: 16px;
            color: #666;
            line-height: 1.7;
        }

        .read-more {
            display: block;
            background-color: #ff4757;
            color: white;
            text-align: center;
            padding: 12px 0;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .read-more:hover {
            background-color: #ff6b81;
        }

        /* Expanded Content */
        .extra-content {
            display: none;
            padding: 20px;
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            background-color: #f9f9f9;
            border-top: 1px solid #ddd;
        }

        /* Sidebar */
        .sidebar {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            box-sizing: border-box;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .sidebar h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 20px;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }

        /* Expandable Categories */
        .categories ul {
            list-style-type: none;
            padding: 0;
        }

        .categories ul li {
            margin-bottom: 15px;
        }

        .categories ul li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            cursor: pointer;
        }

        .sub-menu {
            display: none;
            padding-left: 20px;
            margin-top: 10px;
        }

        .sub-menu a {
            font-size: 14px;
            color: #555;
        }

        .sub-menu a:hover {
            text-decoration: underline;
        }

        /* Go Back Button */
        .go-back {
            display: none;
            margin: 20px 0;
            padding: 10px;
            background-color: #333;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .go-back:hover {
            background-color: #555;
        }

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

            .main-content {
                margin-right: 0;
            }

            .sidebar {
                margin-top: 20px;
            }
        }

/*** modal popup ***/


.holderCircle {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    margin: 60px auto;
    position:relative;
    float:right;
}


.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    background: #ffffff;
    color: #7d4ac7;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #7d4ac7;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #a733bb;
    right: -39px;
}

.dotCircle .itemDot.active .forActive {
    display:var(--primary);
}

.forActive {
  width: 10px;
  height: 10px;
  background-color: #007bff;
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
}

/* Position dots around the circle */
.itemDot[data-tab="1"] {
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.itemDot[data-tab="2"] {
  top: 25%;
  left: 90%;
  transform: translate(-90%, -25%);
}

.itemDot[data-tab="3"] {
  top: 75%;
  left: 90%;
  transform: translate(-90%, -75%);
}

.itemDot[data-tab="4"] {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.itemDot[data-tab="5"] {
  top: 75%;
  left: 10%;
  transform: translate(-10%, -75%);
}

.itemDot[data-tab="6"] {
  top: 25%;
  left: 10%;
  transform: translate(-10%, -25%);
}

/* Clockwise rotation animation */
@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

  

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 410px;
    height: 410px;
    border: 2px dotted #a733bb;
    border-radius: 100%;
    /* -webkit-animation: rotation 100s infinite linear; */
  
}



.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #7d4ac7;
    /* Old browsers */
    background: -moz-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #7d4ac7 0%, #a733bb 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(255, 255, 255, 0.13);
    -moz-box-shadow: 0 30px 30px 0 rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 30px 0 rgba(255, 255, 255, 0.13);
}

.dotCircle .itemDot {
    font-size: 40px;
}

.contentCircle {
    width: 250px;
    font-family: 'Poppins', sans-serif;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: -350px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 10px;
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 150px;
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

.contentCircle .CirItem i {
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}



/* Main container */
.feature-container {
    position: relative;

}

/* Default feature item styling */
.feature-item {
    width: 100%; /* Keep this width as needed */
}

/* Style for the larger feature item */
.larger-feature-item {
    width: 110%; /* Make it as wide as the grid column */
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}


/* Hidden content styling for larger width */
.hidden-content {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%; /* Position below the feature item */
    left: 0px; /* Adjust to center it or offset from the main content */
    width: 1200px; /* Set a larger width for the hidden content */
    z-index: 100; /* Keep above other content */
}

/* Show hidden content on hover */
.feature-container:hover .hidden-content {
    display: block;
}


/*------------------------------------------------------------------
        File Name: style.css
        Template Name: auricle
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
        1. import fonts
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
        2. import files
    -------------------------------------------------------------------*/



    @import url(animate.css);
    @import url(font-awesome.min.css);
    @import url(flaticon.css);
    /*------------------------------------------------------------------
            3. basic
    -------------------------------------------------------------------*/
    
    
    
    
    
    
    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: #212121;
        text-decoration: none!important;
        opacity: 1
    }
    
    ol,
    ul {
        list-style: none;
        margin: 0;
    }
    
    h2 {
        font-size: 54px;
        font-weight: 500;
        letter-spacing: -2px;
        position: relative;
        margin-bottom: 25px;
        line-height: 50px;
        position: relative;
    }
    
    h3 {
        font-size: 24px;
        color: #000;
        line-height: normal;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    h4 {
        font-size: 18px;
        color: #000;
        line-height: 21px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 30px 0 20px 0;
    }
    
    h5 {
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        line-height: normal;
        color: #000;
    }
    
    
    
    .img-responsive {
        max-width: 100%;
    }

    
    
    input,
    select,
    textarea,
    option {
        font-family: 'Poppins', sans-serif;
    }
    
    a#submit {
        z-index: 1;
    }
    
    
    
    
    .layout_padding {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
    .layout_padding_2 {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .full {
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
    }
    
    .vertical-center {
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    
    .right_side {
        float: right;
    }
    
    .text_align_right {
        text-align: right;
    }
    
    .left_side {
        float: left;
    }
    
    .text_align_left {
        text-align: left;
    }
    
    .text_align_center {
        text-align: center;
    }
    
    .center {
        width: 100%;
        display: flex;
        justify-content: center;
    }

/* Ensure the icons are responsive and fit within the container */
.thumb {
    text-align: center;
    margin: 15px;
}

.thumb .icon img {
    width: 50px; /* Set a max width to make the images smaller */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Flexbox for responsive layout */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Make the items stack vertically on mobile */
@media (max-width: 576px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
}


    
    /*------------------------------------------------------------------
            7. section
    -------------------------------------------------------------------*/
    
    
    
    
    /**-- contant section --**/
    
    
    
    
    
    .feature_box {
        min-height: 315px;
        padding: 45px 0 30px;
        margin-bottom: 30px;
        box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.2);
    }
    
    .app-features li {
    
        padding-left: 100px;
        position: relative;
        margin: 25px 0 0;
        float: left;
        border-bottom: dotted 1px #ddd;
        padding-bottom: 25px;
    
    }
    
    .app-features li > i {
        position: absolute;
        left: 0;
        width: 90px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        background: #fff;
        font-size: 35px;
        font-weight: 500;
        transition: ease all 0.5s;
        top: 0;
        border: solid #0aceb1 2px;
        color: #0aceb1;
    }
    
    .app-features ul li:last-child {
        border-bottom: none;
    }
    
     
    
    .app-features h4 {
        text-transform: none;
        font-weight: 500;
        color: #666;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    
    
    
    /**-- map --**/
    
    #map {
        height: 100%;
        min-height: 790px;
    }
    /**-- menu --**/

.menu {
    width: 100%;
    margin: -1px 0 0;
}

.main_menu {
    margin: 21px 0 0;
}
    
    .menu-container {
        margin: 0 auto;
        background: #e9e9e9;
    }
    
    .menu a.logo {
        display: inline-block;
        padding: 1.5em 3em;
        width: 19%;
        /* float: left; */
    }
    
    .menu img {
        max-width: 100%;
    }
    
    .menu-mobile {
        display: none;
        padding: 20px;
    }
    
    .menu-mobile::after {
        content: "\f0c9";
        font-family: "fontawesome";
        position: relative;
        left: -2px;
        top: 2px;
    }
    
    .menu-dropdown-icon::before {
        content: "\f078";
        font-family: "fontawesome";
        display: none;
        cursor: pointer;
        float: right;
        padding: 16px 15px 16px;
        background: transparent;
        color: #333;
        border-left: solid #ddd 2px;
        font-size: 11px;
    }
    
    .menu > ul {
        margin: 0;
        width: 100%;
        list-style: none;
    }
    
    .menu > ul:before,
    .menu > ul:after {
        content: "";
        display: table;
    }
    
    .menu > ul:after {
        clear: both;
    }
    
    .menu > ul > li {
        float: left;
        padding: 0;
        margin: 0;
    }
    
    .menu > ul > li a {
        padding: 15px 15px;
        display: block;
        color: #333;
        font-size: 15px;
    }
    
    .menu > ul > li:hover > a,
    .menu > ul > li:focus > a,
    .menu > ul > li.active > a {
        color: #1e72bc;
    }
    
    .menu > ul > li > ul {
        display: none;
        width: 100%;
        background-color: #fff;
        position: absolute;
        z-index: 99;
        left: 0;
        margin: 0;
        list-style: none;
        box-sizing: border-box;
        box-shadow: 0 15px 40px -20px #000;
        padding: 0;
        background-image: url('../images/landing_page/bg2.png');
        background-size: cover;
        background-position: right bottom;
        min-height: 420px;
        border-top: solid #1e72bc 5px;
    }
    
    .menu > ul > li > ul:before,
    .menu > ul > li > ul:after {
        content: "";
        display: table;
    }
    
    .menu > ul > li > ul:after {
        clear: both;
    }
    
    .menu > ul > li > ul > li {
        margin: 0;
        list-style: none;
        width: 25%;
        background: none;
        float: left;
        padding: 15px 20px 0 20px;
        min-height: auto;
    }
    
    .menu > ul > li > ul > li:nth-child(4) {
        border-right: none;
    }
    
    .menu > ul > li > ul > li a {
        color: #222;
        padding: 0;
        width: 100%;
        display: block;
    }
    
    .menu > ul > li > ul > li a:hover {
        color: #1e72bc;
    }
    
    .menu > ul > li > ul > li >ul {
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
        box-sizing: border-box;
    }
    
    .menu > ul > li > ul > li > ul:before,
    .menu > ul > li > ul > li > ul:after {
        content: "";
        display: table;
    }
    
    .menu > ul > li > ul > li > ul:after {
        clear: both;
    }
    
    .menu > ul > li > ul > li > ul > li {
        float: left;
        width: 100%;
        padding: 10px;
    }
    
    .menu > ul > li > ul > li > ul >li a {
        border: 0;
        font-size: 13px;
        font-weight: 400;
    }
    
    .menu > ul > li > ul.normal-sub {
        width: 300px;
        left: auto;
        padding: 15px 10px;
        min-height: auto;
        background-image: none;
    }
    
    .menu > ul > li > ul.normal-sub > li {
        width: 100%;
        padding: 10px 15px;
        min-height: auto;
    }
    
    .menu > ul > li > ul.normal-sub >li a {
        border: 0;
        font-size: 13px;
        font-weight: 400;
    }
    
    .right_bt {
        float: right;
        margin-top: 23px;
    }
    
    /** social icon **/
    
    .social_icons {
        float: right;
        margin: 9px 0 0px;
    }
    
    section .social_icons {
        width: 100%;
    }
    
    .social_icons li {
        display: inline;
        font-size: 15px;
        margin-left: 15px;
    }
    
    .social_icons li {
        display: inline;
        font-size: 14px;
        margin-left: 15px;
    }
    
    .social_icons li a {
        color: #222;
        font-size: 18px;
    }
    
    .social_icons li a:hover,
    .social_icons li a:focus {
       color: #0aceb1;
    }
    
    .logo img {
        width: 235px;
        margin: 0;
    }

    .ticks-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Space between items */
        align-items: center; /* Center items vertically */
    }
    
    .ticks-list span {
        display: flex;
        align-items: center; /* Align text and icon vertically */
    }
    
    .ticks-list i {
        margin-right: 10px; /* Space between the checkmark icon and the text */
    }
    
    @media (max-width: 576px) {
        .ticks-list {
            justify-content: center; /* Center the items on smaller screens */
        }
    }
    
    
    .responsive-section {
        padding: 10px; /* Add padding for better spacing */
    }
    
    .responsive-heading {
        font-size: 3rem; /* Adjust heading size for larger screens */
    }
    
    .responsive-paragraph {
        font-size: 1.2rem; /* Adjust paragraph size for readability */
    }
    
    /* Media query for smaller screens */
    @media (max-width: 768px) {
        .responsive-heading {
            font-size: 1.8rem; /* Smaller font size for heading on mobile */
        }
    
        .responsive-paragraph {
            font-size: 1rem; /* Adjust paragraph size for mobile */
        }
    
        .responsive-section {
            padding: 15px; /* Reduce padding on smaller screens */
        }
    }

  
    .CirItem .title {
        font-size: 20px; /* Reduced font size for the title */
        font-weight: bold; /* Optionally bold */
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
    }


/* Rotating the circle with icons around it */
.dotCircle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateCircle 10s linear infinite; /* 10s for rotation speed */
    transform-origin: center; /* Rotate around the center */
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg); /* Complete clockwise rotation */
    }
}

@media (max-width: 768px) {
    .holderCircle {
        width: 100%;
        height: auto;
    }
    .contentCircle {
        text-align: center;
        margin-top: 20px;
    }
    .itemDot {
        width: 50px;
        height: 50px;
    }
}

