.video_main {
   width: 100%;
   height: 700px;
   background-color: #eee;
   position: relative;
   }
   .video_main video {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: cover;
   }
   .text {
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   display: grid;
   text-align: center;
   align-content: center;
   background-color: #00000052;
   transition: opacity 0.6s ease;
   }
   .text h1 {
   font-size: 60px;
   color: #fff;
   font-weight: bold;
   margin-bottom: 10px;
   }
   .text p {
   color: #fff;
   margin-bottom: 15px;
   }
   /*.btn {
   width: max-content;
   background-color: blue;
   color: #fff;
   margin: auto;
   padding: 10px 30px;
   border: none;
   outline: none;
   cursor: pointer;
   }*/

   #text-box {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

#text-box.fade-out {
  opacity: 0;
  transform: translateY(30px);
}
/*** Spinner Start ***/
.loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      background: #f2f9f9;
      overflow: hidden;
      }
      .drop {
      position: absolute;
      top: 20%;
      left: 50%;
      width: 20px;
      height: 30px;
      background: #2c1873;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      transform: translate(-50%, -50%) scale(0);
      animation: dropFall 3s ease-in-out infinite;
      z-index: 2;
      }
      @keyframes dropFall {
      0% {
      top: 0%;
      transform: translate(-50%, 0) scale(0.2);
      opacity: 0;
      }
      20% {
      top: 40%;
      transform: translate(-50%, 0) scale(1);
      opacity: 1;
      }
      30% {
      top: 50%;
      }
      40% {
      transform: translate(-50%, 0) scale(0.6);
      opacity: 0;
      }
      100% {
      opacity: 0;
      }
      }
      .splash {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 60px;
      height: 60px;
      background: rgba(44, 24, 115, 0.2);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      animation: splashEffect 3s ease-in-out infinite;
      z-index: 1;
      }
      @keyframes splashEffect {
      0%, 20% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      }
      25% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.4;
      }
      40% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
      }
      100% {
      opacity: 0;
      }
      }
      .loader_logo {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150px;
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      animation: showLogo 3s ease-in-out infinite;
      z-index: 3;
      }
      @keyframes showLogo {
      0%, 30% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      }
      50% {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 1;
      }
      70% {
      transform: translate(-50%, -50%) scale(1);
      }
      90% {
      opacity: 1;
      }
      100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.9);
      }
      }

/*** 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);
    background: #0b96f5;
}

.btn.btn-primary:hover {
    background-color: #1a4090;
    border: 1px solid var(--bs-secondary);
}

/*.btn.btn-secondary {
    color: var(--bs-white);
    background-color: #1a4090;
   
}*/

/*.btn.btn-secondary:hover {
    background: #0b96f5;
}*/
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    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: 45px;
}

.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;
    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 rgba(0, 0, 0, .08);
    }

    .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-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-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
        background-color: #eee;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
    height: 700px;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    border: none;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    border: none;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 video{width: 100%; height: 100%; position: absolute; object-fit: cover;}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #00000069;
    background-size: cover;
}



.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
    border: 1px solid #e3e2e2
}








.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #eee;
}

.feature .feature-item .feature-icon img{
    width: 60%; 
    height: 100%;
    object-fit: contain;
}



.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
}
.about-img{
    width: 90%;
    height: 100%;
    border-radius: 5px;
}

.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-item span{
    font-size: 40px;
}




.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: 250px;
    display: grid;
    align-content: center;
    border: 1px solid #e3e2e2
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: #1b4066;
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: #fff;
}

.service-item:hover .service-content a{
    color: var(--bs-white);
} 

.service-item:hover .service-content p{
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    transition: 0.5s;
}

.service-item img{
    width: 70%;
    height: 100%;
    object-fit: contain;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(27 85 102), rgb(0 0 0 / 48%)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 !important;
    background-attachment: fixed;
}


.counter2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(27 85 102), rgb(0 0 0 / 48%)), url(../img/hiJ6Gv5vRm64TYgVUYqnRw.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 !important;
    background-attachment: fixed;
}


.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 1px solid #eee;
    background-color: #f9f6ec29;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    padding: 20px;
    border-radius: 50px;
    /*background: #0b96f5;*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.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;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    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 span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.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 {
    letter-spacing: 1px;
    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) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


/*...................................//Extera-css//........................................*/
body{ffont-family: "Inter", sans-serif;font-style: normal !important;font-size: 16px !important;}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{margin-top: 0;margin-bottom: .5rem;font-family: "Inter", sans-serif;font-weight: 500;line-height: 1.2;color: #000;font-style: normal;}
.text-primary{color: #000 !important;}
.text-secondary{color: #000 !important;}
.text-primary{color: #000 !important;}
.heading_2{font-size: 35px; font-weight: 900; line-height: 1em;letter-spacing: 0.8px; color: #1b4066;}
.py-5 {padding: 0px !important;}
.alLPading{padding: 45px 0;}
a:hover{color: #001442;}
.OverrFlow{overflow: hidden;}
.details_btn{background-color: #1b4066; color:#fff !important; padding: 10px; display: block; border-radius: 4px; border: none; outline: none;}
.details_btn:hover{background-color: #26588c;color: #fff;}


.carousel-item video{width: 100%; height: 100%; object-fit: cover;}

header{background-color: #1b4066; overflow: hidden;}
.haDer_Main{display: flex; justify-content:space-between; padding: px;}
.company_contact a{color: #f9f6ec; font-size: 14px; font-weight: 500;}
.company_contact i{color: #f9f6ec;}
.company_name small{color: #f9f6ec; font-size: 14px; font-weight: 500;}

.layer_cut {
    width: 500px;
    display: flex;
    justify-content: center;
  padding: 0px;
  color: #fff;
  background: linear-gradient(122deg, transparent 10%, #d10000 10%);
  position: relative;
  overflow: hidden;
}

nav{background-color: #f9f6ec; /* increased for better visual transition */width: 100%;position: sticky;top: 0;left: 0;z-index: 999;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);transition: background-color 0.3s ease, padding 0.3s ease;}
nav.scrolled{background-color: #f9f6ec;padding: 0px;box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);}
.Nav_Main{display: flex; justify-content: space-between; align-items: center;}
.Nav_Main .menu ul{list-style: none; margin: 0; padding: 0px;}
.Nav_Main .menu ul li{display: inline-block; margin: 0 25px; padding: 0; position: relative; margin-right: 0px;}
.Nav_Main .menu ul li a{color: #000; font-weight: bold; cursor: pointer; font-size: 12px; text-transform: uppercase;}
.Nav_Main .menu .acctive{color: #1b4066;}
.logo{width: 140px;}
.logo img{width: 100%; object-fit: cover;transition: transform 0.3s ease;}
nav.scrolled .logo img{transform: scale(0.85); /* shrink logo slightly */}

/*.Nav_Main .menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #ed7249;
  transition: width 0.3s ease;
}

.Nav_Main .menu ul li a:hover::after,
.Nav_Main .menu ul li a:focus::after,
.Nav_Main .menu ul li a:active::after {
  width: 100%;
}

.Nav_Main .menu .acctive::after {
  width: 100%;
}*/


/*.Nav_Main .menu .acctive{color: #1a237e}*/

.Nav_Main .menu ul li a::after{content: "";position: absolute;bottom: -24px;left: 50%;transform: translateX(-50%);border: 6px solid;border-color: transparent transparent #d10000; transparent;opacity: 0;transition: all 0.5s ease;}
.Nav_Main .menu ul li a::before{content: "";position: absolute;left: 0;bottom: -26px;transform: translateX(-50%);width: 100%;height: 2px;background-color: #d10000;opacity: 0;transition: all 0.5s ease;border-radius: 50px;}

.Nav_Main .menu ul li a:hover::after{opacity: 1;}
.Nav_Main .menu .acctive::after{opacity: 1;}

.Nav_Main .menu ul li a:hover::before{opacity: 1;transform: translateX(0%);}
.Nav_Main .menu .acctive::before{opacity: 1; transform: translateX(0%);}




.products_main{width: 100%; height: auto; background-color: #fff;box-shadow: 0 0 45px rgba(0, 0, 0, .08); padding: 25px; border-radius: 10px; text-align: center; border: 1px solid #e3e2e2}
.products_img{width: 100%; height: 300px; background-color: #f2f9f9;border-radius: 10px;}
.products_img img{width: 100%; height: 100%; object-fit: contain; padding: 25px;border-radius: 30px;}



/*....................//brand_sec//......................*/
.brand_grid{display: grid; grid-template-columns: repeat(10, 1fr); width: 100%;overflow: hidden; border-radius: 5px; row-gap: 10px;}
.brand_item{width: 100px; height: 100px; border: 1px solid #ccc; margin: auto;border-radius: 5px; background-color: #fff;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);}
.brand_item img{width: 100%; height: 100%; object-fit:contain;cursor: pointer;opacity: 0.5; transition: 0.5s ease;}
.brand_item img:hover{opacity: 100%;}
/*....................//brand_sec-end//......................*/



/*................//company_group//...................*/
.compney_text{color: #d9e5ff;}
.company_group{background-color: #f2f9f9;}
.group_title{color: #fff;}
.round_flex{display: flex; flex-wrap: wrap; grid-gap: 50px; align-items: center; justify-content: center;}
.round_group{width: 250px; height: 250px; border-radius: 50%; position: relative; background-color: #f9f6ec29; border: 4px dashed #eee;}
.round_group img{width: 100%; height: 100%; object-fit: contain; position: absolute; padding: 15px;}
/*................//company_group-end//...................*/



/*................//footer//...................*/
 footer{background-color: #1b4066; padding: 80px 0;}
.ft_menu h4{color: #fff; margin-bottom: 20px; font-size: 20px;}
.ft_menu ul{list-style: none; margin: 0; padding: 0;}
.ft_menu ul li a{display: block; text-decoration: none; color: #c5c5c5;font-size: 15px;}
.ft_flex{display: flex; grid-gap: 5px; align-content: center;}
.ft_flex a{text-decoration: none; color: #c5c5c5; font-size: 15px;}

.footer_bottom{padding: 10px 15px;text-align: center;background-color: #181818;color: #fff;font-size: 11px;}
.botom_pra{text-decoration: none; color: #8e532e;}
.botom_pra:hover{color: #1a4090;}
.body_icon{color: #fff; font-size: 20px;}
.small_para{color: #c5c5c5; font-size: 15px;}

.flex_icon{display: flex; grid-gap:10px;}
.ft_icon h4{color: #fff; font-size: 20px;}
.ft_icon i{width: 30px; height: 30px; background-color: #fff; border-radius: 50%; display: grid; align-content: center; justify-content: center; font-size: 15px; cursor: pointer;color: #000;}
.ft_icon .fa-facebook-f{background-color: #1877F2; color: #fff;}
.ft_icon .fa-x-twitter{background-color: #000000; color: #fff;}
.ft_icon .fa-linkedin-in{background-color: #0A66C2; color: #fff;}
.ft_icon .fa-youtube{background-color: #FF0000; color: #fff;}
.ft_icon .fa-instagram{background-color: #E1306C; color: #fff;}
/*................//footer-end//...................*/





@media only screen and (max-width: 991px)
{
    .brand_grid{display: grid; grid-template-columns: repeat(6, 1fr);}
}


@media only screen and (max-width: 767px)
{
    .brand_grid{display: grid; grid-template-columns: repeat(4, 1fr);}
}




@media only screen and (max-width: 576px)
{
    .brand_grid{display: grid; grid-template-columns: repeat(3, 1fr);}
}

@media only screen and (max-width: 480px)
{
    

    
}
    




