* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  background: #f8f8f8;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.image1{
    width: 50px;
    margin-right: 20px;
    margin-top: 5px;
    padding-top: 5px;
}
.img_1{
    background-color: white;
}
.service_IF{
    width: 90%;
    height: 50%;
}

.logo {
  font-size: 25px;
  font-weight: bold;
  color: #00B19B;
  align-items: center;
  margin-top: -9px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

nav ul li a:hover {
  color: #00B19B;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #00B19B;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.about {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}


/* ABOUT SECTION */
.about {
  background-color: #ffffff;
  padding: 70px 40px;
  text-align: center;
  color: #333;
}

.about h2 {
  font-size: 36px;
  color: #00B19B;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.about h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #00B19B;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.about p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  text-justify: inter-word;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    padding: 60px 20px;
  }

  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
    text-align: left;
  }
}


.team {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}
.logo a{
    text-decoration: none;
    color: #00B19B;
}

.member {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  max-width: 700px;
  width: 100%;
}

.member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #00B19B;
}

.member-info p {
  font-size: 16px;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {
  .member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member img {
    margin-bottom: 10px;
  }
}


/* Services */
.services {
  padding: 80px 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: #00B19B;
  margin-bottom: 50px;
  font-weight: 600;
}
.services h2::after{
    content: "";
  width: 60px;
  height: 3px;
  background-color: #00B19B;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}



.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
  border-top: 4px solid #00B19B;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 177, 155, 0.25);
}

.service_IF {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}


.card h3 {
  color: #00B19B;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* Clients */
.clients {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.client-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.client-box {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

/* Contact */
.contact {
  padding: 60px 40px;
  background: #f0f0f0;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.contact input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 10px 20px;
  background: #00B19B;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background: #008f7e;
}
p.top{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #353b3a;
}
.clients {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.clients h2 {
  font-size: 36px;
  color: #00B19B;
  margin-bottom: 40px;
}
.clients h2::after{
    content: "";
  width: 60px;
  height: 3px;
  background-color: #00B19B;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-card {
  background: #f8f8f8;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 177, 155, 0.15);
}

/* YouTube Client Styling */
.client-card.youtube {
  border-left: 4px solid #FF0000;
  text-decoration: none;
  color: #222;
}

/* Profile Client Styling */
.client-card.profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-card.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-card.profile h3 {
  margin: 0 0 5px 0;
  color: #00B19B;
}

.client-card.profile p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px;
  justify-items: center;
}

.client-card {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  transition: 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 177, 155, 0.2);
}

.client-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00B19B;
  margin-bottom: 10px;
}

.client-card p {
  margin: 6px 0;
  color: #444;
  font-size: 15px;
}

.client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.client-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.DI a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.DI a img{
    height: 30px;
    width: 30px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.DI a img:hover{
    filter: grayscale(0%);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-links img:hover {
  filter: grayscale(0%);
}

/* Profile Card (for basic clients) */
.profile-card {
  text-align: center;
}

.client-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 12px;
  object-fit: cover;
}


/* Responsive */
@media (max-width: 600px) {
  .client-card.profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client-card.profile img {
    margin-bottom: 10px;
  }
}
/* ===== Contact Form Section ===== */
.contact-section {
  background-color: #f5f5f5;
  padding: 70px 40px;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: #00B19B;
  margin-bottom: 40px;
  font-weight: 700;
}
.contact-section h2::after{
    content: "";
  width: 60px;
  height: 3px;
  background-color: #00B19B;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  width: 100%;
  outline: none;
  transition: border 0.3s;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #00B19B;
}

#contact-form textarea {
  resize: vertical;
  height: 120px;
}

#contact-form button {
  padding: 12px;
  background-color: #00B19B;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #009382;
}

/* ===== Footer Section ===== */
footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 50px 40px 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.footer-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00B19B;
}

.footer-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
}

.footer-contact {
  margin-top: 30px;
}

.footer-contact p {
  margin: 8px 0;
  color: #ccc;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #00B19B;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 28px;
  }

  #contact-form {
    padding: 0 10px;
  }

  .footer-content {
    text-align: center;
  }

  .footer-contact {
    margin-top: 20px;
  }
}
/* Loader Spinner inside Button */
.loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid #00B19B;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Status message below form */
.status-msg {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  color: green;
}

/* Hamburger Style */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00B19B;
}

/* Mobile Nav Style */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 220px;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding-top: 80px;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
    padding-left: 20px;
  }

  nav ul li a {
    font-size: 18px;
    color: #333;
  }

  .hamburger {
    display: block;
  }

  .nav-open {
    right: 0 !important;
  }
}
[data-aos] {
  transition-duration: 2s;
}
/* Typing effect styling */
.typewriter-text {
  font-size: 18px;
  color: #444;
  text-align: justify;
  text-justify: inter-word;
  white-space: pre-wrap;
  border-right: 2px solid #00B19B;
  min-height: 250px;
  overflow: hidden;
  animation: blink-caret 0.75s step-end infinite;
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00B19B; }
}
/* General Team Section Styling */
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Space between members */
  padding: 40px 20px;
  background-color: #f8f8f8;
  transition: opacity 0.3s ease; /* For smooth opacity change */
}

.member {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px; /* Fixed width for consistent sizing */
  /* Ensure member content flows correctly */
  display: flex; /* Use flexbox for member content */
  flex-direction: column; /* Stack image and info vertically */
}

.member:hover {
  transform: translateY(-8px); /* Subtle lift effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member img {
  width: 100%;
  height: 200px; /* Fixed height for consistent image size */
  object-fit: cover; /* Ensures image covers the area without distortion */
  border-bottom: 3px solid #00B19B; /* Accent color */
}

.member-info {
  padding: 20px;
  display: block;
  flex-grow: 1;
  opacity: 1 !important;
  visibility: visible !important;
  text-align: center; /* Ensure it's centered */
  /* Add max-width here if needed to constrain content for better wrapping */
  /* For example, if the card width is 250px, the info area might be 210px (250 - 2*20 padding) */
  /* max-width: 210px; /* Optional: adjust based on actual internal space */
  /* margin: 0 auto; /* Optional: center the info block if max-width is applied */
}

.member-info h3 {
  margin: 0 0 8px;
  color: #00B19B;
  font-size: 1.5em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2; /* Slightly reduce line height for names if they wrap */
}

.member-info p {
  margin: 0;
  color: #666;
  font-size: 1em;
  white-space: normal;
  word-break: break-word; /* CHANGE: Force word-break if 'normal' isn't enough */
  hyphens: auto;
  line-height: 1.3;
  /* Explicitly set a maximum width relative to its container to encourage wrapping */
  /* This is crucial if the browser's default behavior is not wrapping */
  max-width: 100%; /* Ensure it doesn't try to exceed its parent's width */
  text-align: center; /* Double-check alignment */
  display: block; /* Ensure it's a block element */
}


/* --- No changes needed for Modal CSS --- */
/* Modal Overlay Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top */
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Modal Content Styling */
.modal-content {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative; /* For positioning the close button */
  transform: scale(0.9); /* Initial smaller scale for animation */
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1); /* Scale up when active */
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2em;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-button:hover {
  color: #333;
}

.modal-member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* Circular image */
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #00B19B; /* Border for the photo */
}

.modal-member-name {
  font-size: 2em;
  color: #00B19B;
  margin-bottom: 10px;
}

.modal-member-position {
  font-size: 1.2em;
  color: #007bff; /* Highlight position */
  margin-bottom: 15px;
}

.modal-member-experience { /* NEW STYLE FOR EXPERIENCE */
  font-size: 1em;
  color: #777; /* Slightly different color for experience */
  margin-bottom: 15px; /* Spacing below experience */
  font-style: italic; /* Make it italic to distinguish */
}

.modal-member-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  text-align: left; /* Align description text to the left */
}
/* --- Add Media Query for potential responsiveness issues if they exist --- */
@media (min-width: 768px) { /* Adjust this breakpoint if needed */
  .member-info {
    /* Ensure these properties are applied on larger screens */
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

