:root {
  --primary:  #1a7b88;
  --secondary: #f4fbfc;
  --dark: #2d3436;
  --yello: #f6c90e;
  --text-color: #333;
}






/*========================================Hero-Section==================================================*/
.hero-section {
  padding: 80px 0;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #eaf6f8;
  max-width: 520px;
}

.hero-btn {
  background-color: var(--yello);
}



/* Video Box */
.video-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
  .herotext{
    text-align: center !important;
  }

  .hero-section {
    text-align: center !important;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}
/*//////////////////////////////////////////About-&-Products///////////////////////////////////////////////////////////////////*/

/* Container */
.tab-container {
  max-width: 1100px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Tab Menu */
.tab-menu {
  display: flex;
  background: #f4f4f4;
  border-bottom: 1px solid #ddd;
}

/* Buttons */
.tab-button {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
}

/* Hover */
.tab-button:hover {
  background: #e9e9e9;
  color: #000;
}

/* Active Tab */
.tab-button.active {
  background: #1a7b88; /* change to your brand color */
  color: #ffffff;
  font-weight: 600;
}

/* Content Area */
.tab-content {
  padding: 30px;
}

/* Tab Pane */
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

/* Active Pane */
.tab-pane.active {
  display: block;
}

/* Headings */
.tab-pane h3 {
  margin-bottom: 10px;
  color: #1a7b88;
}

/* Text */
.tab-pane p {
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .tab-menu {
    flex-direction: column;
  }

  .tab-button {
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
}




/* //////////////////////////////////////////Vision-Mition/////////////////////////////////////////////////////////// */

.vision-mission-section {
  width: 100%;
  overflow: hidden;
}

.vm-box {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.vision {
  background-image: url("../img/0.jpg"); /* replace */
}

.mission {
  background-image: url("../img/2.jpg"); /* replace */
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 123, 136, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.vm-overlay h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.vm-content {
  border: 2px solid #fff;
  padding: 30px;
  max-width: 420px;
}

.vm-content p {
  color: #fff;
  font-size: 1.09rem !important;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-box {
    min-height: 380px;
  }

  .vm-overlay h2 {
    font-size: 2.2rem;
  }

  .vm-content {
    padding: 20px;
  }
}
