/********** Template CSS **********/
/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
    background-color:#01532b !important;
}
.navbar-container{
    max-width: 95% !important;
}
.logo-img{
    width: 315px;
    height: auto;
    object-fit: contain;
}
.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: white;
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #c4a852;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/banner-img1.png) center center no-repeat;
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 0, 0, 0.174);
    /* clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%); */
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}






.Porfolio-heading{
    text-align: center;
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.Porfolio-list{
    text-align: left;
}
.Porfolio-list-item{
    font-weight: bold;
    width: 100px;
}
.Porfolio-box{
    width: 50% !important;
}

.vision-mission-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.vision-mission-item {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.vision-mission-item h2 {
  font-size: 28px;
  color: #0a2e5c;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.vision-mission-item h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0078d4;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.vision-mission-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .vision-mission-item {
    padding: 30px 20px;
  }

  .vision-mission-item h2 {
    font-size: 24px;
  }

  .vision-mission-item p {
    font-size: 15px;
  }
}


.specialization-section {
  padding: 80px 20px;
  background: #f9fbfd;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.specialization-section h1 {
  font-size: 36px;
  color: #0a2e5c;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.specialization-section h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0078d4;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.specialization-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.specialization-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.specialization-item h5 {
  /* font-size: 24px; */
  /* color: #333; */
  font-weight: 600;
  padding: 20px;
  margin: 0;
}
.specialization-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.specialization-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.specialization-item p {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  padding: 20px;
  margin: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .specialization-section h1 {
    font-size: 28px;
  }

  .specialization-item p {
    font-size: 16px;
    padding: 15px;
  }
}







.director-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.director-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.director-image {
  flex: 1 1 300px;
  text-align: center;
}

.director-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 8%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
  height: 500px;
  /* background-position: top-center; */
}

.director-image img:hover {
  transform: scale(1.05);
}

.director-content {
  flex: 2 1 500px;
}

.director-content h2 {
  font-size: 32px;
  color: #0a2e5c;
  margin-bottom: 10px;
  font-weight: 700;
}

.director-content h3 {
  font-size: 24px;
  color: #0078d4;
  margin-bottom: 20px;
  font-weight: 600;
}

.director-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .director-container {
    flex-direction: column;
    text-align: center;
  }

  .director-content h2 {
    font-size: 28px;
  }

  .director-content h3 {
    font-size: 20px;
  }

  .director-content p {
    font-size: 15px;
  }
}



/* highlight project start */
.highlighted-projects {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-container h2 {
  font-size: 36px;
  text-align: center;
  color: #0a2e5c;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.projects-container h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #1c2900;
  margin: 12px auto 0;
  border-radius: 2px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.project-item h3 {
  font-size: 18px;
  color: #1c2900;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Animation */
.project-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-container h2 {
    font-size: 28px;
  }
  .project-item {
    padding: 25px 20px;
  }
}



/* highlight project end */