*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
 }

:root{
          --light-gray: #f2f2f2;
      --gray-header: #d9d9d9;
      --white: #ffffff;
    --border-color: #264d7b;
      --border-thick: 2.5px;
      --border-thin: 1px;
    --primary:#1e488e;
    --secondary:#2c448a;
    --sky-blue:#1587bf;
    --dark:#000;
    --light: #fff;
}

.bg-primary{
    background-color: var(--primary) !important;
}

.btn.btn-primary{
    background-color: var(--secondary) !important;
}

.text-primary{
    color: var(--primary) !important;
}

a{
    text-decoration: none;
}


/*** Spinner Start ***/
#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-white);
}

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

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

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

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


/*** Topbar Start ***/ 
.topbar{
    background-color: var(--primary);
    color: var(--light) !important;
}
.topbar a{
    background-color: var(--primary);
    color: var(--light) !important;
}
.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(--light) !important;

}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;

    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/




.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #fff;
  position: relative;
}
.nav-bar{
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}
.footer a:hover{
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}
.footer a{
    border-bottom: 1px solid #212529 ;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a.active {
  color: var(--primary); /* Change as per your design */
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  margin: 1px 9px;
}

.nav-links a:hover {
  color: #0044cc;
}
 
.search-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.search-container input {
  border: none;
  outline: none;
  padding: 6px 155px 6px 5px;
}

.search-container button {
  background: none;
  border: none;
  padding: 6px 10px;
  color: #0044cc;
  cursor: pointer;
}

.enquire-btn {
  background-color: #1a2a6c;
  color: #fff;
  padding: 8px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.enquire-btn:hover {
  background-color: #16225a;
}

/* Responsive */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links,
  .search-container,
  .enquire-btn {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a {
    padding: 10px 0;
  }
}



















 .nav-bar{
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

 }
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

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

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

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

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

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

.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 .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 50%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

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


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    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-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

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

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


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

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

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


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--primary) !important;
    color: var(--light) !important;
    transition: 0.5s;
}
.feature .contact-item {
    border-radius: 10px;
    background: gainsboro !important;
    color: var(--light) !important;
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--sky-blue) !important;
}
.feature .contact-item:hover {
    background: var(--primary) !important;
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light);
}
.feature .contact-item .feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--primary) !important;
    background: var(--bs-light);}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
    
}
.feature .contact-item:hover .feature-icon i {
    z-index: 9;
}

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

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

.feature .feature-item .feature-icon {
    color: var(--primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h3,
.feature .feature-item p {
    transition: 0.5s;
}
.feature .contact-item .feature-icon,
.feature .contact-item h3,
.feature .contact-item p {
    transition: 0.5s;
  
}
.feature .contact-item h3,
.feature .contact-item p{
    color: var(--dark) !important;
}

.feature .contact-item h3:hover{
    color: var(--light) !important;
}
.feature  .contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}
.feature  .contact-text a { 
    color: var(--dark) !important;
}
.feature  .contact-item:hover a { 
    color: var(--light) !important;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item h3{
     font-size: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;

}
.feature .contact-item h3{
     font-size: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;

}
.feature .feature-item:hover h3,
.feature .feature-item:hover p {
    color: var(--light);
}

.feature .feature-item:hover a.btn {
    background: var(--dark) !important;
    color: var(--light) !important;
}

.feature .feature-item a.btn{
    background-color: var(--light) !important;
    color: #2c448a;
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service-content{
    border: 1px solid gainsboro;

}

.service .service-item .btn-primary{
    background-color: #fff !important;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.service .service-item:hover .btn-primary{
    color: var(--primary) !important;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

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

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

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

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

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light);
}

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

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}
.service .service-item .service-content .service-content-inner .h4{
    font-size: 24px;
}
.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

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

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #1e478ea4;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/





/* about-item-content start */
.about-item-content .display-4{
    font-size: 30px;
}
  .display-4{
    font-size: 3.0rem;
}
.display-5{
    font-size: 30px;
}
/* about-item-content end */


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
.faq-section img{
    border-radius: 9px;
    padding: 9px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/*** FAQs End ***/


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

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

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

.blog .blog-item .blog-img img {
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

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

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

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

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--primary) !important;
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
     white-space: nowrap;
  width: 100%; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

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

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

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

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.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: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

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

.testimonial .owl-nav .owl-next {
    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-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

 
.footer {
  background-color: #0f0f0f;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Logo Section */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
width: 200px;
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 13px;
  color: #bbb;
}

/* Navigation Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color:var(--primary) !important; /* blue hover effect */
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #233d8c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icon:hover {
  background-color: #345bcb;
}

/* Responsive */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-social {
    justify-content: center;
  }
  .about-item-content .display-4{
    font-size: 22px;
}
  .display-4{
    font-size: 2.0rem;
}
}

/*** Footer End ***/


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


.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-add-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-add-item p {
    color: #555;
}

.contact-icon i {
    color: #0d6efd;
}

.contact-img-inner {
    max-width: 90%;
}

.form-section{
    background-color: #F3F3F4;
    padding: 20px 50px;
}

.form-floating input,
.form-floating textarea {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: none;
}

.form-floating label {
    color: #888;
}

.btn-primary {
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
}
.contact-cards .contact-card {
    background-color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}
.contact-card a{
    color: black;
}

.contact-cards .contact-card:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
}

.contact-cards .contact-icon i {
    color: var(--primary);
}

.contact-cards h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-cards p {
    font-size: 1rem;
    color: #555;
}



/* blog-details-start */
    /* related blog-style-start */
    .related-blog {
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      padding: 5px;
      border-bottom: 1px solid #000;
      margin-bottom: 15px;
  }

  .related-blog a {
      text-decoration: none;


  }

  .blog-text{
    background-color: var(--primary);
  }

  .related-blog .realted-img {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;

  }

  .related-blog .realted-img img {
      height: 100%;
      width: 100%;
  }

  .related-blog .related-blog-content {
      padding: 5px 5px 5px 0px;
  }

  .related-blog .related-blog-content h2 {
      font-size: 16px;
      color: #000;
  }

  .related-blog .related-blog-content p {
      color: #000;
  }

  /* related blog-style-end */


  .blog-detail {
      padding: 50px 0px;
  }


  .blog-image-banner .blog-date p {
      margin-bottom: 0px;
      color: #fff;
  }

  .blog-content-para p {
      text-align: justify;
      font-size: 18px;
  }
/* blog-details-end */

/* responsive section start */
@media(max-width: 768px){
 .blog-detail {
      padding: 30px 0px;
  }
}
/* responsive section end */

.contact-box {
  background: #f9f9f9;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 }

.enquiry-contact {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #007bff; /* Bootstrap primary color */
  text-align: center;
}

.input-start {
  margin-bottom: 20px;
  position: relative;
}

.inp-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.inp-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

textarea.inp-control {
  resize: vertical;
  min-height: 80px;
}

.text-danger {
  font-size: 0.875rem;
  margin-top: 4px;
  display: block;
}

.captchasep1 {
  display: flex;
   align-items: center;
  gap: 15px;
  margin-bottom: 15px;
 
}

.captchasep1 input#codeToenter {
  flex: 1;
  min-width: 150px;
}

.captcha-codes-sec {
  display: flex;
  align-items: center;
  background: #e9ecef;
  border-radius: 6px;
  padding: 6px 12px;
  gap: 10px;
  min-width: 150px;
}

#captchCode {
  margin: 0;
  user-select: none;
  font-family: monospace;
  font-size: 1.2rem;
  color: #333;
}

#RefreshCaptcha {
  background: #dc3545; /* Bootstrap danger color */
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  padding: 6px 12px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#RefreshCaptcha:hover {
  background: #b02a37;
}

.btn-primary {
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

@media (max-width: 576px) {
  .captchasep1 {
    flex-direction: column;
    align-items: stretch;
  }
  #RefreshCaptcha {
    width: 100%;
  }
  .experience-card {
   margin: 5px 2px;
}
}



     .experience-card {
        padding: 10px;
        border-radius: 7px;
        background-color: #c7c1c150;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .experience-card h3 {
        font-size: 18px;
        margin-top: 5px;
    }


    .chat-btn {
  position: fixed;
  bottom: 120px;        /* distance from top */
  right: 20px;      /* distance from right */
  width: 160px;
  height: 40px;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.chat-btn:hover {
  background-color: #128C7E; /* Darker on hover */
  transform: scale(1.1);
}






@media (max-width:768px) {
    .form-section {
    background-color: #F3F3F4;
    padding:  0px;
}
}









.about-section {
  background-color: #fff; 
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  
  display: inline-block;
  padding: 5px 0;
}

.section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.logo-img { 
  height: auto;
}

.tagline {
  font-size: 1rem;
  margin: 0;
}

.market-chip {
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 6px 14px;
  font-size: 0.875rem;
  transition: 0.3s;
  color: var(--primary);
}

.market-chip:hover {
  background-color: #1e488e;
  color: #fff;
  border-color: #1e488e;
}

.partner-logo {
  width: 100px;
  height: auto;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
 
  display: inline-block;
  padding: 6px 0;
  margin-bottom: 20px;
}

.customer-logo {
  max-height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

/* .customer-logo:hover {
  filter: grayscale(0%);
} */

.accordion-button {
  font-weight: 500;
  font-size: 16px;
}


/* Responsive adjustments */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .partner-logo {
    width: 80px;
  }

  .logo-img {
    width: 100px;
  }
}



.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--dark);
    background: #fff;
    font-size: 18px;
}


.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
     color: var(--dark);
}






table {
      border-collapse: separate;
      border-spacing: 0;
      width: 100%;
      max-width: 900px;
      font-size: 14px;
      color: #000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
      border: var(--border-thick) solid var(--border-color);
    }

    thead tr {
      background-color: var(--primary);
      color: var(--white);
      font-weight: 600;
    }

    thead th {
      padding: 12px 15px;
      border-right: var(--border-thin) solid var(--border-color);
      text-align: center;
      min-width: 120px;
    }

    thead th:last-child {
      border-right: none;
    }

    tbody th {
      background-color: var(--gray-header);
      font-weight: 500;
      padding: 11px 15px;
      border-right: var(--border-thin) solid var(--border-color);
      border-bottom: var(--border-thin) solid var(--border-color);
      text-align: left;
      vertical-align: middle;
      width: 220px;
    }

    tbody td {
      padding: 11px 15px;
      text-align: center;
      vertical-align: middle;
      border-bottom: var(--border-thin) solid var(--border-color);
      border-right: var(--border-thin) solid var(--border-color);
      white-space: nowrap;
    }

    tbody td:last-child {
      border-right: none;
    }

    tbody tr:last-child th {
      border-bottom: none;
    }

    tbody tr:last-child td {
      border-bottom: none;
    }



     .spec-table {
      border-collapse: collapse;
      width: 100%;
      font-size: 14px;
      background-color: #fff;
    }

    .spec-table th {
      background-color: var(--primary);
      color: #fff;
      text-align: left;
      padding: 10px;
      vertical-align: middle;
    }

    .spec-table td {
      border: 1px solid #dee2e6;
      padding: 8px 10px;
      vertical-align: top;
    }

    .sub-header {
      background-color: #e9f3ff;
      font-weight: 600;
    }

    .spec-title {
      background-color: #f1f5f9;
      font-weight: 700;
    }

    .spec-table tr td:first-child {
      width: 25%;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .spec-table {
        font-size: 13px;
      }
    }