/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

header {
  background-color: #e5ebe6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 80px;
  margin-left: 15px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

.appointment-btn a {
  text-decoration: none;
  padding: 8px 15px;
  color: #10410b;
  border: 2px solid #10410b;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.appointment-btn a:hover {
  background-color: #10410b;
  color: #fff;
}

/* Toggle button for mobile */
.toggle-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      background-color: #f9fbff;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 10px;
      border-radius: 5px;
  }

  .nav-links.show {
      display: flex;
      z-index: 1000;
  }

  .toggle-btn {
      display: block;
  }
}

.container {
  display: flex;
  gap: 8px; 
}

.box {
  margin:auto;
  width: 200px;
  height: 250px;
  background-color: #207523;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.3s, background-color 0.3s;
}

.box:nth-child(even) {
  background-color: #205796;
}

.box:hover {
  transform: scale(1.1);
  background-color: #207523;
}

.box .title {
  font-size: 1.5em;
  font-weight: bold;
}

.box .content {
  margin-top: 10px;
  font-size: 0.9em;
}

/* Animations */
.from-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.from-right {
  animation: slideInFromRight 0.8s ease-out forwards;
}

.from-bottom {
  animation: slideInFromBottom 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Media query for devices with a max width of 768px (common breakpoint for tablets and mobile) */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack boxes vertically */
    align-items: center;   /* Center align boxes */
    gap: 15px;             /* Adjust the gap between boxes */
  }

  .box {
    width: 90%;            /* Reduce box width for smaller screens */
    height: auto;          /* Let height adjust automatically */
    padding: 20px;         /* Add some padding for better readability */
  }

  .box .title {
    font-size: 1.2em;      /* Adjust font size for smaller screens */
  }

  .box .content {
    font-size: 0.85em;     /* Adjust font size for smaller screens */
  }
}

/* about strat */
.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.about-us-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

.about-us-image {
  flex: 1;
  max-width: 800px;
  margin-top: 100px;
  margin: auto;
}

.about-us-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-us-content {
  flex: 2;
  padding: 20px;
}

.about-us-content h2 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 20px;
}

.about-us-content p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-us-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #166b19;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-us-content .btn:hover {
  background-color: #3e8e41;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-image {
    margin-bottom: 20px;
  }
}

/* about us ended */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.about-us-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

.about-us-image {
  flex: 1;
  max-width: 400px;
}

.about-us-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-us-content {
  flex: 2;
  padding: 20px;
}

.about-us-content h2 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 20px;
}

.about-us-content h3 {
  font-size: 1.5rem;
  color: #4CAF50;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-us-content p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-us-content ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555555;
}

.about-us-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-us-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-us-content .btn:hover {
  background-color: #3e8e41;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-image {
    margin-bottom: 20px;
  }
}
.experience-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-content {
  flex: 1;
  max-width: 600px;
  margin-right: 20px;
  animation: fadeInLeft 1.5s ease-in-out;
}

.experience-content h2 {
  font-size: 2rem;
  color: #2a2a2a;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.experience-content ul {
  list-style: none;
  padding: 0;
}

.experience-content li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.experience-content li::before {
  content: "•";
  font-size: 1.5rem;
  color: #5db075;
  position: absolute;
  left: 0;
  top: 0;
}

.experience-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
  animation: fadeInRight 1.5s ease-in-out;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .experience-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .experience-image img {
    width: 80%;
    margin: 0 auto;
  }
}
/* *********  */
main {
  padding: 2rem;
}

h2 {
  color: #00574b;
  margin-bottom: 1rem;
  text-align: center;
}

.category {
  margin-bottom: 2rem;
}

.category h3 {
  font-size: 1.8rem;
  color: #00796b;
  margin-bottom: 1rem;
  text-align: center;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.item {
  text-align: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.item img {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}

.item p {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.visit-us {
  background-color: #e0f2f1;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
}

.visit-us p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.visit-us a {
  color: #00796b;
  text-decoration: none;
  font-weight: bold;
}

.visit-us a:hover {
  text-decoration: underline;
}

footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer p {
  margin: 0;
}
.intro {
  text-align: center;
  background: linear-gradient(to right, #4caf50, #81c784);
  color: #fff;
  padding: 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro h1 {
  font-size: 2.5rem;
  margin: 0;
}

.intro p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
  

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
background-color: #f4f4f4;
padding: 40px;
}

.testimonial-item {
text-align: center;
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-bottom: 15px;
}

.testimonial-item blockquote {
font-size: 16px;
font-style: italic;
color: #555;
margin-bottom: 10px;
}

.testimonial-item h4 {
font-size: 18px;
color: #333;
}



.galaxy-row {
display: flex;
justify-content: center;
align-items: center;
gap: 10px; /* Space between images */
padding: 20px;
margin: auto;
}

.galaxy-row img {
margin: auto;
width: 30%; /* Adjust the size as needed */
border-radius: 10px;
border: 2px solid white;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}


.video-grid {
display: flex;
flex-wrap: wrap; /* Allows wrapping into rows */
justify-content: center;
gap: 20px; /* Space between iframes */
padding: 20px;
}

.video-grid iframe {
width: 30%; /* Adjust width to fit three videos per row */
height: 400px; /* Adjust height for a balanced look */
border-radius: 10px;
border: none;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Default for larger screens (already in your code) */

/* Medium screens (tablets, landscape phones) */
@media (max-width: 1024px) {
.galaxy-row img {
  width: 45%; /* Adjust size to fit two images per row */
}

.video-grid iframe {
  width: 45%; /* Adjust width to fit two videos per row */
  height: 300px; /* Adjust height proportionally */
}
}

/* Small screens (portrait phones) */
@media (max-width: 768px) {
.galaxy-row {
  flex-direction: column; /* Stack images vertically */
}

.galaxy-row img {
  width: 80%; /* Reduce size for smaller screens */
}

.video-grid iframe {
  width: 80%; /* Fit one video per row */
  height: 250px; /* Adjust height for smaller screens */
}
}

/* Extra small screens (very small phones) */
@media (max-width: 480px) {
.galaxy-row img {
  width: 90%; /* Further reduce size */
}

.video-grid iframe {
  width: 90%; /* Reduce video width */
  height: 200px; /* Adjust height */
}
}
.icon {
  margin: 0 10px;
  font-size: 40px;
  text-decoration: none;
  display: inline-block;
}

.instagram i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.facebook i {
  background: linear-gradient(45deg, #1877f2, #4c8bf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.youtube i {
  background: linear-gradient(45deg, #ff0000, #cc0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon:hover i {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}


/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.whatsapp-icon img {
  width: 28px;
  height: 28px;
}

/* Call Icon */
.call-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.call-icon img {
  width: 28px;
  height: 28px;
}