body {
  font-family: "Roboto", "sans-serif" !important;
}
/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
}
img[loading="lazy"] {
  background: #f0f0f0;
}
.navbar-nav .nav-item {
    margin-right: 30px;
  }
  .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
  .navbar-nav .nav-link {
    font-size: 16px;
    color: black;
  }
  .navbar-nav .nav-link:hover, .footer-links:hover {
    color: #0077b6 !important;
  }
  .get-quote-btn {
    background-color: #0077b6 !important;
    border-color: #0077b6 !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-block !important;
    border: 2px solid #0077b6 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1000 !important;
    position: relative !important;
  }
  .navbar-nav .nav-item .get-quote-btn {
    margin-left: 10px !important;
  }
  .bg-div-product .navbar .get-quote-btn,
  .bg-div-contact .navbar .get-quote-btn {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
  }
  .navbar .container .navbar-collapse .navbar-nav .get-quote-btn {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
  }
  .navbar-collapse.show .get-quote-btn,
  .navbar-collapse.collapsing .get-quote-btn {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
  }
  .get-quote-btn:hover {
    background-color: #005a8b !important;
    border-color: #005a8b !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 182, 0.3);
  }
  @media (max-width: 991px) {
    .get-quote-btn {
      margin-top: 10px !important;
      margin-left: 0 !important;
      width: 100%;
      text-align: center;
      visibility: visible !important;
      opacity: 1 !important;
      display: block !important;
    }
    .navbar-nav .nav-item .get-quote-btn {
      margin-left: 0 !important;
    }
    .bg-div-product .navbar .get-quote-btn,
    .bg-div-contact .navbar .get-quote-btn {
      visibility: visible !important;
      opacity: 1 !important;
      display: block !important;
    }
  }
  .product-detail{
    background-color: #f1efe9;
  }
  .bg-div{
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    /* Fallback background image while video loads */
    background-image: url('./assets/bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bg-div.video-loaded {
    background-image: none;
  }

  .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Optimize for Firefox */
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Firefox-specific fixes */
    display: block;
    pointer-events: none;
  }
  
  /* Firefox-specific: Ensure video container is properly styled */
  @-moz-document url-prefix() {
    .hero-video-bg {
      /* Firefox may need explicit display */
      display: block;
    }
    
    .bg-div.video-loaded .hero-video-bg {
      opacity: 1 !important;
    }
  }

  .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  .bg-div nav {
    position: relative;
    z-index: 10;
  }

  .bg-div .hero-section {
    position: relative;
    z-index: 10;
  }
  .bg-div-contact{
    background-image: url('./assets/bg-about.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 60vh;
    width: 100%;
  }
  .bg-div-product{
    background-image: url('./assets/product-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    width: 100%;
  }
  .hero-section h1 {
    margin-top: 100px;
    font-size: 90px;
    color: #0077b6;
  }
  .hero-section h2 {
    font-size: 40px;
    color: #0077b6;
  }
  .animated-button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #0077b6;
    box-shadow: 0 0 0 2px #0077b6;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .animated-button span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #0077b5;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .animated-button span:first-child {
    position: relative;
    z-index: 1;
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 5px #03a3fa;
    color: #ffffff;
  }
  
  .animated-button:active {
    scale: 0.95;
  }
  
  .animated-button:hover span:last-child {
    width: 150px;
    height: 150px;
    opacity: 1;
  }

.about-text-wrapper p{
  font-size:20px;
}
.about-video{
  margin-top: 20px;
  margin-left: 50px;
  width: 280px;
  object-fit: contain;
}

/* Team Section Styles */
.team-section {
  padding: 60px 0;
}

.team-text-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 5px solid #0077b6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-text-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-text-wrapper h3 {
  font-weight: 700;
  font-size: 28px;
}

.team-text-wrapper p {
  color: #333;
  margin-bottom: 15px;
}

.team-section img {
  transition: transform 0.3s ease;
}

.team-section img:hover {
  transform: scale(1.02);
}

/* Innovation Section Styles */
.innovation-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0077b6 0%, #00a8e8 50%, #0077b6 100%);
}

.innovation-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.15);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.innovation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 0;
}
.innovation-card > * {
  position: relative;
  z-index: 1;
}
.innovation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 119, 182, 0.3);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.innovation-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;   /* ← The magic line */
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.innovation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}


.innovation-card:hover .innovation-img {
  transform: scale(1.08);
}

.innovation-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.innovation-card:hover .innovation-img-wrapper::after {
  opacity: 1;
}

.innovation-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.innovation-title {
  font-size: 22px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.innovation-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0077b6, #00a8e8);
  transition: width 0.3s ease;
}

.innovation-card:hover .innovation-title::after {
  width: 100px;
}

.innovation-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .innovation-img-wrapper {
    height: 220px;
  }
  
  .innovation-title {
    font-size: 20px;
  }
  
  .innovation-description {
    font-size: 15px;
  }
}

/* Video Background Effect */
.video-background-wrapper {
  position: relative;
  width: 100%;
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.video-overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 3;
  mix-blend-mode: overlay;
}
.project-info {
  flex: 1;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  position: relative;
  top: 0;
}

.project-title {
  font-weight: 700;
  font-size: 1.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0077b6;
  margin-bottom: 0;
}

.lighter {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #333;
  line-height: 1.6;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.card-img div {
  width: 100%;
}
.product-card:hover{
  box-shadow: 0 20px 40px rgba(0, 119, 182, 0.3);
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.product-card {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: black;
  max-width: 320px;
  height: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}
.product-card > * {
  position: relative;
  z-index: 1;
}
.card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.card-img a,
.card-img div {
  height: 100%;
  width: 100%;
  border-radius: 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-imgs {
  transition: all 0.5s;
}
.product-section{
  background-image: url('./assets/product-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  min-height: 700px;
  width: 100%;
}
.avatar{
  width: 200px;
  height: 200px;
}
.review-card-wrapper{
  padding-left: 200px;
  padding-right: 200px;
}
.customer-color{
  color: #0077b6 !important;
}
.review-section h2{
  font-size: 40px;
  margin-bottom: 30px;
}
.review-section p{
  font-size: 20px;
  margin-bottom: 30px;
  padding-left: 0 100px 0 100px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(241, 239, 233, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px;
  position: relative;
  transition: all 0.4s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.25);
  background: rgba(241, 239, 233, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stars {
  display: flex;
  grid-gap: 0.125rem;
  gap: 0.125rem;
  color: rgb(238, 203, 8);
}

.star {
  height: 1.25rem;
  width: 1.25rem;
}

.infos {
  margin-top: 1rem;
}

.date-time {
  color: rgba(7, 63, 216, 1);
  font-size: 12px;
  font-weight: 600;
}

.description {
  font-size: 15px !important;
  margin-top: 0.4rem;
  line-height: 1.625;
  color: rgba(107, 114, 128, 1);
}

.author {
  margin-top: 1.3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(107, 114, 128, 1);
}
/* Reviews Carousel Styles */
.reviews-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  margin: 0 auto;
  width: 100%;
}
.reviews-carousel {
  display: flex;
  gap: 30px;
  animation: scroll-reviews 40s linear infinite;
  will-change: transform;
  width: fit-content;
  align-items: stretch;
}
.reviews-carousel:hover {
  animation-play-state: paused;
}
.review-card {
  flex: 0 0 350px;
  min-width: 350px;
  max-width: 350px;
  display: flex;
  align-items: stretch;
}
.review-card .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}
@media (max-width: 991px) {
  .review-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    display: flex;
    align-items: stretch;
  }
  @keyframes scroll-reviews {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 15px));
    }
  }
}
@media (max-width: 767px) {
  .review-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    align-items: stretch;
  }
  @keyframes scroll-reviews {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 15px));
    }
  }
}
.contact-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.contact__shape1 {
  position: absolute;
  top: 150px;
  left: -90px;
  z-index: -1;
}
.social-wrapper{
  background-color: #0077b6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.contact__shape2 {
  position: absolute;
  bottom: 45px;
  right: 30px;
  z-index: -1;
}
.contact__content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact__content p {
  font-size: 23px;
  line-height: 40px;
  font-weight: 500;
}
.contact__item{
  padding: 50px;
  border-radius: 32px;
  background-color: #f1efe9;
}
.contact__item h3{
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact__item label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact__item input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  margin-bottom: 24px;
}
.contact__item textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  height: 145px;
  resize: none;
}

/* Contact Tabs */
.form-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  background: #f5f9fc;
  border-radius: 999px;
  padding: 5px;
}

.form-tab {
  flex: 1;
  border: none;
  background: transparent;
  color: #1b1b1b;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.form-tab.active {
  background: #0077b6;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25);
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

.form-feedback {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
}
.contact__item-left .section-header, .contact__item-left .section-header-four, .contact__item-left .section-header-inner {
  max-width: 430px;
}
.mb-30 {
  margin-bottom: 30px;
}
.btn-three {
  color: white !important;
  display: inline-block;
  position: relative;
  padding: 15px 30px;
  background-color: #0077b5;
  color: #09241b;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
  font-size: 18px;
}
footer {
  background-color: #e7dc77;
}
.contact{
  width: 100%;
  background-image: url('./assets/bg-contact.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.contact-section p{
  font-size: 25px
}
.footer-heading{
  color: #0077b5;
}
.why-choose-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.why-choose-us-image {
  width: 100% !important;
  height: 360px !important;
  border-radius: 8px;
}
.benefit {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.15);
  margin-bottom: 20px;
  height: 170px;
  overflow-y: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}
.benefit > * {
  position: relative;
  z-index: 1;
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.25);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.benefit h3{
  font-size: 20px;
  font-weight: 500;
  color: #0077b6;
}
.benefit p {
  font-size: 16px;
  line-height: 24px; 
}
.footer-text{
  text-align: justify;
}
.social-links-wrapper{
  justify-content: end;
}
.why-card{
  min-height: 175px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.15) !important;
  position: relative;
  transition: all 0.4s ease;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}
.why-card > * {
  position: relative;
  z-index: 1;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.25) !important;
  background: rgba(255, 255, 255, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.why-card img {
  object-fit: contain;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float svg {
  fill: white;
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
  color: #FFF;
}
.whatsapp-float::before {
  content: "Contact Us";
  position: absolute;
  right: 70px;
  background-color: #128C7E;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.whatsapp-float:hover::before {
  opacity: 1;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 60px;
  border: 6px solid transparent;
  border-left-color: #128C7E;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover::after {
  opacity: 1;
}
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  }
}
/* Timeline Section Styles */
.timeline-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0077b6 0%, #00a8e8 50%, #0077b6 100%);
}
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0077b6 0%, #00a8e8 50%, #0077b6 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 119, 182, 0.3);
}
.timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  width: 100%;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #0077b6;
  border: 4px solid white;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.timeline-dot.active {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.3), 0 6px 20px rgba(0, 119, 182, 0.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.3), 0 6px 20px rgba(0, 119, 182, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 119, 182, 0.2), 0 6px 30px rgba(0, 119, 182, 0.5);
  }
}
.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.3), 0 6px 25px rgba(0, 119, 182, 0.5);
}
.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.15);
  position: relative;
  transition: all 0.4s ease;
  border-left: 5px solid #0077b6;
}
.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 0;
}
.timeline-content > * {
  position: relative;
  z-index: 1;
}
.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 5px solid #0077b6;
}
.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 119, 182, 0.3);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #0077b6;
}
.timeline-content.highlight {
  background: rgba(0, 119, 182, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid white;
  border-right: none;
  box-shadow: 0 8px 32px 0 rgba(0, 119, 182, 0.4);
}
.timeline-content.highlight::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}
.timeline-content.highlight .timeline-year,
.timeline-content.highlight .timeline-title,
.timeline-content.highlight .timeline-description {
  color: white;
}
.timeline-year {
  font-size: 48px;
  font-weight: 900;
  color: #0077b6;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.timeline-content.highlight .timeline-year {
  -webkit-text-fill-color: white;
  background: none;
}
.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}
.timeline-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0077b6, #00a8e8);
  transition: width 0.3s ease;
}
.timeline-content:hover .timeline-title::after {
  width: 100px;
}
.timeline-content.highlight .timeline-title::after {
  background: white;
}
.timeline-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.timeline-content.highlight .timeline-description {
  color: rgba(255, 255, 255, 0.95);
}
.timeline-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 40px;
  opacity: 0.2;
  transition: all 0.3s ease;
}
.timeline-item:nth-child(even) .timeline-icon {
  right: auto;
  left: 20px;
}
.timeline-content:hover .timeline-icon {
  opacity: 0.4;
  transform: scale(1.2) rotate(5deg);
}
.timeline-content.highlight .timeline-icon {
  opacity: 0.3;
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .timeline-line {
    left: 30px;
  }
  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  .timeline-dot {
    left: 30px;
  }
  .timeline-content {
    width: 100%;
    border-left: 5px solid #0077b6 !important;
    border-right: none !important;
  }
  .timeline-content.highlight {
    border-left: 5px solid white !important;
  }
  .timeline-icon {
    right: 20px !important;
    left: auto !important;
  }
  .timeline-year {
    font-size: 36px;
  }
  .timeline-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  HTML, body {
    width: 100%;
    overflow-x: hidden;
}
  .contact__content p {
    font-size: 22px;
    line-height: 32px;
  }
  .hero-section h1 {
    margin-top: 150px;
    font-size: 50px;
  }
  .hero-section h2 {
    font-size: 30px;
  }
  .social-links-wrapper{
    justify-content: center;
  }
  .review-card-wrapper{
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* --- FIX: Custom height for 'about.jpg' image in the History section --- */
.about-section .row .col-md-6 img {
  /* Set your desired height here (e.g., 400px) */
  height: 450px !important; 
  /* The object-fit: cover class is already on the image, 
     but we ensure it works with the forced height. */
  object-fit: cover;
}