

:root {
    --primary: #059ff9;
    --secondary: hsl(196, 83%, 48%);
    --light: #eaf1fa;
    --dark: #14183E;
}

body {
    background-color: #eaf1fa;
}
/*** 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);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    /* color: var(--bs-white); */
    color: #141414;

    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
    text-align: right;

}

  .dropdown-submenu:hover > .dropdown-menu,
  .dropdown-submenu .dropdown-toggle:focus + .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    /* color: var(--bs-white); */
     color: #000000;
   
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    /* max-height: 60px; */
    max-height: 220px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px; */
    max-height: 220px;
}

.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);
/* 
    width: 200px;
    animation: spinHorizontal 3s linear infinite; */
}

/* Spin only the image inside the hovered link */
.dropdown .dropdown-menu a:hover img {
    animation: spinHorizontal 1s linear infinite;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
        color:#ffffff;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@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;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 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.10s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    /* background: rgba(0, 0, 0, .7); */
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


/* KRT */
/* 
.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 4s;
} */

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(../img/about/side6.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        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 ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color:#ffffff;
    background: #c4c2c2;
}

.offer-section .nav a.accordion-link h6 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h6 {
    color: var(--bs-dark);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: #eaf1fa;
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    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-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    /* padding: 6px 35px; */
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
    margin-top:250px;
    margin-left:-50px;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    /* padding: 6px 35px; */
     padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
     margin-top:250px;
    margin-right:-50px;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
    
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
    margin-top:250px;
    margin-left:-50px;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
    margin-top:250px;
    margin-right:-50px;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin: 10px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: var(--bs-secondary);
    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: 10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.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 End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/


/* Base nested submenu style */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  min-width: 200px;
  top: 0;
  left: 100%;
  z-index: 1000;
  margin-left: 0;
  background-color: var(--bs-light);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Animation styles for dropdown and nested dropdowns on large screens */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    transform: rotateX(-75deg);
    transform-origin: top;
    opacity: 0;
    transition: 0.5s ease;
  }

  .navbar .nav-item:hover > .dropdown-menu {
    visibility: visible;
    transform: rotateX(0);
    opacity: 1;
  }

  .dropdown-submenu > .dropdown-menu {
    visibility: hidden;
    transform: rotateX(-75deg);
    transform-origin: top left;
    opacity: 0;
    transition: 0.5s ease;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    visibility: visible;
    transform: rotateX(0);
    opacity: 1;
  }
}


.card {
  position: relative;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* color: #333; */
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
  /* transition: color 0.8s ease; */
    /* Shadow and transition */
    transition: color 0.8s ease;


}

/* The color fill pseudo-element */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  /* background: #57ccfa; Fill color */
    /* background: #39A6C1;
    background: linear-gradient(90deg, rgba(57, 166, 193, 0.81) 0%, rgba(17, 91, 144, 0.64) 50%, rgba(76, 196, 219, 0.71) 100%); */
    /* background: #00D4FF;
    background: linear-gradient(90deg,rgba(0, 212, 255, 1) 0%, rgba(69, 150, 222, 1) 35%, rgba(0, 212, 255, 1) 100%); */
    /* background:  #39A6C1;
    background: linear-gradient(90deg,rgba(57, 166, 193, 1) 0%, rgba(17, 91, 144, 1) 35%, rgba(31, 116, 160, 1) 64%, rgba(116, 218, 235, 1) 100%); */
   /* final one  */
    /* background:  #39A6C1;
    background: linear-gradient(90deg,rgba(57, 166, 193, 1) 0%, rgba(17, 91, 144, 0.84) 36%, rgba(31, 116, 160, 1) 67%, rgba(116, 218, 235, 1) 100%); */
    /* background:  #39A6C1;
    background: linear-gradient(90deg, rgba(57, 166, 193, 1) 0%, rgba(17, 91, 144, 0.84) 45%, rgba(31, 116, 160, 1) 69%, rgba(116, 218, 235, 1) 100%); */
    /* background:  #39A6C1;
    background: linear-gradient(90deg,rgba(57, 166, 193, 1) 0%, rgba(21, 111, 176, 0.84) 46%, rgba(31, 116, 160, 0.67) 72%, rgba(116, 218, 235, 1) 100%); */
    /* background: #115B90;
    background: linear-gradient(90deg,rgba(17, 91, 144, 1) 0%, rgba(57, 166, 193, 1) 35%, rgba(116, 218, 235, 1) 100%); */
    
    /* background: #115B90;
    background: linear-gradient(90deg,rgba(17, 91, 144, 1) 0%, rgba(57, 166, 193, 1) 35%, rgba(88, 174, 200, 1) 100%); */

    /* transition: width 1s ease;
    z-index: -1; */

    background-image: url('../img/banner/banner13.png'); 
    background-size: cover; 
    opacity: 0;
  transition: opacity 1s ease;
  z-index: -1;
}

.card:hover::before {
  width: 100%;
  opacity: 1;
}

.card:hover {
  color: #fff;
}




/* 
.spin-horizontal {
  width: 200px;
  animation: spinHorizontal 2s linear infinite;
} */

@keyframes spinHorizontal {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}



.card-type2 {
  position: relative;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
  transition: color 0.3s ease;
}

.card-type2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;

  /* wavy pattern as background image */
  background: url('data:image/svg+xml,%3Csvg width="100%25" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill="%230088e2" d="M0 20 Q 80 60 100 30 T 360 40 V60 H0z"/%3E%3C/svg%3E')
    repeat-x bottom;
  background-size: contain;

  transition: height 0.6s ease;
  z-index: -1;
}

.card-type2:hover::before {
  height: 100%;
}

.card-type2:hover {
  color: #000000;
}



.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}



/* ** About **   in index */
.about-fact {
    width: 170px;
    height: 170px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px ;
    }
}



.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-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: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px 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: 800px;
    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;
}


/* ** About **   in index */

/* Normal links */
#navbarCollapse a {
  color: black; /* or whatever color you want initially */
  transition: color 0.3s;
}

/* When scrolled, links become blue */
/* #navbarCollapse.scrolled a {
  color: blue;
} */


@media all and (min-width:992px) {

    
	.navbar .nav-item .nav-link {
		margin-right: 20px;
		padding: 30px 0;
		font-size: 12px;
		font-weight: 700;
		color: #151423;
		font-family: rajdhani, sans-serif;
		text-transform: uppercase
	}

	.navbar .nav-item:last-child .nav-link {
		margin-right: 0
	}

	.navbar .nav-item .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .4s;
		margin-top: 0;
		padding: 0;
		border: none;
		left: -15px;
		border-radius: 0;
		background: #fff;
		width: 220px;
		box-shadow: 0 3px 24px rgb(0 0 0/10%)
	}

	.navbar .nav-item .dropdown-menu li {
		border-bottom: 1px solid #eee
	}

	.navbar .nav-item .dropdown-menu li:last-child {
		margin-bottom: 0;
		border-bottom: none
	}

	.navbar .nav-item .dropdown-menu .dropdown-item {
		font-size: 15px;
		/* font-weight: 700; */
		padding: 10px 0 10px 25px;
		color: #151423;
		font-family: rajdhani, sans-serif;
		position: relative;
		/* text-transform: uppercase; */
		transition: all .5s ease-in-out;
        
         
		z-index: 1
	}

	.navbar .nav-item .dropdown-menu .dropdown-item:hover {
		background: 0 0;
		color: #ffffff;
		padding-left: 35px
	}

	.navbar .nav-item .dropdown-menu .dropdown-item::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 0;
		height: 100%;
		background: #0088e2;
		/* transition: all .5s ease-in-out; */
    /* transition: all 0.7s cubic-bezier(0.68, -0.25, 0.27, 1.55);/ */
    /* transform: scale(1.05); or color, opacity, etc. */
    transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
		z-index: -1
	}

	.navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
		width: 100%
	}

	.navbar .nav-item .nav-link {
		position: relative;
        /* color: #0060ff; */
	}

	.navbar .nav-item .nav-link.active,
	.navbar .nav-item:hover .nav-link {
		color: #0060ff
	}

	.navbar .nav-item:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg)
	}

	.navbar .dropdown-menu-end {
		right: 0;
		left: auto
	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%
	}

	.navbar .dropdown-menu.fade-up {
		top: 140%
	}

	.header-nav-right {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-left: 30px
	}

	.header-nav-link {
		position: relative;
		width: 45px;
		height: 45px;
		line-height: 45px;
		color: #151423;
		display: flex;
		align-items: center;
		justify-content: center
	}

	.header-nav-link:hover {
		color: #0060ff
	}

	.header-nav-link.search-box-outer {
		font-size: 18px
	}

	#main_nav {
		justify-content: flex-end
	}
}

.navbar {
	background: #fcf9f9c4;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 999;
      color: #fff;
}

.navbar.fixed-top {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .17);
	animation: slide-down .7s
  
}

.navbar.fixed-top .nav-item .nav-link {
	color: #151423
}

.navbar.fixed-top .header-nav-link {
	color: #151423
}

.navbar.fixed-top .header-nav-link:hover {
	color: #008cff;
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
	color: #008cff;
}

@keyframes slide-down {
	0% {
		transform: translateY(-100%)
	}

	100% {
		transform: translateY(0)
	}
}

.navbar .navbar-brand .logo-display {
	display: block
}

.navbar .navbar-brand .logo-scrolled {
	display: none
}

.navbar.fixed-top .navbar-brand .logo-display {
	display: none
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
	display: block
}

button.navbar-toggler:focus {
	outline: none;
	box-shadow: none
}

.navbar-toggler-btn-icon {
	display: inline-block;
	width: inherit;
	height: inherit
}

.navbar-brand {
	margin-right: 0
}

.navbar-brand img {
	width: 190px
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
	font-family: 'font awesome 6 pro';
	content: "\f107";
	font-weight: 600;
	border: none;
	font-size: 14px
}

@media all and (max-width:1199px) {
	.header-nav-right {
		gap: 5px;
		margin-left: 15px
	}

	.navbar .nav-item .nav-link {
		margin-right: 15px;
        color: #020202;
	}

	.navbar .header-btn {
		display: none
	}
}

.mobile-menu-right {
	display: none
}

@media all and (max-width:991px) {
	.navbar {
		top: 0;
		right: 0;
		left: 0;
		position: fixed
	}

	.navbar-bg {
		height: 59px
	}

	.navbar-bg::before {
		transform: translateY(0px) skew(-15deg);
		left: -8px
	}

	.navbar-brand {
		padding-left: 10px
	}

	.navbar-brand img {
		width: 130px
	}

	.navbar-collapse {
		max-height: 220px;
		overflow: hidden;
		overflow-y: auto;
		padding: 0 20px;
		background-color: #ffffff62
	}

	.dropdown-toggle::after {
		float: right
	}

	.navbar .nav-item .nav-link {
		color: #151423;
		/* font-weight: ; */
		transition: all .5s ease-in-out
	}

	.navbar .nav-item .nav-link:hover {
		color: #0060ff !important
	}

	.navbar-toggler {
		padding: 0;
		border: none
	}

	.mobile-menu-right {
		display: flex;
		align-items: center
	}

	.mobile-menu-link {
		font-size: 20px;
		color: #151423;
		font-weight: 500;
		padding-right: 20px;
		margin-bottom: 0;
		position: relative
	}

	.mobile-menu-link:hover {
		color: #0060ff
	}

	.navbar-toggler-btn-icon {
		font-size: 25px;
		color: #151423;
		font-weight: 500
	}

	.navbar.fixed-top .mobile-menu-link {
		color: #151423
	}

	.navbar.fixed-top .navbar-toggler-btn-icon {
		color: #151423
	}

	.navbar .dropdown-menu {
		border-radius: 8px
	}

	.header-nav-right {
		display: none
	}
}

.navbar .nav-item .dropdown-submenu {
	position: relative
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
	display: none
}

.navbar .nav-item .dropdown-submenu a::after {
	transform: rotate(-90deg);
	position: absolute;
	right: 15px;
	top: 12px;
	font-weight: 600
}

.navbar .nav-item .dropdown-submenu a:hover {
	background: 0 0;
	color: #1b1b1b
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
	top: 120%;
	left: 100%;
	opacity: 0;
	visibility: hidden
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
	top: 0;
	opacity: 1;
	visibility: visible
}

@media all and (max-width:991px) {
	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		margin: 0 17px
	}

	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		opacity: unset;
		visibility: unset
	}

	.navbar .nav-item .dropdown-submenu a::after {
		top: 4px
	}

	.navbar .nav-item .dropdown-submenu a:hover {
		color: #0060ff
	}
}





/*** About img***/
.about-img {
    position: relative;
    overflow: hidden;
    display:flex;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/index/bg-about-img.png) top left no-repeat;
    background-size: contain;
}



/* <!-- mission vision --> */
.cardvision {
  flex: 1 1 50%;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  background: #e4e4e4;
  color: #000000;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* Hover Styles */
.mission:hover {
  background: #0088e2;
  color: #fff;
}

.vision:hover {
   background: #0088e2;
  color: #fff;
}




.cardcheck {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
    margin:5px;
}

.cardcheck:hover {
    transform: translateY(-2px);
}
.checkmark {
    background: #e6eeff;
    color: #3b5be5;
    padding: 0.3rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1.2;
}
/* <!-- mission vision --> */



/* Cursor */
.cursor{
    position: relative;
    /* width: 24em; */
    /* margin: 0 auto; */
    border-right: 2px solid rgba(255,255,255,.75);
    /* font-size: 30px; */
    /* text-align: center; */
    margin-top: 20px;;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}
/* Animation */
.typewriter-animation {
  animation: 
    typewriter 2s steps(40) 1s 1 normal both, 
    blinkingCursor 550ms steps(25) infinite normal;
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}






/* image compare style */
.comparecontainer {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 10px;
}

.before,
.after {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after {
  animation: reveal 2s infinite alternate ease-in-out;
}

.divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffffff;
  animation: moveLine 2s infinite alternate ease-in-out;
  z-index: 2;
}

/* Animate clip-path for image */
@keyframes reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Animate divider line position */
@keyframes moveLine {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}




/* //image slide  */


  .slider {
      overflow: hidden;
      width: 100%;
      max-width: 800px;
      margin: auto;
      border: 2px solid #ccc;
    }

    .slide-track {
      display: flex;
      width: calc(300px * 10); /* 5 images shown twice for seamless loop */
      animation: scroll 20s linear infinite;
    }

    .slide {
      width: 300px;
      flex-shrink: 0;
      transition: transform 0.5s;
    }

    .slide img {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-1500px); } /* move left by 5 images (5*300px) */
    }



/* //blog with 4cards  */

.cardblog-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .cardblog-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 250px;
      transition: transform 0.3s ease;
    }

    .cardblog-card:hover {
      transform: translateY(-5px);
    }

    .cardblog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .cardblog-content {
      padding: 20px;
    }

    .cardblog-content h3 {
      font-size: 1.2em;
      margin-bottom: 10px;
      color: #333;
    }

    .cardblog-content p {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .cardblog-content a {
      display: inline-block;
      padding: 8px 16px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }

    .cardblog-content a:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .cardblog-card {
        max-width: 90%;
      }
    }

/* //blog with 4cards  */



/* for font style */

 .magazine-title {
      font-family: 'Playfair Display', serif;
      font-size: 50px;
      /* color: #fffaf3; */
      font-weight: 600;
      letter-spacing: -1px;
    }

     .magazine-small {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      /* color: #fffaf3; */
      font-weight: 600;
      letter-spacing: -1px;
    }


    .magazine-small1 {
      font-family: 'Playfair Display', serif;
      /* font-size: 25px; */
      /* color: #fffaf3; */
      /* font-weight: 550; */
      letter-spacing: -1px;
    }



    
/* //mission vision card  */

    .mv-card-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .mv-card {
      position: relative;
      /* width: 260px; */
      background: #fff;
      border-radius: 0px;
      padding: 30px 20px 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    .mv-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .mv-ribbon {
      position: absolute;
      top: 0;
      left: 0;
      width: 150px;
      height: 150px;
      background: var(--bs-primary);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      transition: all 0.4s ease-in-out;
      z-index: 1;
    }

    .mv-card:hover .mv-ribbon {
      width: 250px;
      height: 250px;
    }

    .mv-icon {
      font-size: 40px;
      color: var(--bs-primary);
      margin-top: 30px;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .mv-card:hover .mv-icon {
      transform: scale(1.2);
    }

    .mv-title {
      font-size: 20px;
      font-weight: bold;
      color: var(--bs-primary);
      margin: 15px 0 10px;
      position: relative;
      z-index: 2;
    }

    .mv-description {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
      padding: 0 10px;
      position: relative;
      z-index: 2;
    }

    .mv-step {
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 1px;
      color: var(--mv-color);
      position: relative;
      z-index: 2;
    }

    /* Individual Card Themes */
    .mv-card--mission {
      --mv-color: #f9a825;
    }

    .mv-card--vision {
      --mv-color: #009688;
    }

    .mv-card--values {
      --mv-color: #2196f3;
    }

    @media (max-width: 768px) {
      .mv-card {
        width: 90%;
        max-width: 300px;
      }
    }





/*** Service mode 2***/
.servicemode2-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.servicemode2-item:hover {
    background: var(--primary);
}

.servicemode2-item .servicemode2-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%; 
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.servicemode2-item:hover .servicemode2-icon {
    background: #FFFFFF;
    border-radius: 50%; 
}

.servicemode2-item h5,
.servicemode2-item p {
    transition: .5s;
}

.servicemode2-item:hover h5,
.servicemode2-item:hover p {
    color: #FFFFFF;
}

.servicemode2-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
    
}

.servicemode2-item:hover a.btn {
    color: var(--primary);
    
}


.servicemode2-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.servicemode2-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}



@media (max-width: 768px) {
    .servicemode2-item {
        padding: 30px 20px;
        text-align: center;
    }

    .servicemode2-icon {
        margin: 0 auto 20px auto;
    }

    .servicemode2-content,
    .servicemode2-item h5,
    .servicemode2-item p {
        text-align: center;
    }

    .servicemode2-item a.btn {
        justify-content: center;
    }
    
}




/* //about mode 2  */

.aboutmode2-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.aboutmode2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.aboutmode2-container.reverse {
  flex-direction: row-reverse;
}

.aboutmode2-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.aboutmode2-image img {
  width: 100%;
  height: auto;
  display: block;
}

.aboutmode2-text {
  flex: 1;
  max-width: 550px;
}

.label {
  text-transform: uppercase;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title {
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.aboutmode2-text p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .aboutmode2-container {
    flex-direction: column;
    text-align: center;
  }

  .aboutmode2-container.reverse {
    flex-direction: column;
  }

  .aboutmode2-text {
    max-width: 100%;
  }
}




/* //form design  */

/* FORM WRAPPER */
#contactForm {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

/* FORM ELEMENTS */
#contactForm .form-floating {
  margin-bottom: 25px;
  position: relative;
}

#contactForm label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #e3ecff;
  transition: 0.3s ease;
  font-size: 15px;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: #0077b6;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.2);
}

/* FILE INPUT STYLE */
#contactForm input[type="file"] {
  padding: 10px;
  background-color: #e3ecff;
  border: 1px dashed #e3ecff;
}

/* BUTTON STYLE */
#contactForm .theme-btn {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contactForm .theme-btn:hover {
  background-color: #0096c7;
  transform: translateY(-2px);
}

/* SUBMIT ICON SPIN */
#submit_spin {
  margin-right: 10px;
  color: #0077b6;
  display: none;
}

/* MESSAGE STYLE */
#msgSubmit {
  margin-top: 10px;
  font-size: 14px;
  color: green;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 600px) {
  #contactForm {
    padding: 25px 20px;
  }

  #contactForm .theme-btn {
    width: 100%;
    text-align: center;
  }
}



/* map design */


    .map-section {
      flex: 1;
      min-width: 300px;
      height: 500px;
    }

    #map-frame {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 10px;
    }

    .locations-section {
      flex: 1;
      min-width: 300px;
    }

    .locations-section h2 {
      font-size: 32px;
      margin-bottom: 10px;
      color: #2b2b66;
    }

    .locations-section p {
      font-size: 14px;
      color: #555;
      margin-bottom: 25px;
    }

    .location-card {
      border: 2px solid #059ff9;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 15px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .location-card:hover {
      background: #91b7f1cb;
    }

    .location-info {
      flex: 1;
    }

    .location-info h3 {
      font-size: 18px;
      color: #2b2b66;
      margin-bottom: 8px;
    }

    .location-info p {
      font-size: 14px;
      color: #333;
      margin-bottom: 6px;
    }

    .get-directions {
      font-size: 14px;
      color: var(--primary) ;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      margin-top: 8px;
    }

    .map-thumb {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 1px solid #ddd;
    }

    .map-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    /* card mode 3  */

    
    .our-story-section {
      display: flex;
      flex-wrap: wrap;
      padding: 0px;
      gap: 30px;
      justify-content: center;
    }

    .left-content, .right-content {
      flex: 1 1 400px;
    }

    .section-label {
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 2px;
      color: #888;
      margin-bottom: 20px;
    }

    .headline {
      font-size: 36px;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .headline span {
      color: #ef3e52;
    }

    .main-image img {
      width: 100%;
      border-radius: 10px;
    }

    .right-top-images {
      display: flex;
      gap: 20px;
      margin-bottom: 25px;
    }

    .small-card {
      position: relative;
      flex: 1;
    }

    .small-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .tags {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      gap: 8px;
    }

    .tags span {
      background: #2d2d2d;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      color: #fff;
    }

    .description {
      font-size: 15px;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 30px;
    }

    .stats {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .stat-item {
      font-size: 14px;
      color: #eee;
    }

    .stat-item strong {
      display: block;
      font-size: 20px;
      color: #fff;
    }

    .bottom-bar {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .avatars {
      display: flex;
    }

    .avatars img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -10px;
    }

    .play-button {
      width: 50px;
      height: 50px;
      background: #ef3e52;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: bold;
      font-size: 22px;
      cursor: pointer;
    }

    .watch-label {
      font-size: 14px;
      color: #ccc;
    }

    @media (max-width: 768px) {
      .our-story-section {
        padding: 30px;
      }

      .headline {
        font-size: 28px;
      }

      .right-top-images {
        flex-direction: column;
      }
    }



    /* card mode4 */
    /* .section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 60px;
      gap: 40px;
      justify-content: center;
    } */

    .left {
      flex: 1 1 400px;
      position: relative;
    }

    .left img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .image-grid {
      display: flex;
      gap: 20px;
    }

    .image-grid .img1 {
      width: 60%;
      z-index: 2;
    }

    .image-grid .img2 {
      width: 40%;
      margin-top: 60px;
    }

    .dots {
      position: absolute;
      width: 80px;
      height: 80px;
      background-image: radial-gradient(#009688 1.5px, transparent 1.5px);
      background-size: 10px 10px;
    }

    .dots.top-left {
      top: -20px;
      left: -20px;
    }

    .dots.bottom-right {
      bottom: -30px;
      right: -30px;
      background-color: transparent;
      background-image: radial-gradient(#ccc 1.5px, transparent 1.5px);
    }

    .right {
      flex: 1 1 400px;
    }

    .section-label {
      font-size: 14px;
      color: #009688;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #1d1d1d;
    }

    .title span {
      border-bottom: 3px solid #ff9800;
    }

    .description {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
    }

    .feature-box {
      flex: 1 1 200px;
      background: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-box::before {
      content: '✔';
      color: #009688;
      font-weight: bold;
    }

    .video-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .video-circle {
      width: 50px;
      height: 50px;
      background-color: #009688;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
    }

    .video-text {
      font-size: 16px;
      color: #009688;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .section {
        padding: 30px;
      }

      .title {
        font-size: 24px;
      }

      .image-grid {
        flex-direction: column;
        gap: 10px;
      }

      .image-grid .img1, .image-grid .img2 {
        width: 100%;
        margin-top: 0;
      }
    }


    /* card mode 4  */

    
    .section {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 40px;
      align-items: center;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .image-gallery {
      flex: 1 1 500px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 200px);
      gap: 20px;
    }

    .image-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
    }

    .image-gallery img:hover {
      transform: scale(1.03);
    }

    .content {
      flex: 1 1 500px;
      max-width: 550px;
    }

    .content h4 {
      color: #b5a52b;
      letter-spacing: 1px;
      /* text-transform: uppercase; */
      margin-bottom: 10px;
    }

    .content h1 {
      /* font-size: 36px; */
      margin: 0 0 20px;
      color: #1c1c1c;
    }

    .content p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .stat {
      font-size: 24px;
      font-weight: bold;
      color: #111;
    }

    .stat span {
      display: block;
      font-size: 14px;
      font-weight: normal;
      color: #777;
    }

    .contact-btn {
      background-color: #b6b428;
      color: #fff;
      padding: 14px 36px;
      border: none;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-btn:hover {
      background-color: #9c981d;
    }

    @media screen and (max-width: 768px) {
      .section {
        flex-direction: column;
        padding: 40px 20px;
      }

      .image-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 180px);
      }

      .content h1 {
        font-size: 28px;
      }

      .stat {
        font-size: 20px;
      }
    }



    /* //card mode6 */

    .timeline-section {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }

    .timeline-section h1 {
      /* font-size: 32px; */
      font-weight: 800;
      margin-bottom: 40px;
    }

    .timeline {
      display: flex;
      justify-content: space-between;
      position: relative;
      padding: 20px 0;
      border-top: 1px solid #ccc;
      margin-bottom: 40px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #ccc;
      z-index: 1;
    }

    .timeline span {
      position: relative;
      z-index: 2;
      font-weight: 600;
      color: #999;
      font-size: 16px;
    }

    .timeline span.active {
      color: #000;
    }

    .timeline span.active::after {
      content: '';
      display: block;
      margin: 8px auto 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #b6b428;
    }

    .timeline span::after {
      content: '';
      display: block;
      margin: 8px auto 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #999;
    }

    .image-box {
      position: relative;
      width: 100%;
      /* height: 420px; */
      background: url('../img/service/side1.png') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .content-box {
      background: white;
      padding: 30px 40px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.15);
      max-width: 500px;
      position: relative;
      z-index: 3;
      text-align: center;
      border-radius: 10px;
      margin-bottom :5px;
    }

    .content-box h3 {
      margin-top: 0;
      font-weight: 700;
    }

    .content-box p {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
    }

    @media (max-width: 768px) {
      .timeline {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .timeline::before {
        display: none;
      }

      .image-box {
        height: auto;
        padding: 30px 0;
      }

      .content-box {
        padding: 20px;
      }
    }


    /* card mode 6 */

    .button-row {
      text-align: center;
      margin-bottom: 30px;
    }

    .button-row button {
      /* padding: 10px 20px; */
      margin: 0 5px;
      /* background: #c3a900; */
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s;
    }
/* 
    .button-row button:hover {
      background: #a99200;
    } */

    .testimonial-container {
      display: flex;
      background: #fdf7f2;
      padding: 40px;
      max-width: 1000px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      align-items: center;
      transition: all 0.5s ease;
    }

    .testimonial-text {
      flex: 1;
      padding-right: 40px;
    }

    .testimonial-text p {
      font-size: 14px;
      line-height: 1.8;
      color: #3d3d3d;
      margin-bottom: 20px;
    }

    .testimonial-text .name {
      font-weight: bold;
      color: #000;
    }

    .testimonial-text .location {
      font-size: 14px;
      color: #666;
      text-transform: uppercase;
    }

    .stars {
      color: #c3a900;
      margin-top: 10px;
      font-size: 18px;
    }

    .testimonial-img {
      flex-shrink: 0;
      width: 280px;
      height: auto;
    }

    .testimonial-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .quote-icon {
      font-size: 24px;
      color: #c3a900;
      margin-bottom: 10px;
    }

    .dots {
      display: flex;
      gap: 10px;
      margin-top: 30px;
    }

    .dot {
      width: 20px;
      height: 5px;
      background: #ccc;
    }

    .dot.active {
      background: #000;
    }


    /* //service mode 3 */
  .anno-card-row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .anno-card {
      background: #fff;
      padding: 20px;
      text-align: center;
      border-radius: 6px;
      cursor: pointer;
      width: 150px;
      min-width: 120px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      flex: 1 1 120px;
    }

    .anno-card:hover {
      transform: translateY(-3px);
    }

    .anno-card.active {
      border-color: #2196f3;
      background: #f0f8ff;
    }

    .anno-card i {
      display: inline-block;
      font-size: 28px;
      color: #2196f3;
      background: #e0f2ff;
      padding: 18px;
      border-radius: 50%;
      margin-bottom: 8px;
    }

    .anno-card span {
      font-weight: 600;
      font-size: 14px;
    }

    .anno-testimonial-box {
      max-width: 900px;
      background: white;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 25px;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin: auto;
      align-items: center;
      justify-content: center;
    }

    .anno-testimonial-text {
      flex: 1 1 300px;
    }

    .anno-testimonial-text p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    .anno-testimonial-text .anno-name {
      font-weight: bold;
      margin-top: 10px;
    }

    .anno-testimonial-text .anno-location {
      text-transform: uppercase;
      font-size: 13px;
      color: #888;
    }

    .anno-testimonial-text .anno-stars {
      color: #c3a900;
      margin-top: 10px;
    }

    .anno-testimonial-img img {
      width: 200px;
      height: auto;
      border-radius: 6px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .anno-testimonial-box {
        flex-direction: column-reverse;
        text-align: center;
      }

      .anno-testimonial-img img {
        width: 150px;
      }

      .anno-card {
        width: calc(50% - 10px);
      }
    }

    @media (max-width: 480px) {
      .anno-card {
        width: 100%;
      }
    }



/*** Service mode 4***/
.servicemode4-item {
    position: relative;
    padding: 10px 10px;
    background : #FFFFFF;
    transition: .5s;
}

.servicemode4-item:hover {
    background: var(--primary);
}

.servicemode4-item .servicemode4-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%; 
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.servicemode4-item:hover .servicemode4-icon {
    background: #FFFFFF;
    border-radius: 50%; 
}

.servicemode4-item h5,
.servicemode4-item p {
    transition: .5s;
}

.servicemode4-item:hover h5,
.servicemode4-item:hover p {
    color: #FFFFFF;
}

.servicemode4-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
    
}

.servicemode4-item:hover a.btn {
    color: var(--primary);
    
}


.servicemode4-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.servicemode4-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}



@media (max-width: 768px) {
    .servicemode4-item {
        padding: 20px 15px;
        text-align: center;
    }

    .servicemode4-icon {
        margin: 0 auto 20px auto;
    }

    .servicemode4-content,
    .servicemode4-item h5,
    .servicemode4-item p {
        text-align: center;
    }

    .servicemode4-item a.btn {
        justify-content: center;
    }
    
}



/* /// offer section  */

.offer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap; /* Makes it responsive */
  }

  .offer-section img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .offer-content {
    max-width: 400px;
  }




  @media (max-width: 768px) {
    .offer-section {
      flex-direction: column;
      text-align: center;
    }

    .offer-content {
      padding-top: 20px;
    }
  }



  /* //MISSION VISSION  */

  .mv1-wrapper {
      display: flex;
      flex-wrap: wrap;
      min-height: 70vh;
    }

    .mv1-card {
      flex: 1 1 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      position: relative;
      min-height: 300px;
    }

    .mv1-mission {
      background-color: #1c1c1e;
      color: #ffffff;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }

    .mv1-vision {

      /* background-color: #059ff9; */

      background-image: url('../img/banner/banner13.png'); 
      background-position: center; 
      background-repeat: no-repeat;
      color: #000000;
      clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    }

    .mv1-title {
      font-size: 2em;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .mv1-subtitle {
      font-size: 0.9em;
      letter-spacing: 1px;
      margin-bottom: 20px;
      font-weight: 400;
    }

    .mv1-text-box {
      /* background-color: #ffffff; */
      padding: 20px;
      border-radius: 8px;
      max-width: 350px;
      line-height: 1.5;
      color: #000000;
      text-align: center;
    }

    .mv1-mission .mv1-text-box {
      color: #000000;
    }

    .mv1-highlight {
      color: #b30086;
      font-weight: 600;
    }

    @media screen and (max-width: 768px) {
      .mv1-wrapper {
        flex-direction: column;
      }

      .mv1-card {
        flex: 1 1 100%;
        clip-path: none !important;
      }

      .mv1-vision {
        background-color: #f9f9f9;
      }

      .mv1-text-box {
        max-width: 100%;
      }
    }


    /* /// value card  */


      .valuebody {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      /* background: linear-gradient(135deg, #3a9bdc, #3ccfcf); */
      /* min-height: 100vh; */
      /* padding: 60px 20px; */
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .section-title {
      font-size: 2.5em;
      font-weight: bold;
      color: #fff;
      margin-bottom: 40px;
      position: relative;
      text-align: center;
    }

    .section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #ffffffaa;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: 1100px;
       /* align-items: center; */
    }

    .value-card {
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 10px 15px;
      color: #fff;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .value-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .value-icon {
      width:35px;
      height:35px;
      margin-bottom: 15px;
      color: #fff;
    }

    .value-text {
      font-size: 1.1em;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 2em;
      }

      .value-card {
        padding: 20px;
      }
    }


  /* //CARD MODE 3 */

   .section-title {
      text-align: center;
      font-size: 2.5em;
      font-weight: bold;
      margin-bottom: 50px;
      color: #111;
    }

    .lidar-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .lidar-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 16px;
      padding: 25px 20px 30px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .lidar-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .lidar-title {
      background: linear-gradient(to right, #007BFF, #00C6FF);
      color: white;
      padding: 8px 0;
      text-align: center;
      border-radius: 6px;
      font-weight: bold;
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    .lidar-desc {
      /* font-size: 1em; */
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 2em;
      }
    }




    /* annotation sction  */
    
    .annotation-section {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.annotation-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #e6f4ff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  padding: 25px 20px 25px 80px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item .icon {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: #0076cf;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.timeline-item h2 {
  color: #0076cf;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .timeline-item {
    padding: 20px 20px 20px 60px;
  }

  .timeline-item .icon {
    top: 20px;
    left: 15px;
  }

  .annotation-section h1 {
    font-size: 24px;
  }

  .timeline-item h2 {
    font-size: 18px;
  }

  .timeline-item p {
    font-size: 14px;
  }
}





/* ////card 5  */

.servicesmode7-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.servicesmode7-section h1 {
  font-size: 34px;
  font-weight: bold;
}

.subtitlemode7 {
  font-size: 16px;
  margin: 10px 0 40px;
  color: #e1f3ff;
}

.cardmode7-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.cardmode7 {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

.cardmode7:hover {
  transform: translateY(-6px);
}

.iconmode7-box {
  background: #0076cf;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 26px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardmode7 h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0076cf;
}

.cardmode7 p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .services-section h1 {
    font-size: 24px;
  }

  .cardmode7 {
    padding: 20px 15px;
  }

  .cardmode7 h2 {
    font-size: 18px;
  }
}


