/* Header Styling */
.header {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('/assets/images/header1.png'); /* Set default background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out; /* Smooth transition */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  animation: changeBackground 10s infinite ease-in-out;
  transition: transform 0.5s ease-in-out;
  
}

/* Background Image Slider (CSS Keyframes) */
@keyframes changeBackground {
  0%, 25% { background-image: url('/assets/images/header1.png'); } /* Stay longer */
  35%, 55% { background-image: url('/assets/images/header2.png'); }
  65%, 85% { background-image: url('/assets/images/header3.png'); }
  95%, 100% { background-image: url('/assets/images/header4.png'); }
}

/* Overlay Effect */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Content Styling */
.header-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  padding: 20px;
}

.header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.header-content p {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Button Styling */
.btn-lg {
  background-color: var(--color-primary) !important;
  color: var(--white) !important;
}

.btn-lg:hover {
  background-color: var(--white) !important;
  color: var(--color-primary) !important;
  box-shadow: 1px 2px 2px 3px rgba(248, 104, 104, 0.212);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .header {
      height: 80vh;
  }
  .header-content h1 {
      font-size: 2.6rem;
  }
  .header-content p {
      font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .header {
      height: 70vh;
  }
  .header-content h1 {
      font-size: 1.7rem;
  }
  .header-content p {
      font-size: 1rem;
  }
  .btn-lg {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
      height: 60vh;
  }
  .header-content h1 {
      font-size: 1.5rem;
  }
  .header-content p {
      font-size: 0.9rem;
  }
  .btn-lg {
      font-size: 0.9rem;
  }
}

/* 🔹 Image Zoom on Scroll Effect */
.header.scroll-zoom::after {
  transform: scale(1.1);
}

/* header end */
/* +++++++++++++++++++++++++++++++++++++++++++++ */

/* first section */

/*Section Styling */
.steamTurbin {
  /* background-color: var(--color-primary); */
  padding: 160px 0;
}

/*Content Styling */
.content-section {
  color: var(--color-primary);
}

.content-section h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: justify;
  margin-bottom: 20px;
}

.content-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  color:var(--black);
}

/*Image Styling */
.image-section {
  display: flex;
  justify-content: center;
}

.image-section img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .steamTurbin {
      padding: 40px 20px;
  }

  .content-section h2 {
      font-size: 36px;
      text-align: center;
  }

  .content-section p {
      font-size: 16px;
      text-align: center;
  }

  .image-section {
      justify-content: center;
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .content-section h2 {
      font-size: 28px;
  }

  .content-section p {
      font-size: 15px;
  }
}


  /* erctra facility */

.erectra-facility-section {
  padding: 50px 0;
  background: #fff;
  border-radius: 15px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  margin: 20px;
}

.erectra-title {
  color:var(--color-primary);
  font-size: 28px;
  font-weight: 600;
}

.erectra-desc {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Button Styles */
.erectra-btn {
  display: inline-block;
  background:var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.erectra-btn span {
  margin-left: 8px;
}

.erectra-btn:hover {
  background:var(--black);
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.erectra-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  margin-bottom: 20px;
}

.erectra-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Card Hover Effect */
.erectra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.erectra-card:hover img {
  transform: scale(1.05);
}

/* Card Info */
.erectra-info {
  padding: 15px;
}

.erectra-label {
  color:var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.erectra-info h3 {
  font-size: 20px;
  margin: 5px 0;
}

.erectra-info p {
  font-size: 14px;
  color: #666;
}

/* Arrow Button */
.erectra-link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background:var(--color-primary);
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.erectra-link:hover {
  background:var(--black);
  transform: scale(1.1);
}


/* Image Gallery Animation Start */
.gallery-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 1vw 2vw;
}

/* Panel Styling */
.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 20px;
  color: #461111;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Active Panel Effect */
.panel.active {
  flex: 2;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */
.panel:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .gallery-slider {
      height: 599px;
      flex-direction: column;
      align-items: center;
  }

  .panel {
      width: 90%;
      height: 100%;
  }

  .panel.active {
      height: 100%;
      flex: 3.5;
      transform: scale(1.08);
  }
}

/* Image Gallery Animation end */


/* heighlight section start */
.highlights-section {
  background-image: url('/assets/images/header1.webp');
  background-position:center;
  background-attachment:fixed;
  background-repeat: no-repeat no-repeat;
  background-size:cover;
  padding: 50px 0;
  text-align: center;
}

/* Title Styling */
.section-title {
  font-size: 32px;
  font-weight: bold;
  color:var(--white);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color:var(--black);
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
}

/* Cards Container */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Individual Card */
.highlight-card {
  background:rgb(41, 36, 36);
  padding: 25px;
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.highlight-card i {
  font-size: 50px;
  color:var(--white);
  margin-bottom: 15px;
}

.highlight-card p {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

/* Hover Effect */
.highlight-card:hover {
  background-color:var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color:var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cards {
      flex-direction: column;
      align-items: center;
  }

  .highlight-card {
      width: 90%;
  }
}
/* heighlight section end */

/* Global Styles */

/* Section 1: Grid Layout */
.erectra-services {
  padding: 50px 20px;
}

.erectra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.erectra-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.erectra-card:hover {
  transform: translateY(-5px);
}

.erectra-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.erectra-content h3{
  white-space: nowrap;
}
/* Section 2: Full-Width Feature */
.erectra-feature {
  background: url('feature-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.erectra-feature-text {
  max-width: 800px;
  margin: auto;
}

.erectra-feature h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.erectra-feature p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Section 3: Flip Cards */
.erectra-flip-section {
  padding: 50px 20px;
  background: #fff;
}

.erectra-flip-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.erectra-flip-card {
  width: 250px;
  height: 150px;
  perspective: 1000px;
}

.erectra-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.erectra-flip-card:hover .erectra-flip-inner {
  transform: rotateY(180deg);
}

.erectra-flip-front,
.erectra-flip-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.erectra-flip-front {
  background:var(--black);
  color: white;
  border-radius: 10px;
}

.erectra-flip-back {
  background:var(--color-primary);
  color: white;
  transform: rotateY(180deg);
  border-radius: 10px;
}

/* Button */
.erectra-btn {
  background:var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.erectra-btn:hover {
  background:var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .erectra-grid {
      grid-template-columns: 1fr;
  }

  .erectra-flip-container {
      flex-direction: column;
      align-items: center;
  }
}

/* Erectra Gentech Innovation Section */
.gentech-innovation-section {
  background-color:#f147210e; /* Soft background */
  padding: 50px 0;
}

/* Image Styling */
.gentech-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Text Styling */
.gentech-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.gentech-intro {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.gentech-details {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

/* List Styling */
.gentech-list {
  padding-left: 20px;
  list-style-type: disc;
}

.gentech-list li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--black);
}

/* Final Call to Action */
.gentech-question {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #111;
}

/* Button */
.gentech-btn {
  display: inline-block;
  background: var(--color-primary); /* Deep green */
  color: var(--white);
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background 0.3s;
}

.gentech-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gentech-innovation-section .row {
      text-align: center;
  }

  .gentech-img {
      margin-bottom: 20px;
  }
}



  /*================================================== */

  /* ABOUT US PAGE CSS */


/* About Header */
.about-header {
  background-image: url('/assets/images/aboutBanner.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary);
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color:var(--white);
}

.about-header .btn {
  background-color: var(--color-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  display: inline-block;
}

.about-header .btn:hover {
  background-color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-header {
      height: 40vh;
      background-position: center;
      padding: 20px;
  }

  .about-header h1 {
      font-size: 2rem;
  }

  .about-header .btn {
      font-size: 0.9rem;
      padding: 8px 16px;
  }
}

.introduction p{
  text-align:justify;
}

.director p{
  text-align:justify;
}
/* goal oriented team start */
.goal-team {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Team Card */
.team-card {
  background: var(--black);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-5px);
}

/* Team Image */
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--yellow);
}

.team-card h3 {
  color: var(--yellow);
}

/* Team Note */
.team-note {
  margin-top: 20px;
  font-size: 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }

  .team-card {
    padding: 15px;
  }

  .team-img {
    width: 100px;
    height: 100px;
  }

  .team-card h3 {
    font-size: 24px;
    color: var(--yellow);
  }

  .team-card p {
    font-size: 16px;
  }
}
/* --------------------------------------------------------- */

/* Timeline Section */
.timeline-section {
  background: #f8f9fa;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.timeline-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.timeline-section .section-intro {
  font-size: 1.2rem;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 50px;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background:var(--color-primary);
  z-index: 1;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 45%;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50px;
}

/* Timeline Dot */
.timeline-dot {
  width: 20px;
  height: 20px;
  background:var(--color-primary);
  border: 4px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.timeline-content .member-name {
  font-weight: 600;
  color:var(--color-primary);
}

/* Responsive Styling */
@media (max-width: 992px) {
  .timeline-content {
    width: 48%; /* Slightly wider for mid-sized screens */
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    flex-direction: column !important;
    text-align: left !important;
    margin-bottom: 40px; /* Reduced margin for better spacing */
  }

  .timeline-content {
    width: 85% !important; /* Adjusted width for better fit */
    margin: 20px 0 20px 50px !important; /* Align content with dot */
    padding: 15px; /* Reduced padding for smaller screens */
  }

  .timeline-dot {
    left: 20px;
    transform: none;
  }

  .timeline-section .section-title {
    font-size: 2rem;
  }

  .timeline-section .section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .timeline-content h3 {
    font-size: 1.3rem; /* Slightly smaller heading */
  }

  .timeline-content p {
    font-size: 0.95rem; /* Adjusted for readability */
  }
}

@media (max-width: 576px) {
  .timeline-section {
    padding: 40px 0; /* Reduced padding for smaller screens */
  }

  .timeline-content {
    width: 90% !important; /* Maximum width for very small screens */
    margin: 15px 0 15px 40px !important; /* Adjusted margin */
  }

  .timeline-line {
    left: 15px;
  }

  .timeline-dot {
    left: 15px;
    width: 16px; /* Smaller dot */
    height: 16px;
    border-width: 3px;
  }

  .timeline-section .section-title {
    font-size: 1.8rem;
  }

  .timeline-section .section-intro {
    font-size: 0.9rem;
  }
}

/* Leadership Section */
.leadership-section {
  background: #ffffff;
  padding: 60px 0;
  color: #333333;
}

/* Leader Item */
.leader-item {
  margin-bottom: 40px;
  padding: 20px;
  border-left: 4px solid var(--color-primary);
  background: #f8f9fa;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.leader-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.leader-role {
  font-size: 1.5rem;
  font-weight: 600;
  color:var(--color-primary);
  margin-bottom: 5px;
}

.leader-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
}

.leader-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

/* Future Growth Section */
.growth-section {
  background: #f8f9fa;
  padding: 40px 0;
  text-align: center;
}

.growth-section p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .leader-role {
    font-size: 1.3rem;
  }

  .leader-name {
    font-size: 1.2rem;
  }

  .leader-description {
    font-size: 0.95rem;
  }

  .growth-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .leadership-section {
    padding: 40px 0;
  }

  .leader-item {
    padding: 15px;
    margin-bottom: 30px;
  }

  .growth-section {
    padding: 30px 0;
  }
}










  /* study center start */

  /* Coaching Section */
.coaching-section {
  background:#fadd002f; /* Soft background */
  padding: 50px 0;
}

/* Image Styling */
.coach-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Text Styling */
.intro-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.coaching-details {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

/* List Styling */
.coaching-list {
  padding-left: 20px;
  list-style-type: disc;
}

.coaching-list li {
  font-size: 1rem;
  margin-bottom: 8px;
  color:var(--black);
}

/* Final Call to Action */
.coaching-question {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #111;
}

/* Button */
.cta-btn {
  display: inline-block;
  background:var(--color-primary); /* Deep green */
  color: var(--white);
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background:var(--black);
  color:var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .coaching-section .row {
      text-align: center;
  }

  .coach-img {
      margin-bottom: 20px;
  }
}


/* =================================== */


/* service page css start */

.serviceHeader{
  height:100vh;
  background-image: url('/assets/images/serviceHeader.png');
  background-position:center;
  background-attachment:fixed;
  background-repeat: no-repeat no-repeat;
  background-size: cover;
}
/* .service_img_container {
 
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.service_img_container img {
  height: 100%;
  object-fit: cover;
}


.service_img_container{
  margin-right: -150px;
  clip-path: circle(72.6% at 85% 60%);
}


/* Waht makes us differnt */

h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color:var(--color-primary);
  text-align: center;
}

p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  padding-left: 20px;

}

li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color:var(--color-primary);
}

li + p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 20px;
  line-height: 1.5;
}


/* diagnostic_testing */
.diagnostic_testing {
  padding: 50px 15px;
  border-radius: 15px;
}
.testing_content {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testing_content:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.testing_content h3 {
  font-family: lato;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testing_content p {
  font-size: 16px;
  font-family:lato;
}
/* diagnostic_testing */


/* ================contact page css =======================*/
.contact-header {
  background-color: var(--color-primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  width:100%;
  height:70vh;
  display:flex;
  align-items:center;
  justify-content: center;
  flex-direction:column;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  text-align: center;
}

.section-title {
  text-align: center;
  margin: 40px 0;
  color: var(--color-primary);
}

.contact-info {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;

}

.contact-form {
  background-color:var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary {
  background-color: var(--yellow);
  border: none;
  transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
  background-color: var(--color-primary);
}

.map-section iframe {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* gallery page css start */

/* Gallery Section */

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  background: url('/assets/images/header2.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 25px;
  background:var(--color-primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background: #e67e22;
  color: #ffffff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-content .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}
.gallery-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.gallery-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.gallery-section .section-intro {
  font-size: 1.2rem;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 40px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .gallery-section .section-title {
    font-size: 2rem;
  }

  .gallery-section .section-intro {
    font-size: 1rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-item img {
    height: 180px;
  }

  .gallery-overlay p {
    font-size: 0.9rem;
  }
}