/* styles.css */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #3b82f6;
    --text: #0f172a;
    --text-light: #64748b;
    --background: #ffffff;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
    scroll-behavior: smooth;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--background);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background: white; 
    /* it is also good rgba(255, 255, 255, 0.95)  */
    backdrop-filter: blur(4px);
}
.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 2.3rem;
    font-weight: 700;
    color:goldenrod;
}
.nav-logo img {
    width: 66px;
    height: 42px;
    object-fit: cover;
}
.nav-logo .accent {
    color: var(--primary);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-item a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-item a:hover,
.nav-item a.active {
    color: var(--primary);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}
.bar, .bar::before, .bar::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    left: 0;
}

.bar {
    top: 50%;
    transform: translateY(-50%);
}

.bar::before {
    top: -8px;
}

.bar::after {
    bottom: -8px;
}

.hamburger.active .bar {
    background: transparent;
}

.hamburger.active .bar::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active .bar::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 100;
    }
    .nav-elements {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--background);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition);
        visibility: hidden;
    }
    .nav-elements.active {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .nav-item a {
        font-size: 1.25rem;
    }
}
@media (max-width: 480px) {
  .nav-logo img {
    width: 83px;
    height: 53px;
    object-fit: cover;
}
.nav-logo {
  font-size: 1rem;
}
.nav-container span{
  font-size: 1rem;
}
}
  /* Hero Section */
  .hero {
    background: url('/about/imagesaboutus/jig.avif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000000;
  }
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .cta {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
  }
  .cta:hover {
    background-color: #e64a19;
  }
  
  /* About Section */
 /* About Section Styles */
.about {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.about-container {
  display: flex;
  align-items: stretch; /* Ensure equal height for content and image */
  gap: 30px;
  flex-wrap: wrap;
}

.about-content, 
.about-image {
  flex: 1;
  min-width: 300px; /* Ensure good responsiveness on smaller screens */
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #004d4d;
  text-transform: uppercase;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image scales nicely */
  border-radius: 15px;
  box-shadow: 10px0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02); /* Subtle zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column; /* Stack items in a column */
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
  }
  .about-image img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 24px;
  }
  .about-content p {
    font-size: 12px;
  }
  .about-image img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  
  }
}
  /* Team Section */
  .team {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
  }
  .team h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .team-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .team-card {
    perspective: 1000px;
    width: 250px;
    height: 300px;
  }
  .team-card .card-front,
  .team-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s;
  }
  .team-card .card-front {
    background-color: #fff;
  }
  .team-card .card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-card .card-back {
    background-color: #a56563;
    color: #fff;
    text-align: center;
    transform: rotateY(180deg);
    padding: 20px;
  }
  .team-card:hover .card-front {
    transform: rotateY(180deg);
  }
  .team-card:hover .card-back {
    transform: rotateY(0);
  }
  .Coloredparagraph{
    color: black;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  /* Footer */
  footer {
    background-color: #004d4d;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  /* Map Section Styles */
.map-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 40px 15px;
  background-color: #000000;
}
.map-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Map Container Styles */
.map-container {
  flex: 1;
  min-height: 450px;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Contact Information Styles */
.contact-info {
  width: 300px;
  padding: 30px;
  background-color: #fff;
}
.contact-info h3 {
  color: #2c3e50;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.info-item i {
  color: #3498db;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.info-item p {
  color: #555;
  line-height: 1.5;
  font-size: 15px;
  margin: 0;
}
.business-hours {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.business-hours h4 {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 12px;
}
.business-hours p {
  color: #555;
  margin-bottom: 8px;
  font-size: 14px;
}
/* Tablet Responsive */
@media screen and (max-width: 900px) {
  .map-wrapper {
      flex-direction: column;
  }
  .contact-info {
      width: 100%;
  }
  .map-container {
      min-height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .map-section {
      padding: 20px 10px;
  }.map-container {
      min-height: 300px;
  } .contact-info {
      padding: 20px;
  }.contact-info h3 {
      font-size: 20px;
      margin-bottom: 20px;
  }.info-item {
      margin-bottom: 15px;
  }
}
@media screen and (max-width: 380px) {
  .map-section {
      padding: 15px 10px;
  } .contact-info {
      padding: 15px;
  }.map-container {
      min-height: 250px;
  }
}