
/*** 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;
}

.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 {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

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

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 34px;
}

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

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

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

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 400px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/about-our-company.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Digital Marketing Hero Header Start ***/
.bg-breadcru {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/Digital-Marketing1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcru .breadcru {
    position: relative;
}

.bg-breadcru .breadcru .breadcru-item a {
    color: var(--bs-white);
}
/*** Digital Marketing Hero Header End ***/

/*** Software Development Hero Header Start ***/
.bg-sd {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/Software-Development1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-sd .sd {
    position: relative;
}

.bg-sd .sd .sd-item a {
    color: var(--bs-white);
}
/*** Software Development Hero Header End ***/

/*** SEO Hero Header Start ***/
.bg-seo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/SEO2.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-seo .seo {
    position: relative;
}

.bg-seo .seo .seo-item a {
    color: var(--bs-white);
}
/*** SEO Hero Header End ***/

/*** SMM Hero Header Start ***/
.bg-smm {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/SMM1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-smm .smm {
    position: relative;
}

.bg-smm .smm .smm-item a {
    color: var(--bs-white);
}
/*** SMM Hero Header End ***/

/*** GoogleAds Hero Header Start ***/
.bg-googleAds {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/GoogleAds.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-itis {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/GoogleADS.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-smo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/SMO-slider.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-googleAds .bg-smo .googleAds .smo{
    position: relative;
}

.bg-googleAds .bg-smo .googleAds .smo .googleAds-item .smo-item a {
    color: var(--bs-white);
}
/*** googleAds Hero Header End ***/

/*** Email Marketing Hero Header Start ***/
.bg-em {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/Email-marketing-slider.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-am {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/Affiliate-marketing-service.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-em .em .bg-am .am{
    position: relative;
}

.bg-em .bg-am .em .am .em-item .am-item a {
    color: var(--bs-white);
}
/*** Email Marketing Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.3); 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/techImg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}




.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

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

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/HomeImg.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

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

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

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

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/techImg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    gap: 90px;
    bottom: -22px;
    right: 41%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

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

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

         /* Remove list styles from the seo */
.em {
    list-style-type: none; /* Removes default list style (bullets/numbers) */
    padding-left: 0; /* Ensures no padding is added */
}

.em-item {
    display: inline-block;
    margin-right: 10px; /* Adds space between breadcrumb items */
}

.em-item a {
    color: #fff; /* Set the color of breadcrumb links */
    text-decoration: none; /* Remove underline */
}

.em-item.active {
    color: #007bff; /* Active breadcrumb item color */
}

/* Styling for the heading (h1, h2) */
.heading-title {
    background-color: #3cbeee; /* Blue background color */
    color: white; /* White text color for contrast */
    padding: 15px 30px; /* Padding around the text */
    border-radius: 8px; /* Rounded corners */
    max-width: 80%; /* Restrict width to 80% of the container */
    margin: 0 auto; /* Center the heading within its container */
    text-align: center; /* Ensure text is centered */
}

/* Optional: Add some margin below the heading */
h1, h2 {
    margin-bottom: 20px; /* Space below the heading */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .heading-title {
        max-width: 90%; /* Increase width to 90% for smaller screens */
        padding: 15px 20px; /* Adjust padding for smaller screens */
    }

    .li-box {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    /* Adjust grid layout for smaller screens */
    .col-md-4 {
        flex: 0 0 100%; /* Full-width columns on smaller screens */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .heading-title {
        max-width: 95%; /* Increase width to 95% for very small screens */
        padding: 12px 15px; /* Further reduce padding */
        font-size: 1.5rem; /* Adjust font size for smaller devices */
    }

    .description {
        max-width: 100%; /* Full width for paragraph on small screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

.description {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    text-align: justify;
    color: black;
    max-width: 900px; /* Wider width */
    margin: 0 auto; /* Centers the paragraph */
    padding: 20px; /* Adds padding around the text */
    background-color: #e7e7e761; /* Smoky white background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for effect */
}

/* Add custom styles for the section */
    .our-process {
        font-family: 'Arial', sans-serif;
        margin-top: 50px;
    }

    .our-process h2 {
        font-family: 'Georgia', serif;
        font-weight: bold;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 30px;
    }

    .our-process h4 {
        font-family: 'Georgia', serif;
        font-weight: bold;
        font-size: 1.5rem;
        color: #444;
        margin-top: 20px;
    }

    .our-process p {
        font-family: 'Arial', sans-serif;
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }

    .our-process .row {
        display: flex;
        flex-wrap: wrap;
        /*justify-content: space-between;*/
    }
    
    
    .description{
    
    text-align:justify;
}

    .our-process .col-md-6 {
        flex: 0 0 48%;
        max-width: 48%;
        padding: 15px;
    }

    .our-process .col-md-6 h4 {
        color: #3cbeee;
    }

    .our-process .col-md-6 p {
        color: #666;
    }

    .our-process .col-md-6:hover {
        background-color: #f7f7f7;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

    .our-process p.text-center {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        margin-top: 30px;
    }

p{
    
    text-align:justify;
}

 /* Styling for the card container */
    .card {
        transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
        background-color: #fff; /* White background for each card */
        border-radius: 8px; /* Rounded corners */
        padding: 20px; /* Add padding to the inside of the card */
    }

    /* Hover effect for cards */
    .card:hover {
        transform: translateY(-10px); /* Move the card slightly up on hover */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
        background-color: #e9f7ff; /* Change background color slightly on hover */
    }

    /* Card Titles */
    .card-title {
        font-size: 1.25rem;
        color: #007bff; /* Blue color for headings */
    }

    /* Card Text */
    .card-text {
        font-size: 1rem;
        color: #555; /* Slightly lighter text color for paragraphs */
        line-height: 1.6;
    }

    /* Container and Section Titles */
    .heading-title {
        font-size: 2rem; /* Larger font for section titles */
        color: #333; /* Darker color for better readability */
        font-weight: bold;
    }

    /* Spacing adjustments for responsive design */
    .row {
        margin-bottom: 30px;
    }

    /* Media query for smaller screens */
    @media (max-width: 768px) {
        .card {
            margin-bottom: 20px; /* Ensure there's space between cards on smaller screens */
        }
    }
    
     /* Container and Section Titles */
    .heading-title {
        font-size: 2rem; /* Larger font for section titles */
        color: #333; /* Darker color for better readability */
        font-weight: bold;
    }

    /* Card and Text Styling */
    .card {
        transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
        background-color: #fff; /* White background for each card */
        border-radius: 8px; /* Rounded corners */
        padding: 20px; /* Add padding to the inside of the card */
    }

    /* Hover effect for cards */
    .card:hover {
        transform: translateY(-10px); /* Moves the card slightly up on hover */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Adds shadow on hover */
        background-color: #e9f7ff; /* Changes background color slightly on hover */
    }

    /* Card Titles */
    .card-title {
        font-size: 1.25rem;
        color: #007bff; /* Blue color for headings */
    }

    /* Card Text */
    .card-text {
        font-size: 1rem;
        color: #555; /* Slightly lighter text color for paragraphs */
        line-height: 1.6;
    }

    /* Paragraph Text */
    .description {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
    }

    /* Media Query for Mobile Devices */
    @media (max-width: 768px) {
        .heading-title {
            font-size: 1.75rem; /* Adjust heading size for smaller screens */
        }

        .description {
            font-size: 14px; /* Adjust description font size */
        }

        .card {
            margin-bottom: 20px; /* Ensure there's space between cards on mobile */
        }

        /* Stack the cards in a single column on mobile */
        .row {
            display: block;
        }

        .col-md-4 {
            width: 100%; /* Make columns full width on mobile */
        }
    }

    /* Responsive Card Layout */
    .card {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    /* Spacing adjustments for sections */
    .our-process {
        margin-top: 30px;
    }
    
    /* General Styles */
    .heading-title {
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
        color: #333;
        text-align: center;
    }

    .description {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        text-align: center;
    }

    /* Card Styling */
    .seo-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .seo-card h4 {
        font-size: 18px;
        color: #007bff;
        font-weight: bold;
    }

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

    /* Card Hover Effect */
    .seo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        background-color: #e3f2fd; /* Light blue background on hover */
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .col-12 {
            width: 100%;
            margin-bottom: 20px;
        }

        .seo-card {
            padding: 15px;
        }

        .heading-title {
            font-size: 1.5rem;  /* Smaller font for mobile */
        }

        .description {
            font-size: 14px; /* Adjust description text size for mobile */
        }

        /* Decrease font size for headings inside the card */
        .seo-card h4 {
            font-size: 16px;
        }

        .seo-card p {
            font-size: 12px;
        }
    }

    /* Tablet Layout (from 768px to 1024px) */
    @media (min-width: 768px) and (max-width: 1024px) {
        .col-md-4 {
            width: 48%; /* Less width on tablet for better spacing */
        }

        /* Adjust heading font size */
        .heading-title {
            font-size: 1.75rem;
        }
    }
  /* Remove list styles from the seo */
.seo {
    list-style-type: none; /* Removes default list style (bullets/numbers) */
    padding-left: 0; /* Ensures no padding is added */
}

.seo-item {
    display: inline-block;
    margin-right: 10px; /* Adds space between breadcrumb items */
}

.seo-item a {
    color: #fff; /* Set the color of breadcrumb links */
    text-decoration: none; /* Remove underline */
}

.seo-item.active {
    color: #007bff; /* Active breadcrumb item color */
}



p{
    
    text-align:justify;
}
 /* General Styles */
    .heading-title {
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
        color: #333;
        text-align: center;
    }

    .description {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        text-align: center;
    }

    /* Card Styling */
    .seo-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .seo-card h4 {
        font-size: 18px;
        color: #007bff;
        font-weight: bold;
    }

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

    /* Card Hover Effect */
    .seo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        background-color: #e3f2fd; /* Light blue background on hover */
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .col-12 {
            width: 100%;
            margin-bottom: 20px;
        }

        .seo-card {
            padding: 15px;
        }

        .heading-title {
            font-size: 1.5rem;  /* Smaller font for mobile */
        }

        .description {
            font-size: 14px; /* Adjust description text size for mobile */
        }

        /* Decrease font size for headings inside the card */
        .seo-card h4 {
            font-size: 16px;
        }

        .seo-card p {
            font-size: 12px;
        }
    }

    /* Tablet Layout (from 768px to 1024px) */
    @media (min-width: 768px) and (max-width: 1024px) {
        .col-md-4 {
            width: 48%; /* Less width on tablet for better spacing */
        }

        /* Adjust heading font size */
        .heading-title {
            font-size: 1.75rem;
        }
    }
    
/*my testing*/
    /* External CSS */

/* General Styles for Title */
.heading-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: white;
    text-align: center;
    font-size: 2rem;
}

/* Description Text */
.description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

/* Card Styling */
.seo-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

/* Card Header Styling */
.seo-card h4 {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
}

/* Card Paragraph Styling */
.seo-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effect on Cards */
.seo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background-color: #e3f2fd; /* Light blue background on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Stack the cards vertically for small screens */
    .col-12 {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust padding inside the card */
    .seo-card {
        padding: 15px;
    }

    /* Adjust font sizes for mobile */
    .heading-title {
        font-size: 1.5rem; /* Smaller heading on mobile */
    }

    .description {
        font-size: 14px; /* Smaller text on mobile */
    }

    /* Adjust card h4 and paragraph text size for mobile */
    .seo-card h4 {
        font-size: 16px;
    }
    .seo-card{
        
        height:245px!important;
    }

    .seo-card p {
        font-size: 12px;
        
    }
}

/* Tablet Layout (from 768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .col-md-4 {
        width: 48%; /* Less width on tablet for better spacing */
    }

    .heading-title {
        font-size: 1.75rem; /* Adjust font size for tablet */
    }
}

/* Custom color for the headings */
.our-process h2 {
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
}

/* Adjust description color for better visibility on light background */
.description {
    color: #666;
}


    
    
    
    
