@import "tailwindcss";

/* ========== GLOBAL RESPONSIVE SETTINGS ========== */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ========== NAVBAR ========== */
.pic {
  height: auto;
  width: 48px;
}

.navbar {
  border: 2px solid white;
  outline: none;
  background-color: white;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0px 6px 15px 0px #4F9EFF40;
}

.top-bar {
  padding: 10px 15px;
  width: 100%;
  margin: 0 auto;
}

.click {
  box-shadow: 0px 6px 15px 0px #4F9EFF40;
  width: 124px;
  height: 50px;
  border-radius: 10px;
}

.home {
  color: #49C0B6;
}

.opo {
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px;
  }

  .navbar .container {
    flex-direction: column;
    padding: 15px;
  }

  .pic {
    margin-bottom: 15px;
    margin-left: 0;
  }

  .opo {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .opo a {
    display: block;
    margin: 10px 0;
    padding: 8px 0;
  }

  .click {
    width: 100%;
    margin-top: 15px;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin-top: 30px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  margin: 20px auto;
  max-width: 100%;
  color: #9e9fa0;
  font-size: 14px;
  line-height: 1.6;
}

.btn-connect {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(79, 158, 255, 0.25);
  text-decoration: none;
  color: #000222;
  font-weight: 600;
  font-size: 15px;
  margin: 20px 0;
}

.circle-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 30px auto;
}

.hero-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.hero-icons img {
  padding: 8px;
  position: absolute;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #E0E7F2;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-icon img {
  width: 50px;
  height: 50px;
  padding: 8px;
  border: 2px solid #E0E7F2;
  border-radius: 50%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Tablet Hero */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 60px 40px;
  }

  .hero-text {
    flex: 1;
    padding-right: 40px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .circle-wrapper {
    flex: 0 0 300px;
    margin: 0;
  }
}

/* Desktop Hero */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 90px;
  }

  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .circle-wrapper {
    width: 350px;
    height: 350px;
  }
}

/* ========== SERVICES SECTION ========== */
.section {
  text-align: center;
  padding: 40px 20px;
}

.section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1123;
  margin: 20px 0;
}

.section h2 span {
  color: #49c0b6;
}

.section p {
  color: #5e5e5e;
  max-width: 100%;
  margin: 15px auto;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 0 15px;
}

.card {
  background: #E5E5E5;
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 6px 20px rgba(0, 0, 1, 0.05);
}

.card h3 {
  color: #0f1123;
  text-align: start;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.card p {
  text-align: start;
  font-size: 14px;
  line-height: 1.5;
}

.card img {
  margin-top: 20px;
  width: 100%;
  max-width: 245px;
  height: auto;
}

.container-service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.green-line {
  height: 2px;
  width: 40px;
  background-color: #49c0b6;
}

/* Meticulous Record Section */
.meticulous-section {
  width: 95%;
  margin: 30px auto;
  background-color: #E5E5E5;
  border-radius: 20px;
  padding: 30px 20px;
}

.meticulous-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.meticulous-text h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.meticulous-text p {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.meticulous-image {
  width: 100%;
  max-width: 300px;
}

/* Tablet Services */
@media (min-width: 768px) {
  .section {
    padding: 60px 40px;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 300px;
    max-width: 400px;
  }

  .meticulous-content {
    flex-direction: row;
    text-align: left;
  }

  .meticulous-text {
    flex: 1;
    text-align: left;
  }

  .meticulous-text p {
    text-align: left;
  }

  .meticulous-image {
    flex: 0 0 200px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 40px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
}

.testimonials-section h2 span {
  color: #49c0b6;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  background-color: #f9f9ff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: auto;
}

.my-body {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 6px 15px 0px #4F9EFF40, -5px 2px 15px 0px #FFFFFF;
  background-color: #fff;
  margin-bottom: 15px;
}

.client-name {
  font-weight: 700;
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  flex-grow: 1;
}

.container-servicr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.green-lines {
  height: 3px;
  width: 50px;
  background-color: #49c0b6;
}

.trio {
  margin-bottom: 4px;
  color: #49c0b6;
  font-size: 1rem;
}

/* Remove negative margins for mobile */
.testimonial-card.ele {
  margin-top: 0 !important;
}

.bnb {
  margin-bottom: 0 !important;
}

/* Tablet Testimonials */
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== BLOG/MISSION ========== */
.blog {
  padding: 40px 20px;
}

.blog h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
  font-weight: 700;
}

.blog h1 em {
  color: #49c0b6;
  font-weight: 700;
  font-style: normal;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
  text-align: center;
}

.faq-wrapper {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.faq-container {
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 6px 15px 0px #4F9EFF40, -5px 2px 15px 0px #FFFFFF;
  padding: 25px;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 6px 15px 0px #4F9EFF40, -5px 2px 15px 0px #FFFFFF;
}

.faq-answer {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.see-all-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}

.see-all {
  font-weight: bold;
  color: black;
  padding: 12px 25px;
  font-size: 16px;
  background: #fff;
  border: none;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0px 6px 15px 0px #4F9EFF40, -5px 2px 15px 0px #FFFFFF;
  text-decoration: none;
  display: inline-block;
}

/* ========== CONTACT FORM ========== */
.stay {
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
}

.stay h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.stay h1 em {
  color: #49c0b6;
  font-style: normal;
}

.stay p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-input,
.custom-textarea {
  width: 100%;
  background-color: #f9fafb;
  border: none;
  outline: none;
  font-size: 14px;
  color: #111827;
  box-shadow: 0px 6px 15px 0px #4F9EFF40, -5px 2px 15px 0px #FFFFFF;
  border-radius: 18px;
  display: block;
  margin-bottom: 20px;
}

.custom-input {
  height: 60px;
  padding: 15px 20px;
}

.custom-textarea {
  height: 150px;
  padding: 15px 20px;
  resize: none;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
  color: black;
  opacity: 1;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
}

/* ========== FOOTER ========== */
.footer-body {
  margin: 0;
  font-family: Arial, sans-serif;
}

footer {
  padding: 30px 20px;
  color: #5c5c5c;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  gap: 15px;
  text-align: center;
}

.footer-top div {
  flex: 1;
  min-width: 200px;
  margin: 5px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #0d0c22;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

/* Tablet Footer */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }

  .footer-bottom p {
    text-align: left;
  }
}

/* ========== EXTRA SMALL DEVICES ========== */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .circle-wrapper {
    width: 250px;
    height: 250px;
  }
  
  .btn-connect {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 20px;
  }
}

/* ========== LARGE DESKTOP ========== */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}