* {
  scroll-behavior: smooth;
}

/*******************************/
/********* General CSS *********/
/*******************************/
body {
  color: #666666;
  background: #dddddd;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fca311;
}

a {
  color: #030f27;
  transition: 0.3s;
}

a:hover,
a:active,
a:focus {
  color: #14213d;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  /* background: #030f27; */
}

.back-to-top {
  position: fixed;
  display: none;
  background: #fca311;
  color: #1f386e;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: background 0.5s;
  z-index: 9;
}

.back-to-top:hover {
  color: #fca311;
  background: #14213d;
}

.back-to-top i {
  padding-top: 10px;
}

.btn {
  transition: 0.3s;
}



/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  height: 90px;
  background: #0c1f31;
  padding: 0px;
}

.top-bar .logo {
  padding: 15px 0;
  text-align: left;
}

.top-bar .logo img {
  max-height: 60px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.top-bar-text {
  padding-left: 15px;
  color: #fff;
}

.top-bar-text h3,
.top-bar-text p {
  width: 200px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.top-bar .logo span#asedata{
  display: block;
  color: white;
  margin-top: -20px;
  margin-left: 15%;
}

@media screen and (max-width: 1130px) {
  .top-bar .logo h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1060px) {
  .top-bar .logo h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .top-bar .logo span#asedata{
    display: block;
    color: white;
    margin-top: -20px;
    margin-left: 6%;
  }
}
@media screen and (max-width: 840px) {
  .top-bar .logo span#asedata{
    margin-left: 7%;
  }
}
@media screen and (max-width: 650px) {
  .top-bar .logo span#asedata{
    margin-left: 9%;
  }
}
@media screen and (max-width: 550px) {
  .top-bar .logo span#asedata{
    margin-left: 10%;
  }
}
@media screen and (max-width: 500px) {
  .top-bar .logo span#asedata{
    margin-left: 14%;
  }
}
@media screen and (max-width: 430px) {
  .top-bar .logo h2 {
    font-size: 1.5rem;
  }
}


/* General Navbar Styling */
/* Navbar Styling */
/* Navigation Bar */
.nav-bar {
  position: relative;
  transition: 0.3s;
  background: #e5e5e5;
  z-index: 998;
}

.nav-bar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1366px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav-bar .navbar {
  background: #e5e5e5 !important;
}

.navbar-nav {
  margin-left: 0;
}

.navbar-dark .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #14213d;
  text-decoration: none;
}

.navbar-nav .nav-link img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fca311;
  text-decoration: underline;
  text-decoration-color: #fca311;
}

.phone {
  color: #14213d;
  border: 2px solid #fca311;
  border-radius: 20px;
  padding: 5px 10px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.btn-call span {
  padding: 2px;
}

.btn-call:hover {
  color: #fca311;
  background: #1f386e;
  border-color: #1f386e;
  border-radius: 5px;
}

.pp1:hover {
  color: #fca311;
}

/* Hide MENU brand on large screens */
@media (min-width: 992px) {
  .navbar-brand {
    display: none !important;
  }
}

/* Responsive Mobile Styling */
@media (max-width: 991.98px) {
  .nav-bar .navbar {
    padding: 15px;
  }

  .nav-bar .nav-link {
    padding: 8px 15px;
    margin-right: 0;
  }

  .phone {
    display: none !important;
  }

  .navbar-nav {
    width: 100%;
  }

  .nav-item {
    text-align: left;
  }
}

.navbar-dark .navbar-brand {
  color: black;
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 500px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}


.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px;
}

.carousel .carousel-caption p {
  color: #fca311;
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 400;
}

.carousel .carousel-caption h2 {
  color: #fca311;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #030f27;
  background: transparent;
  border: 2px solid #fca311;
  border-radius: 0;
  transition: 0.3s;
}

.carousel .carousel-caption .btn:hover {
  color: #fca311;
  background: #1f386e;
  border-color: #fca311;
}

@media (max-width: 767.98px) {
  .carousel .carousel-caption h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .carousel .carousel-caption p {
    font-size: 20px;
  }

  .carousel .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

@media (max-width: 575.98px) {
  .carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 500;
  }

  .carousel .carousel-caption p {
    font-size: 16px;
  }

  .carousel .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

.carousel .animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/*******************************/

div.part2 {
  width: 100%;
  height: 1150px;
}

/*  Feature Start */
.feature {
  width: 100%;
  height: 302px;
  display: flex;
  gap: 1px;
  align-items: center;
}
.feature .one,
.three, .two{
  width: 34.9%;
  height: 300px;
  background-color: #fca311;
  color: black;
}
.feature .three {
  background-color: rgb(190, 190, 190);
}
.feature .one h3,
.three h3 {
  color: #162a55;
  font-weight: 700;
  font-size: 25px;
}
.feature .two {
  width: 30%;
  padding-top: 20px;
  height: 300px;
  background-color: #14213d;
  color: white;
}
.feature .two h3 {
  font-size: 23px;
  font-weight: 650;
}

.feature p {
  font-size: 16px;
  padding: 15px;
  padding-left: 0;
}


.feature .one,
.two,
.three {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.feature .left {
  width: 50%;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.feature .left img {
  margin-left: 5px;
  margin-right: 5px;
  width: 100px;
  height: 100px;
}

.feature .one .left img {
  background-color: #fff;
  border-radius: 50%;
}

/* Stack the feature sections vertically on smaller screens */
@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    height: auto;
  }

  .feature .one,
  .feature .two,
  .feature .three {
    width: 100%;
    text-align: center;
  }

  .feature .left {
    margin-bottom: 10px;
  }

  .feature p {
    text-align: center;
    padding: 15px;
  }
}


/* Feature End *//* About Start */
.about {
  width: 100%;
  display: flex;
  padding-top: 50px;
  justify-content: center;
  gap: 2%;
}

.about .main {
  width: 35%;
  height: 500px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}

.about .main .m1,
.about .main .m2 {
  width: 100%;
}

.about .main img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about .main .item-2 img {
  width: 100%;
  max-height: 332px;
  margin-left: 0;
}

.about .main .item-4 img {
  width: 100%;
  max-height: 332px;
  margin-left: 0;
}

.about .content {
  width: 50%;
  height: auto;
  padding-left: 30px;
  padding-top: 0;
  text-align: left;
}

.about .content h2 {
  font-size: 40px;
  color: #14213d;
  margin-bottom: 10px;
  font-weight: 600;
}

.about .content h2 span {
  color: #fca311;
  filter: drop-shadow(1px 1px 1px #14213d);
}

.about .content h3 {
  font-size: 30px;
  color: #14213d;
  margin-bottom: 10px;
}

.about .content p {
  font-size: 18px;
  color: #14213d;
  font-weight: 400;
  font-stretch: expanded;
  line-height: 25px;
  margin-bottom: 20px;
}

.about .content .btn {
  padding: 15px 30px;
  border: 1px solid #14213d;
  border-radius: 50px;
  font-size: 18px;
  color: #14213d;
  text-decoration: none;
  font-weight: 500;
}

.about .content .btn:hover {
  background-color: #14213d;
  color: #fca311;
  transition: 0.5s;
}

/* Fade-in Effect */
.about {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.about.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Start */
.about {
  width: 100%;
  display: flex;
  padding-top: 50px;
  justify-content: center;
  gap: 2%;
}

.about .main {
  width: 35%;
  height: 500px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}

.about .main .m1,
.about .main .m2 {
  width: 100%;
}

.about .main img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about .main .item-2 img {
  width: 100%;
  max-height: 332px;
  margin-left: 0;
}

.about .main .item-4 img {
  width: 100%;
  max-height: 332px;
  margin-left: 0;
}

.about .content {
  width: 50%;
  height: auto;
  padding-left: 30px;
  padding-top: 0;
  text-align: left;
}

.about .content h2 {
  font-size: 40px;
  color: #14213d;
  margin-bottom: 10px;
  font-weight: 600;
}

.about .content h2 span {
  color: #fca311;
  filter: drop-shadow(1px 1px 1px #14213d);
}

.about .content h3 {
  font-size: 30px;
  color: #14213d;
  margin-bottom: 10px;
}

.about .content p {
  font-size: 18px;
  color: #14213d;
  font-weight: 400;
  font-stretch: expanded;
  line-height: 25px;
  margin-bottom: 20px;
}

.about .content .btn {
  padding: 15px 30px;
  border: 1px solid #14213d;
  border-radius: 50px;
  font-size: 18px;
  color: #14213d;
  text-decoration: none;
  font-weight: 500;
}

.about .content .btn:hover {
  background-color: #14213d;
  color: #fca311;
  transition: 0.5s;
}

/* Fade-in Effect */
.about {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.about.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Styles for very narrow mobile screens */
@media (max-width: 576px) {
  .about {
    flex-direction: column;
    padding: 15px;
    align-items: flex-start; /* Align content to the left */
    gap: 20px;
    height: auto;
  }

  .about .main {
    display: none; /* Remove the images entirely */
  }

  .about .content {
    width: 100%; /* Take full width */
    padding-left: 0;
    text-align: left; /* Align text to the left */
  }

  .about .content h2 {
    font-size: 20px; /* Smaller heading */
    margin-bottom: 5px;
  }

  .about .content h3 {
    font-size: 16px; /* Smaller subheading */
    margin-bottom: 5px;
  }

  .about .content p {
    font-size: 14px; /* Smaller paragraph */
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .about .content .btn {
    width: 60%; /* Smaller button width */
    padding: 10px 15px;
    font-size: 14px;
    text-align: center; /* Center the button text */
  }
}

/* For slightly larger mobile screens (up to 768px), you can have a simpler stacked image layout if you prefer */
@media (min-width: 577px) and (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 15px;
    align-items: center; /* Center items */
    gap: 20px;
    height:auto;
  }

  .about .main {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    margin-bottom: 15px;
  }

  .about .main .m1,
  .about .main .m2 {
    width: 100%;
  }

  .about .main img {
    max-height: 150px; /* Smaller image height */
    width: 100%;
    object-fit: cover;
  }

  .about .content {
    width: 90%;
    padding-left: 0;
    text-align: center;
  }

  .about .content h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .about .content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .about .content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .about .content .btn {
    width: 70%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* About End */


/* Initially move sections downwards (off-screen) */
.feature,
.about {
  transform: translateY(100%);
  opacity: 0;
}

/* Sliding animation */
.slide-up {
  animation: slideUp 1.5s ease-out forwards;
}

/* Keyframes for sliding up effect */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* *****************
   ***** BLOG ****** 
   ***************** */

  .blog h3{
    color: #14213d;
    filter: drop-shadow(1px 1px 1px #14213d);
  }
  .blog-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .blog-table td {
    padding: 10px;
    border: 1px solid #14213d;
    /* justify-items: center; */
    align-content: center;
    vertical-align: top;
  }
  
  .blog-address {
    width: 50%;
    font-size: 20px;
    color: #14213d;
    font-weight: 500;
  }
  
  .blog-map iframe {
    width: 100%;
    height: 200px;
  }
  



/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

.section-header p {
  color: #14213d;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: -5px;
}

.section-header h2 {
  margin: 0;
  color: #fca311;
  position: relative;
  font-size: 40px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 30px;
  }
}

.cmprojects .container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.container2 {
  width: 400px;
  height: 550px;
  position: relative;
  margin-left: 80px;
  margin-bottom: 40px;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.container2 .front img {
  width: 100%;
}
.flip {
  position: relative;
  transition: 1s;
  transform-style: preserve-3d;
}
.flip .front {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transition: 1s;
  transform-style: preserve-3d;
  z-index: 100;
  border-radius: 8px;
  background-color: #14213d;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.flip .front p {
  color: white;
  padding: 0px 10px;
}
.flip .back {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transition: 1s;
  transform-style: preserve-3d;
  z-index: 99;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  background-color: #fca311;
  text-align: center;
  width: 400px;
  height: 550px;
  transform: rotateY(180deg);
}
.flip .back h2,
span {
  color: #14213d;
  padding: 0px 0px;
}
.container2:hover .front {
  transform: rotateY(-180deg);
}
.container2:hover .back {
  transform: rotateY(0deg);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 20%;
  width: 90%;
  height: 50%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.map-container {
  width: 30%;
  height: 400px;
  overflow: hidden;
  margin-left: 20px;
  opacity: 0.7;
}
iframe {
  width: 100%;
  height: 80%;
  border: 0;
  
}
.map-container:hover{
  transition: 0.3s ease-in-out;
  opacity: 1;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .container2 {
    margin-left: 0;
    width: 100%;
    height: auto;
  }
  .flip {
    position: static;
    transform-style: flat;
  }
  .flip .front,
  .flip .back {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
  }
  .flip .back{
      display: none;
  }
  .flip .front{
    position: relative;
  }
  .flip .front img{
    width: 100%;
  }
  .flip .front p{
    display: none;
  }
  .flip .front h2{
    font-size: 1.2rem;
    padding: 5px;
    padding-bottom: 60px;
  }
  .flip .front p{
    font-size: 0.9rem;
  }
  .flip .front::after{
    content: "Map";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fca311;
    color: #14213d;
    padding: 8px 16px;
    cursor: pointer;
  }
  .container2:hover .front {
    transform: none;
  }
  .container2:hover .back {
    transform: none;
  }
  .flip .front, .flip .back{
    box-shadow: none;
  }
}

.map-button{
  background-color: #fca311;
  color: #14213d;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  opacity: 0;
  
}
.flip .front{
  position: relative;
}

@media (max-width: 768px) {
  /* ... (Your existing responsive CSS) ... */
  .flip .front p{
      display: none;
  }
  .flip .front::after{
      display: none;
  }

  .map-button{
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 1;
  }

}



/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.service .service-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.service .service-img {
  position: relative;
  overflow: hidden;
}

.service .service-img img {
  width: 100%;
  cursor: pointer; /* Make it clear it's clickable */
}

.service .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  padding-top: 100px;
  align-items: center;
  justify-content: center;
  background: #14213dd1;
  transition: 0.5s;
  opacity: 0;
  text-align: left;
}

.service .service-item:hover .service-overlay {
  opacity: 1;
}

.service .service-overlay p {
  margin: 0;
  justify-content: c;
  color: #fca311;
}

.service .service-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #14213d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: (100%);
  font-size: 20px;
  font-weight: 700;
  color: #fca311;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-item a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #14213d;
  background: #1f386e;
  border-radius: 0;
  transition: 0.3s;
}

.service .service-item:hover a.btn {
  color: #030f27;
}


.service .service-overlay a.interior {
  width: 150px;
  height: 50px;
  border: 2px solid #fca311 ;
  font-size: 15px;
  padding: 7px 20px;
  border-radius: 50px;
  background-color: transparent;
  color: #e5e5e5;
}
.service .service-overlay a.interior:hover {
  transition: 0.5s;
  color: #14213d;
  background-color: #fca311;
  font-weight: 700;
}
/* Lightbox Container */
.lb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Lightbox Content */
.lb-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Image inside Lightbox */
.lb-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Close Button (X) - Moved to Top Right */
.lb-close {
  position: absolute !important;
  top: -35px !important;
  left: 430px !important;
  bottom: auto !important;
  background: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1100;
}

/* Navigation Buttons (Previous & Next) */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
}

.lb-prev {
  left: 10px;
}

.lb-next {
  right: 10px;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(0, 0, 0, 0.8);
}


  /* Team Section */
  .team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
  }
  
  .team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .team .row{
    justify-content: center;
  }
  
  /* Team Image */
  .team .team-img {
    position: relative;
    overflow: hidden;
  }
  
  .team .team-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Hover Effect: Image Zoom */
  .team .team-item:hover .team-img img {
    transform: scale(1.1);
    
  }
  
  /* Overlay Effect */
  .team .team-img .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #14213d9c;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    
  }
  
  .team .team-item:hover .team-overlay {
    opacity: 1;
  }
  
  /* Team Text (Bottom Box) */
  .team .team-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: #fca311;
    transition: background 0.5s ease-in-out;
  }
  
  /* Name (h2) - Initially inside the bottom box */
  .team .team-text h2 {
    font-size: 15px;
    font-weight: 800;
    
    color: #1f386e;
    transition: transform 0.5s ease-in-out, bottom 0.5s ease-in-out;
  }
  
  /* Move Name to Center on Hover */
  .team .team-item:hover .team-text h2 {
    position: absolute;
    width: 100%;
    bottom: 50%; /* Moves to center */
    transform: translateY(50%);
    color: #fca311; /* White color for better visibility */
  }
  
  /* Role Text */
  .team .team-text p {
    margin: 0;
    margin-top: -10px;
    color: #030f27;
    font-size: 15px;
    transition: opacity 0.5s ease-in-out;
  }
  
  /* Hide Role on Hover */
  .team .team-item:hover .team-text p {
    opacity: 0;
  }
  
  /* Hover Effect: Change Background */
  .team .team-item:hover .team-text {
    background: transparent;
  }
  


/* ******************
****** FOUNDER *******
****************** */

  .founder{
    width: 100%;
    height: 200px;
    padding: 30px 120px;
    justify-items: center;
    text-align: center;   
  }
  .founder img{
    margin-top: 20px;
    width: 90%;
    border-radius: 10px;
  }
  .founder h1{
    color: #14213d;
    margin-top: 30px;
    font-weight: 700;
  }
  .founder h2{
    font-weight: 600;
    padding: 20px;
    padding-bottom: 0px;
  }
  .founder p{
    text-align: justify;
  }






/* ******************
****** FOOTER *******
****************** */

.footer {
  position: relative;
  margin-top: 50px;
  padding-top: 90px;
  background: #162a55;
  color: lightgray;
}

.footer .container{
  display: flex;
  height: 390px;
}
.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  color: #fca311;
}
.footer .footer-contact{
  width: 35%;
  padding-right: 20px;
}
.footer .footer-contact p i {
  width: 30px;
  color: #fca311;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #14213d;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.3s, border 0.3s;
}

.footer .footer-social a i {
  font-size: 15px;
  color: #fca311;
  transition: color 0.3s;
}

.footer .footer-social a:hover {
  background: #fca311;
}

.footer .footer-social a:hover i {
  color: #14213d;
}

.middle{
  width: 35%;
  /* padding: 70px; */
  padding-top: 60px;
  margin-left: 15%;
}
.middle h6{
  color: #fca311;
}

.middle img{
  margin-left: 6%;
  width: 105px;
}

@media (max-width: 992px) {

  .middle{
    width: 35%;
    /* padding: 70px; */
    padding-top: 60px;
    margin-left: 0%;
  }
  .middle h6{
    color: #fca311;
  }
  
  .middle img{
    margin-left: 2%;
    width: 105px;
  }
}


.touch {
  width: 40%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.touch h2 {
  width: 100%;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.touch input {
  width: 300px;
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255);
  color: black;
  border: 1px solid #ccc; 
  display: block;
  box-sizing: border-box; 
}
.touch button {
  padding: 10px 20px;
  width: auto; 
  border-radius: 50px;
  background-color: #fca311;
  color: #14213d;
  border: 1.5px solid #14213d;
  cursor: pointer; 
  font-size: 16px; 
}
.touch button:hover {
  background-color: #14213d; 
  color: #fca311;
  border: 1.5px solid #fca311;
  transition: 0.3s;
}


/* Responsive Design */
@media (max-width: 992px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer-contact,
  .footer .touch {
    width: 100%;
    padding: 20px 0;
  }
  .touch {
    height: auto; /* Adjust height for better flow */
  }
  .touch h2 {
    margin-top: 0; /* Reset top margin in stacked layout */
  }
}

@media (max-width: 768px) {
  .touch input {
    width: 90%;
  }
}





