/* about-hero.css */
/* About Us Hero Styles */
.about-hero__container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/IMG_9262.JPG') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: about-hero__fadeIn 1.5s ease-out;
}

.about-hero__title {
  font-family: 'Dancing Script', 'Parisienne', cursive;
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero__subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-hero__divider {
  width: 100px;
  height: 3px;
  background: #fff;
  margin: 2rem auto;
  opacity: 0.8;
}

.about-hero__description {
  font-family: 'montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-hero__cta-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #2C3E20;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2C3E20;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.about-hero__cta-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.about-hero__cta-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.about-hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

@keyframes about-hero__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero__title {
    font-size: 3.5rem;
  }
  
  .about-hero__subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .about-hero__description {
    font-size: 1rem;
  }
  
  .about-hero__cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .about-hero__cta-primary,
  .about-hero__cta-secondary {
    width: 80%;
    text-align: center;
  }
}

/* about-content.css */
/* About Content Section Styles */
.about-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-content__text-container {
  max-width: 800px;
  margin-bottom: 60px;
}

.about-content__title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content__subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.about-content__description {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.about-content__gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.about-content__gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.about-content__gallery::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.about-content__gallery-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.about-content__gallery-image:hover {
  transform: scale(1.05);
}

.about-content__gallery-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.about-content__gallery-gradient--left {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.about-content__gallery-gradient--right {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content__title {
    font-size: 2.5rem;
  }
  
  .about-content__subtitle {
    font-size: 1rem;
  }
  
  .about-content__description {
    font-size: 1rem;
  }
  
  .about-content__gallery-image {
    width: 150px;
    height: 150px;
  }
  
  .about-content__gallery-gradient {
    width: 50px;
  }
}

/* our-team.css */
/* Our Team Section Styles */
.our-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.our-team__header {
  margin-bottom: 60px;
  text-align: left;
}

.our-team__title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 15px;
}

.our-team__subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  color: #666;
  letter-spacing: 1px;
}

.our-team__members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.our-team__member {
  position: relative;
  width: 100%;
}

.our-team__image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Creates square aspect ratio */
  overflow: hidden;
}

.our-team__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.our-team__member:hover .our-team__image {
  transform: scale(1.03);
}

.our-team__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  color: white;
  text-align: left;
}

.our-team__name {
  font-family: 'poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.our-team__role {
  font-family: 'poppins', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .our-team__title {
    font-size: 2.5rem;
  }
  
  .our-team__subtitle {
    font-size: 1rem;
  }
  
  .our-team__members {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* safety-standards.css */
/* Safety Standards Section Styles */
.safety-standards__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.safety-standards__header {
  margin-bottom: 60px;
  text-align: left;
}

.safety-standards__title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 15px;
}

.safety-standards__subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  color: #666;
  letter-spacing: 1px;
}

.safety-standards__content {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #eee;
}

.safety-standards__image-container {
  width: 50%;
}

.safety-standards__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.safety-standards__list {
  width: 50%;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.safety-standards__item {
  display: flex;
  gap: 15px;
}

.safety-standards__number {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ddd;
  line-height: 1;
}

.safety-standards__text {
  flex: 1;
}

.safety-standards__item-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.safety-standards__item-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .safety-standards__content {
    flex-direction: column;
  }
  
  .safety-standards__image-container,
  .safety-standards__list {
    width: 100%;
  }
  
  .safety-standards__image-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .safety-standards__title {
    font-size: 2.5rem;
  }
  
  .safety-standards__subtitle {
    font-size: 1rem;
  }
  
  .safety-standards__list {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

/* parallax-cta.css */
.parallax-cta {
  position: relative;
  height: 500px; /* Increased height for elegance */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  isolation: isolate;
}

.parallax-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                    url('images/TT_06578_DxOtab.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.parallax-cta__content {
  max-width: 800px;
  padding: 3rem;
  animation: fadeInUp 1.2s ease-out;
}

.parallax-cta__title {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.parallax-cta__text {
  font-family: 'Playfair Display', serif; /* Elegant serif for contrast */
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.parallax-cta__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: white;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  border-radius: 0; /* Sharp corners for elegant look */
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid white;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.parallax-cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.4s ease;
  z-index: -1;
}

.parallax-cta__button:hover {
  color: #333;
  transform: translateY(-3px);
}

.parallax-cta__button:hover::before {
  left: 0;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .parallax-cta {
    height: 400px;
  }
  
  .parallax-cta__title {
    font-size: 3rem;
  }
  
  .parallax-cta__text {
    font-size: 1.2rem;
  }
  
  .parallax-cta__bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .parallax-cta__title {
    font-size: 2.5rem;
  }
}