/* <!-------------------------------------- Hero Section -------------------------------------------------> */


.slide {
  position: relative;
  height: 550px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  color: var(--white);
  justify-content: center;
  background-image: linear-gradient(to right, #060606b4, rgba(42, 39, 39, 0.915));
}

.ul-banner-2-slide-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    width: -webkit-fill-available;
}

.ul-banner-title {
	font-size: 80px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-box {
    display: inline-block;
    padding: 0px 25px;
    background-color: rgba(123, 120, 120, 0.292);
/*     border-radius: 150px; */
    color: white;
    margin-left: 98px;
}

.breadcrumb{
   margin-top: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  color: #a42b13;
}

/*-------------------- Responsive --------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .slide {
    padding: 50px 25px;
    height: 450px;
  }

  .ul-banner-title {
    font-size: 50px;
  }

  .breadcrumb-box {
    padding: 0 15px;
    margin-left: 50px;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .slide {
    flex-direction: column;
    padding: 40px 15px;
    height: 350px;
    text-align: center;
  }

  .ul-banner-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .breadcrumb-box {
    margin-left: 0;
    padding: 0 10px;
  }

  .breadcrumb {
    margin-top: 0.5rem;
  }
}
/*-----------------------------------About Section--------------------------------------*/
.about-section {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 50px 0;
}

.about-image {
	width: 45%;
    height: 570px;
    background-size: cover;
    background-position: center;
}

.about-content {
  max-width: 45%;        /* 600px */
}

.about-content h4 {
  color: #a42b13;
  margin-bottom: 0.625rem;   /* 10px */
  font-size: 1rem;
  font-weight: 600;       
}

.about-content h2 {
  text-align: start;
  font-size: 3.09rem;;        /* 50px */
  font-weight: 700;
  margin-bottom: 1.25rem;    /* 20px */
  color: #1b1b1b;
  line-height: 1.2;
}

.about-content p {
  font-size:1.1rem;           /* 18px */
  color: #070707;
  line-height: 1.4;
  font-weight: 500;
}

/*-------------------- Responsive --------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .about-section {
    gap: 15px;
    padding: 30px 2rem 8px;
  }

  .about-image {
    width: 98%;
    height: 370px;
  }
	.about-content {
    max-width: 98%;
	}
  .about-content h2 {
    font-size: 2.5rem; /* 40px */
  }

  .about-content p {
    font-size: 1rem;
  }
	.about-content p {
    margin-bottom: 1rem; 
	font-weight:unset;
	}
	.tab-navigation {
   margin-top: -1rem !important;
    }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .about-section {
    flex-direction: column;
    gap: 15px;
    padding: 25px 1rem;
  }

  .about-image {
    width: 100%;
    height: 300px;
  }

  .about-content {
    max-width: 100%;
    text-align: start;
  }

  .about-content h2 {
    font-size: 2rem; /* 32px */
    text-align: start;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

/*----------------------------------Start Section Styling-------------------------------*/
.start-section {
    background-image: url(../img/bg.png);
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 19px;
    padding: 4rem;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  border-radius: 50%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 50%;

}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;


}

.flip-card-front {
    background-color: #bbb;
    opacity: 0px;
	gap: 20px;
    color: rgb(255, 255, 255);
    border-color: #00000000;
    font-weight: 600;
    font-size: x-large;
    border: 1px solid white;
    padding:31px;
    text-align: center;
    background: border-box;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-front h1{
  font-size: 30px;
}

.flip-card-front p{
  font-size: large;
}

.flip-card-back {
  background-color: #a42b13;
  color: white;
  transform: rotateY(180deg);
}
/*-------------------- Responsive --------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
    .start-section {
        gap: 15px;
        padding: 3rem 2rem;
        justify-content: center;
    }

    .flip-card {
         width: 48%;
        height: 250px;
    }
	.start-section{
    	flex-wrap: wrap;
	}

    .flip-card-front h1 {
        font-size: 24px;
    }

    .flip-card-front p {
        font-size: 1rem;
    }
	.flip-card-front{
			padding: 15px;
	}
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
    .start-section {
        flex-direction: column;
        gap: 20px;
        padding: 2rem 1rem;
        align-items: center;
    }

    .flip-card {
        width: 90%;
        height: 250px;
    }
	.flip-card-front {
		padding: 10px;
	}

    .flip-card-front h1 {
        font-size: 20px;
    }

    .flip-card-front p {
        font-size: 0.9rem;
    }
}

/*----------------------------Mision-Vision-Styling-------------------------------------*/
/* Basic styling */
.ul-about-tabs {
  background-image: url(../img/bg.png);
  padding: 4rem 5rem;
  color: #fff;
}

.ul-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ul-section-sub-title {
    color: #a42b13;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.ul-section-title {
	font-size: 45px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Tab buttons */
.about-tabs-section {
  background: #0c1724;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

/* Hide radios */
input[type="radio"] {
  display: none;
}

/* Tab Buttons */
.tab-navigation {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.tab-btn {
  flex: 1;
  text-align: center;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: bold;
  color: #ccc;
  position: relative;
  transition: all 0.3s ease;
}
.tab-btn:hover {
  color: #a42b13;
}

/* Active states */
#tab-mission:checked ~ .tab-navigation label[for="tab-mission"],
#tab-vision:checked ~ .tab-navigation label[for="tab-vision"],
#tab-history:checked ~ .tab-navigation label[for="tab-history"] {
  color: #a42b13;
}
#tab-mission:checked ~ .tab-navigation label[for="tab-mission"]::after,
#tab-vision:checked ~ .tab-navigation label[for="tab-vision"]::after,
#tab-history:checked ~ .tab-navigation label[for="tab-history"]::after {
  content: '';
  display: block;
  margin: auto;
  margin-top: 0.5rem;
  height: 3px;
  width: 60%;
  background: #a42b13;
  border-radius: 2px;
}

/* Tab Content Layout */
.tab-content {
  margin-top: 2rem;
}
.tab-panel {
  display: none;
  background: #fff;
  color: #333;

  padding: 2rem;
}
.tab-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.tab-img {
  flex: 1 1 40%;
}
.tab-img img {
  width: 100%;
  height: -webkit-fill-available;
}
.tab-text {
  flex: 1 1 55%;
}
.tab-text h3 {
  margin-bottom: 1rem;
  font-weight: bold;
}
.tab-text ul {
  margin: 1rem 0;
  padding-left: 1rem;
  color: #333;
}
.tab-text li {
  margin-bottom: 0.5rem;
}

/* Show active tab */
#tab-mission:checked ~ .tab-content .mission-panel,
#tab-vision:checked ~ .tab-content .vision-panel,
#tab-history:checked ~ .tab-content .history-panel {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-inner {
    flex-direction: column;
  }
  .tab-btn {
    font-size: 14px;
  }
}

/*-------------------- Responsive --------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .ul-about-tabs {
    padding: 3rem 2rem;
  }

  .ul-section-title {
    font-size: 36px;
    text-align: center;
  }

  .ul-section-sub-title {
    font-size: 0.95rem;
    text-align: center;
  }

/*   .tab-inner {
    flex-direction: column;
  } */

  .tab-img, .tab-text {
    flex: 1 1 100%;
  }

  .tab-img img {
    height: auto;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .ul-about-tabs {
    padding: 2rem 1rem;
  }

  .ul-section-title {
    font-size: 28px;
  }

  .ul-section-sub-title {
    font-size: 0.85rem;
  }

  .tab-btn {
    font-size: 14px;
    padding: 0.75rem 0;
  }

  .tab-panel {
    padding: 1rem;
  }
}

/* <!-----------------------------------Team Section-stayling------------------------------> */

.team-section {
/*   padding: 50px 20px; */
  text-align: center;
}

.section-title span {
  color: #a42b13;
  font-weight: 600;
  font-size: 1rem;
  margin-left: -80rem;
}

.section-title h2 {
    font-size: 45px;
	text-transform: uppercase;
    color: #1e1e1e;
    margin: 10px 0 40px;
    font-weight: 600;
    margin-left: 3.6rem;
    text-align: start;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    justify-items: center;
    align-items: center;
    margin: 4rem 8rem;
}

.team-card {
  background: #fff;
/*   border-radius: 16px; */
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 transparent;
  width: 80%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
/*   border-radius: 16px 16px 0 0; */
}

.image-wrapper img {
  width: 100%;
  height: 370px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.social-icons {
    position: absolute;
    bottom: 10px;
    left: 0px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    width: 100%;
    justify-content: center;
}

.team-card:hover .social-icons {
  opacity: 1;
}

.social-icons a {
  color: #fff;
  background: rgba(0, 0, 0, 0);
  padding: 6px;
  border-radius: 50%;
  font-size: 20px;
}

.card-footer {
  padding: 15px;
  text-align: center;
  color: #000;
}

.card-footer h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-footer p {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #444;
  font-weight: 600;
}

.card-footer p:hover{
  color: #fff;
}

.card-footer.orange {
  background: #eee;
  /* color: #fff; */
}

.card-footer.orange:hover{
  background: #a42b13;
  color: #fff;
}

.card-footer.gray {
  background: #eee;
}

.card-footer.gray:hover{
  background: #a42b13;
  color: #fff;
}

/*-------------------- Responsive --------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .team-section {
    padding: 25px 15px;
  }
	.section-title h2 {
    margin: 0px 20px 15px;
	}
  .section-title h2 {
    font-size: 36px;
  }
	.heading {
    margin-bottom: 1rem;
	}
	.Testimonial-buttons {
   padding: 0rem;
	}
  .team-container {
    margin: 0rem 1rem;
    gap: 0rem;
  }

  .image-wrapper img {
    height: 300px;
  }

  .card-footer h3 {
    font-size: 1.1rem;
  }

  .card-footer p {
    font-size: 0.85rem;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .team-section {
    padding: 0px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .team-container {
    grid-template-columns: 100%;
    gap: 1rem;
    margin: 1rem 0rem;
  }
	..team-card{
		width: 90%;
	}

  .image-wrapper img {
    height: 400px;
  }

  .card-footer h3 {
    font-size: 1rem;
  }

  .card-footer p {
    font-size: 0.8rem;
  }
}


