* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1440px;
  padding: 0 20px;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
figure {
  margin: 0;
}
.cmn-btn {
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: 10px;
  background: #077eba;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.cmn-btn:hover {
  background: #586373;
  color: #f0f9ff;
}
.banner-btn-box .banner-btn-2:hover {
  border: 2px solid #ffffff;
  background: transparent;
}
body {
  font-family: "Inter", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}
/*============= header ================*/
/* sticky hrader */
#mainNavbar {
  transition: all 0.4s ease;
  background-color: #ffffff;
  padding: 0;
}
#mainNavbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* sticky header end */
header {
  background-color: #c6e2f1;
}
.navbar-brand img {
  border-radius: 100%;
}
.mobile-btn {
  display: none;
}
.navbar-expand-lg .navbar-nav {
  gap: 20px;
  align-items: center;
}
.navbar-nav .nav-link.active {
  color: #000;
  text-transform: capitalize;
}
.navbar-nav .nav-link.active:hover {
  color: #077eba;
}
/* ========== banner ========== */
section {
  scroll-margin-top: 50px;
}
.banner {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  background: linear-gradient(
    175deg,
    rgba(72, 84, 101, 1) 0%,
    rgba(90, 109, 127, 1) 55%,
    rgba(97, 167, 205, 1) 100%
  );
  z-index: 2;
}
.banner-content {
  position: relative;
  z-index: 10;
}
.visionary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  color: #f0f9ffcc;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.visionary li {
  list-style: disc;
}
.visionary li:first-child {
  list-style: none;
}
.banner-head {
  text-align: center;
  color: #ffffff;
}
.banner-head h1 {
  font-size: 72px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f0f9ff;
}
/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 16ch; /* Number of characters */
  }
}

/* Cursor blink */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.banner-head p {
  font-size: 20px;
  padding: 0 25%;
}
.banner-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
}
.banner-btn-box .banner-btn-2 {
  text-transform: capitalize;
  padding: 8px 15px;
  border-radius: 10px;
  background: #077eba;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.banner-experience {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.banner-exp-box {
  text-align: center;
}
.banner-exp-box h3 {
  font-size: 36px;
  color: #f0f9ff;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.banner-exp-box p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f0f9ffcc;
}
/* scroll-down */
.root {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bounce1 {
  font-size: 30px;
  color: #fff;
  display: inline-block;
  animation: bounce1 0.7s ease-in-out infinite alternate;
}
.bounce1:hover {
  cursor: pointer;
}
@keyframes bounce1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* about */
.about {
  padding: 50px 0;
  background-color: #f8fafc;
}
.about .row {
  align-items: center;
}
.abt-box span {
  font-size: 16px;
  color: #0284c5;
  text-transform: capitalize;
  margin-bottom: 16px;
  display: inline-block;
}
.abt-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.abt-box p {
  line-height: 30px;
}
/* .director-img {
  text-align: right;
} */
/* .director-img img {
  border-radius: 15px;
  height: 500px;
} */

.director-img {
  text-align: right;
  overflow: hidden;
  border-radius: 20px;
}

/* Image base */
.director-img img {
  max-width: 100%;
  height: 500px;
  border-radius: 20px;
  transform: translateX(70px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* When visible */
.director-img img.show {
  transform: translateX(0);
  opacity: 1;
}

/* Floating effect after reveal */
.director-img img.floating {
  animation: floatImage 4s ease-in-out infinite;
}

/* Hover zoom */
.director-img:hover img {
  transform: scale(1.05);
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.career-milestone {
  padding: 32px;
  background-color: #f1f5f9;
  border-radius: 15px;
  box-shadow: 0 5px 5px rgb(58 70 76 / 30%);
}
.career-milestone h3 {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
  text-transform: capitalize;
}
.career-milestone-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.career-milestone-box:last-child {
  margin-bottom: 0;
}
.milestone .nav-link:last-child .primary-box .line {
  display: none;
}
/*=========== milestone ===============*/
.milestone {
  padding: 50px 0;
}
.milestone-head {
  text-align: center;
}
.milestone-head span {
  margin-bottom: 16px;
  display: block;
  color: #0284c5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.milestone-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.milestone-head p {
  padding: 0 20%;
  margin-bottom: 24px;
}
.milestone .row {
  align-items: center;
}
.primary-box-content {
  text-align: left;
}
.primary-box .dot {
  width: 12px;
  height: 10px;
  border-radius: 100%;
  background-color: #0284c5;
  transition: 0.3s ease;
}
.primary-box .line {
  background-color: #c8d3df;
  height: 50px;
  width: 2px;
  margin: 0 auto;
  margin-top: 10px;
}
.primary-box-content span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0284c5;
}
.primary-box-content p {
  font-size: 16px;
  color: #0f1729;
  margin-bottom: 0;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
}
.career-milestone-box:hover .primary-box-content p {
  border-bottom: 2px solid #c8d3df;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: unset;
}
/*============ area ==============*/
.area {
  padding: 50px 0;
  background-color: #f1f5f9;
}
.area .row {
  row-gap: 24px;
}
.area-head {
  text-align: center;
}
.area-head span {
  margin-bottom: 16px;
  display: block;
  color: #0284c5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.area-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.area-head p {
  padding: 0 25%;
}
.area-box {
  padding: 24px;
  background-color: #f8fafc;
  border-radius: 15px;
  box-shadow: 0 0px 5px rgb(58 70 76 / 30%);
  transition: 0.3s ease-in-out;
  border: 1px solid transparent;
}
.area-box:hover {
  border: 1px solid #0284c5;
}
.area-box:hover i {
  background-color: #c6e2f1;
}
.area-box i {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #dfeef6;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  font-size: 30px;
  color: #0284c5;
  margin-bottom: 16px;
  transition: 0.3s ease;
}
.area-box-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 12px;
  font-weight: 600;
}
.area-box-content p {
  margin-bottom: 0;
}
/*=============== future =============*/
.future {
  padding: 50px 0;
}
.future-head {
  text-align: center;
}
.future-head span {
  margin-bottom: 16px;
  display: block;
  color: #0284c5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.future-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.future-head p {
  padding: 0 25%;
  margin-bottom: 50px;
}
.future .row-box {
  padding: 30px;
  background-color: #3c485a;
  border-radius: 15px;
  align-items: center;
}
.future .current-focus {
  padding: 10px 20px;
  background-color: #2d516d;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #f0f9ff;
}
.future .current-focus span {
  margin-left: 5px;
}
.future .current-focus-box h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #f0f9ff;
}
.future .current-focus-box .com-cap {
  font-size: 20px;
  color: #d2d7dc;
  margin-bottom: 10px;
}
.future .current-focus-box p {
  color: #d2d7dc;
  line-height: 30px;
  padding-right: 50px;
  text-align: justify;
}
.future .current-focus-box .cmn-btn {
  background: #dfe8f0;
  color: #324052;
  transition: 0.5s ease;
}
.future .current-focus-box .cmn-btn:hover {
  background-color: #077eba;
  color: #ffffff;
}
.future .current-focus-box .cmn-btn span {
  margin-right: 5px;
}
.future-card {
  text-align: center;
  background-color: #586373;
  padding: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 1;
}
/* new */
.future-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 60%,
    #ffffff 90%,
    transparent 100%
  );
  z-index: -1;
  opacity: 0; /* Hide initially */
}
/* Show + animate on hover */
.future-card:hover::before {
  opacity: 1;
  animation: rotateBorder 3s linear infinite;
}
/* Inner mask */
.future-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #586373;
  border-radius: 15px;
  z-index: -1;
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

/* new end */
.future-card i {
  font-size: 30px;
  color: #f0f9ff;
  display: inline-block;
}
.future-card h4 {
  font-size: 16px;
  color: #f0f9ff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.future-card p {
  color: #d2d7dc;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 600;
}
.future .row.row-part2 {
  row-gap: 24px;
}
/* ============ technology ================= */
.technology {
  padding: 50px 0;
  background-color: #e9f0f6;
}
.tech-head {
  text-align: center;
  padding: 0 15%;
}
.tech-head span {
  margin-bottom: 16px;
  display: block;
  color: #0284c5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tech-head h2 {
  font-size: 48px;
  font-weight: 700;
}
.tech-head i {
  font-size: 80px;
}
.tech-head p {
  font-size: 30px;
  margin-bottom: 30px;
  font-style: italic;
}
.tech-head h3 {
  font-size: 16px;
  color: #0284c5;
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
}
.tech-head h3::before {
  content: "";
  content: "";
  position: absolute;
  background-color: #0284c5;
  width: 30px;
  height: 2px;
  top: 50%;
  left: -40px;
}
.technology .tech-box {
  margin: 50px 10% 0;
}
.technology .tech-box .tech-card {
  text-align: center;
}
.technology .tech-box .tech-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.technology .tech-box .tech-card p {
  padding: 0 5%;
}
/* ============ contact ================ */
.contact {
  padding: 50px 0;
  background-color: #f8fafc;
}
.contact-head {
  text-align: center;
}
.contact-head span {
  margin-bottom: 16px;
  display: block;
  color: #0284c5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-head p {
  padding: 0 30%;
  margin-bottom: 50px;
}
.contact .form-box {
  padding: 30px;
  border-radius: 15px;
  background-color: #f1f5f9;
  box-shadow: 0 0px 5px rgb(58 70 76 / 30%);
  height: 100%;
  margin-right: 20px;
}
.contact .form-box .row {
  gap: 15px;
}
.contact .form-box .cmn-btn i {
  margin-right: 15px;
}
.contact .form-box .cmn-btn,
.contact .form-box .btn-group {
  width: 100%;
  text-align: center;
}
.contact .form-box label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  font-family: "Lora", serif;
}
.social-link-box {
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f1f5f9;
  box-shadow: 0 0px 3px rgb(58 70 76 / 30%);
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.social-link-box:hover {
  border: 1px solid #0284c5;
}
.social-link-box p,
.social-link-box h4 {
  margin-bottom: 0;
}
.social-link-box i {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #dfeef6;
  text-align: center;
  align-content: center;
  font-size: 24px;
  color: #0284c5;
  transition: 0.3s ease;
}
.social-link-box .social-details {
  color: #000;
}
.social-link-box:hover i {
  background-color: #c6e2f1;
}
.contact h3 {
  margin-bottom: 24px;
  font-weight: 600;
  font-family: "Lora", serif;
  font-size: 20px;
}
.social-link-details {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0px 3px rgb(58 70 76 / 30%);
  background-color: #e4e7ea;
}
.contact .row.main-row {
  margin: 0 10%;
}
.social-link-box h4 {
  font-size: 16px;
  /* font-weight: 400; */
  font-family: "Inter", sans-serif;
}
.contact .form-box .form-control {
  padding: 10px;
  border-radius: 10px;
}
.contact .form-box .form-control:focus {
  box-shadow: none;
}
.contact .form-box .form-control::placeholder {
  font-size: 14px;
}
.contact .form-box textarea {
  height: 100px;
}
/*============= footer ===============*/
.footer {
  background-color: #324052;
  padding: 30px 0;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f9ff;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-icon a {
  padding: 10px;
  border-radius: 100%;
  background-color: #465263;
  color: #f0f9ff;
  transition: 0.3s ease;
}
.footer-social-icon a:hover {
  background-color: #077eba;
}
.footer .visionary {
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}
.footer-bottom .copyright {
  text-align: center;
  color: #f0f9ff;
}
.footer .navbar-brand {
  display: inline-block;
  margin-bottom: 16px;
  color: #f8fafc;
  font-size: 20px;
  font-weight: 600;
}

/* ================== responsive ================== */
@media (max-width: 991px) {
  .desk-btn {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
  .offcanvas-title {
    max-width: 50px;
  }
  .offcanvas-header {
    background-color: #c6e2f1;
  }
  .offcanvas-header .btn-close {
    border: 2px solid #000;
    border-radius: 100%;
  }
  .offcanvas-body {
    background-color: #f1f5f9;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: flex-start;
    gap: 0;
  }
  .navbar-nav .nav-link.active {
    border-bottom: 1px solid #c6e2f1;
    padding: 20px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    width: 100%;
  }
  .about .abt-box {
    margin-bottom: 30px;
  }
  .future .current-focus-box {
    margin-bottom: 30px;
  }
  .tech-head {
    padding: 0;
  }
  .technology .tech-box {
    margin: 50px 0 0;
  }
  .technology .row.tech-box {
    justify-content: center;
  }
  .contact .row.main-row {
    margin: 0;
  }
  .contact .form-box {
    margin-right: 0;
  }
  .contact .row.main-row {
    row-gap: 50px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .milestone .career-milestone {
    margin-top: 30px;
  }
  .director-img {
    text-align: center;
  }
  .milestone-head p {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .banner-head h1 {
    font-size: 35px;
  }
  .visionary {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .banner-head p {
    padding: 0;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .banner-exp-box h3 {
    font-size: 26px;
  }
  .banner-btn-box {
    margin-bottom: 30px;
  }
  .about,
  .area,
  .future,
  .technology,
  .contact {
    padding: 30px 0;
  }
  .abt-box h2,
  .area-head h2,
  .future-head h2,
  .future .current-focus-box h3,
  .tech-head h2,
  .contact-head h2 {
    font-size: 26px;
  }
  .area-head p,
  .future-head p,
  .contact-head p {
    padding: 0;
    margin-bottom: 30px;
  }
  .area-box {
    padding: 15px;
    height: 100%;
  }
  .area-box i {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  .area-box-content h3 {
    font-size: 18px;
  }
  .future .row-box {
    padding: 30px 10px;
  }
  .tech-head i {
    font-size: 50px;
  }
  .tech-head p {
    font-size: 16px;
  }
  .technology .tech-box {
    margin-top: 30px;
  }
  .contact .form-box {
    padding: 15px;
  }
  .contact .row.main-row {
    gap: 30px;
  }
  .future .current-focus-box p {
    padding-right: 0;
  }
  .banner {
    min-height: 50vh;
  }
  .milestone {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .banner {
    min-height: 60vh;
  }
  .footer .footer-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .visionary {
    flex-direction: column;
    gap: 15px;
  }
  .visionary li:first-child {
    list-style: disc;
  }
  .footer .visionary {
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .footer .visionary li {
    list-style: none;
  }
  .milestone .career-milestone {
    padding: 15px;
  }
  .offcanvas{
    max-width: 70vw;
  }
  .navbar-nav .nav-link.active{
    padding: 15px 0;
  }
}
@media (max-width: 375px) {
  .banner {
    min-height: 75vh;
  }
}
