/*
Theme Name: Psybuddy
Theme URI: https://example.com/psybuddy
Author: Your Name / Agency
Author URI: https://example.com
Description: Psybuddy custom theme converted from static HTML to dynamic WordPress theme.
Version: 1.0.0
Text Domain: psybuddy
*/

/* Home page opens*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.header-top {
  background: rgba(78, 205, 196, 0.9);
  padding: 5px 0;
  font-size: 14px;
  margin-left: auto;
  margin-right: 115px;
  width: 50%;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
}

.contact-info {
  display: inline;
  align-items: center;
  gap: 17px;
  flex-direction: row;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.main-header {
  background: white;
  padding: 15px 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 90%;
  margin: 0 auto;
  border-radius: 50px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
}

.logo-icon {
  width: 55px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.logo-icon img {
  width: 60px;
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

/* ===== Main Menu ===== */
.nav-menu {
  position: relative; /* important */
}

.nav-menu,
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  display: inline-block;
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 9px 6px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}
/* Dropdown arrow */
.nav-menu > li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}


/* ===== Dropdown ===== */
.nav-menu li ul {
  position: absolute;
  top: calc(100% + 12px);   /* 👈 pushes dropdown BELOW menu */
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 9999;

  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* Show dropdown */
.nav-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.nav-menu li ul li a {
  padding: 12px 18px;
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.nav-menu li ul li a:hover {
  background: #f6f6f6;
}

/* ===== Sub Dropdown ===== */
.nav-menu li ul li {
  position: relative;
}

.nav-menu li ul li ul {
  top: 0;
  left: 100%;
}


.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li a:hover {
  color: #4ecdc4;
}

.nav-menu li a::after {
  /*content: "▼";
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.7;*/
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-menu li a:hover {
  /*transform: scale(1.1);*/
  color: #4ecdc4;
}

.free-quote-btn {
  background: #4ecdc4;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.free-quote-btn:hover {
  background: #44a08d;
}

/* === Mobile Sidebar Setup === */
.sdbar-mobile-menu-btn,
.sdbar-overlay,
.sdbar-sidebar {
  display: none;
  /* hidden by default on desktop */
}


/*CSS of Ad mobile menu*/
/* HIDE MOBILE ELEMENTS ON DESKTOP */
.menu-toggle,
.mobile-menu {
  display: none;
}

/* SHOW MOBILE MENU + HAMBURGER ONLY BELOW 992px */
@media (max-width: 992px) {

  .menu-toggle {
    display: flex; /* or block */
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    /*z-index: 9999;*/
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
  }

  /* Show mobile slide menu */
  .mobile-menu {
    display: block;
  }

  /* Hide desktop nav */
  .nav-menu,
  .nav-actions {
    display: none;
  }
 .close-menu{position: absolute;
    right: 43px;
    top: 17px;
    font-size: 29px;
    background: #5fd2ca4d;
    border: 1px solid #5fd2ca4d;
    border-radius: 36px;
    padding: 0px 8px 0px 8px;} 
  
  
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 20px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 9998;
}

.mobile-menu.open {
  right: 0;
}
/*CSS of Ad mobile menu*/



.hero-section {
  background: #fff;
  padding: 30px 0 100px;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 2;
  position: relative;
}

.satisfaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ecdc4;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: #4ecdc4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.search-container {
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  align-items: center;
  max-width: 500px;
}

.search-input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  outline: none;
  border-radius: 40px;
}

.category-select {
  border: none;
  padding: 15px 20px;
  background: none;
  outline: none;
  color: #666;
  cursor: pointer;
}

.search-btn {
  background: #4ecdc4;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 17px;
}

.search-btn:hover {
  background: #44a08d;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card:hover .placeholder-content {
  bottom: 50%;
  /* move to middle */
  transform: translateY(50%);
  /* perfectly center vertically */
}

.image-card:nth-child(1) {
  transform: translateY(20px);
  background-image: url("img/online-professional.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.image-card:nth-child(2) {
  background-image: url("img/Online Consultation.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.image-card:nth-child(3) {
  background-image: url("img/Research-Learning.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.image-card:nth-child(4) {
  transform: translateY(20px);
  background-image: url("img/AI-Powered.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.placeholder-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  transition: bottom 0.5s ease;
  padding-bottom: 40px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 180'><path d='M60 10 10 60v60l50 50h630l50-50V60l-50-50H60z' fill='%234ECDC4'></path></svg>") no-repeat center / cover;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/*About Style starts */
.about-container {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  min-height: 50vh;
  gap: 60px;
}

.about-image-section {
  flex: 1;
  position: relative;
  animation: slideInLeft 1s ease-out;
}

.about-image-section img {
  width: 500px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.about-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-main-image:hover {
  transform: translateY(-10px);
}

.about-floating-elements {
  position: absolute;
  top: 20%;
  right: -3%;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
  opacity: 0.8;
}

.about-floating-elements::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: float 2s ease-in-out infinite reverse;
}

.about-content-section {
  flex: 1;
  animation: slideInRight 1s ease-out;
}

.about-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(78, 205, 196, 0.1);
  color: #4ecdc4;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-about-tag::before {
  content: "✦";
  font-size: 16px;
}

.about-about-tag h1 {
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.about-description {
  font-size: 18px;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
  margin: 0 auto;
}

.about-button-container {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.about-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 50%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.about-btn:hover::before {
  left: 100%;
}

.about-btn-primary {
  background: linear-gradient(45deg, #4ecdc4, #4ecdc4);
  color: white;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.about-btn-secondary {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  color: white;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.about-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(116, 185, 255, 0.6);
}

.about-btn::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-btn:hover::after {
  transform: translateX(5px);
}

.hero-text>* {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-text>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-text>*:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-text>*:nth-child(4) {
  animation-delay: 0.6s;
}

.image-card {
  animation: fadeInUp 0.8s ease forwards;
}

.image-card:nth-child(2) {
  animation-delay: 0.2s;
}

.image-card:nth-child(3) {
  animation-delay: 0.4s;
}

.image-card:nth-child(4) {
  animation-delay: 0.6s;
}

.about-background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatBackground 6s ease-in-out infinite;
}

.about-shape-1 {
  width: 200px;
  height: 200px;
  background: #4ecdc4;
  top: 10%;
  left: 80%;
  animation-delay: -2s;
}

.about-shape-2 {
  width: 150px;
  height: 150px;
  background: #ff6b6b;
  top: 70%;
  left: 10%;
  animation-delay: -4s;
}

.about-shape-3 {
  width: 100px;
  height: 100px;
  background: #74b9ff;
  top: 30%;
  left: 5%;
  animation-delay: -1s;
}

.abt-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.abt-points li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* Custom icon bullet */
.abt-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ecec5;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* Smooth entrance animation */
.abt-points li {
  opacity: 0;
  transform: translateX(-10px);
  animation: fadeList 0.6s ease forwards;
}

.abt-points li:nth-child(1) {
  animation-delay: 0.1s;
}

.abt-points li:nth-child(2) {
  animation-delay: 0.2s;
}

.abt-points li:nth-child(3) {
  animation-delay: 0.3s;
}

.abt-points li:nth-child(4) {
  animation-delay: 0.4s;
}

.abt-points li:nth-child(5) {
  animation-delay: 0.5s;
}

.abt-points li:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeList {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mentors style strats here */
.mentor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.mentor-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.mentor-logo {
  color: #4ecdc4;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mentor-star {
  color: #4ecdc4;
  font-size: 20px;
}

.mentor-main-title {
  color: #333;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

.mentor-mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  align-items: center;
  padding-bottom: 50px;
}

.mentor-mentor-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: mentor-fadeInUp 0.6s ease forwards;
}

.mentor-mentor-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mentor-mentor-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mentor-mentor-image {
  position: relative;
  flex-shrink: 0;
}

.mentor-mentor-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/*.mentor-mentor-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #4ecdc4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}*/

.mentor-mentor-info {
  flex: 1;
  justify-content: center;
  display: grid;
}

.mentor-mentor-name {
  color: #333;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.mentor-role-wrapper {
  text-align: center;
  /* ✅ Centers the inline-block child */
}

.mentor-mentor-role {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0.2em 1em;
  border-radius: 6px;
  
  /*background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 180'><path d='M740 160c-404-22.1-338.3-21.5-730 0l30-70-30-70c404 22.1 338.3 21.5 730 0l-30 70 30 70Z' fill='%234ECEC5'></path></svg>")
    no-repeat center / cover;*/
}

.mentor-mentor-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mentor-action-button {
  display: flex;
  align-items: center;
  padding: 8px 0px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mentor-enquire-btn {
  background: #4ecdc4;
  color: white;
  width: 150px;
  text-align: center;
  justify-content: center;
}

.mentor-enquire-btn:hover {
  background: #45b7aa;
  transform: translateX(5px);
}

.mentor-lessons-btn {
  background: #4ecdc4;
  color: white;
  width: 150px;
}

.mentor-lessons-btn:hover {
  background: #45b7aa;
  transform: translateX(5px);
}

.mentor-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mentors style ends here */

/* Intern Opp style starts here */
.intrn-opp-container {
  /* max-width: 1400px;*/
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60vh;
  gap: 40px;
  background: linear-gradient(135deg, #1e7b6b 0%, #2d8f7f 50%, #3da394 100%);
}

.intrn-opp-main-title {
  color: #fff;
}

.intrn-opp-left-section {
  flex: 1;
  max-width: 500px;
}

.intrn-opp-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  /*align-items: center;
  position: relative;*/
}

.intrn-opp-person-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intrn-opp-person {
  width: 400px;
  height: 500px;
  background: url("img/Internship-2.jpg");
  position: relative;
  right: -100px;
  top: 0px;
  object-fit: cover;
  background-size: cover;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.intrn-opp-features-list {
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.intrn-opp-features-list ul {
  list-style: none;
  color: #fff;
}

.intrn-opp-features-list li {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
}

.intrn-opp-features-list li::before {
  content: "✓";
  margin-right: 12px;
  color: #4ade80;
  font-weight: bold;
  font-size: 18px;
}

.intrn-opp-pricing-card {
  position: absolute;
  right: -250px;
  top: 15%;
  background: rgba(30, 35, 50, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intrn-opp-pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.intrn-opp-pricing-header h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.intrn-opp-trial-text {
  font-size: 22px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 20px;
}

.intrn-opp-pricing-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.intrn-opp-pricing-option:hover {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

.intrn-opp-option-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: white;
}

.intrn-opp-option-price {
  font-size: 14px;
  color: #94a3b8;
}

.intrn-opp-radio-button {
  width: 20px;
  height: 20px;
  border: 2px solid #60a5fa;
  border-radius: 50%;
  position: relative;
}

.intrn-opp-radio-button.intrn-opp-checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #60a5fa;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intrn-opp-main-content {
  margin-bottom: 40px;
}

.intrn-opp-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
}

.intrn-opp-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intrn-opp-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e2e8f0;
  max-width: 450px;
}

.intrn-opp-cta-button {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intrn-opp-cta-button:hover {
  background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.intrn-opp-cta-button::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.intrn-opp-cta-button:hover::after {
  transform: translateX(3px);
}

/* Intern Opp style ends here */
/* Blog sec opens here*/

/* Blog sec closed here */

/* FAQ Section */

.faq-section {
  padding: 80px 20px;
  /* max-width: 1400px;*/
  margin: 0 auto;
  background: linear-gradient(135deg, #1a4d47 0%, #2d6b5f 50%, #3d7c6f 100%);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 1200px;
  margin: 0 auto;
}

.faq-left {
  padding-right: 20px;
}

.faq-badge {
  display: inline-block;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 500;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
}

.faq-description {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-description a {
  color: #4ade80;
  text-decoration: underline;
}

.faq-left-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-left-item:hover,
.faq-left-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
}

.faq-left-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #4ade80;
  transition: all 0.3s ease;
}

.faq-left-item.active .faq-toggle {
  background: #4ade80;
  color: #1a4d47;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #fff;
  line-height: 1.6;

}

.faq-left-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-right-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
}

.faq-right-item:hover,
.faq-right-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
}

.faq-right-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-right-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin: 0;
}

.faq-right-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-right-item.active .faq-answer {
  display: block;
}

/* Footer Section Opens*/
.ftr-footer {
  background-color: #1e4d44;
  color: white;
  padding: 60px 0 20px 0;
  position: relative;
  /* max-width: 1400px;*/
  margin: 0 auto;
}

.ftr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ftr-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ftr-footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.ftr-footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.ftr-social-links {
  display: flex;
  gap: 12px;
}

.ftr-social-link {
  width: 40px;
  height: 40px;
  background-color: #2d5f56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.ftr-social-link:hover {
  background-color: #3a7268;
  transform: translateY(-2px);
}

.ftr-social-link svg {
  width: 18px;
  height: 18px;
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.ftr-contact-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  color: #ffffff;
  flex-shrink: 0;
}

.ftr-contact-item span,
.ftr-contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}

.ftr-contact-item a:hover {
  color: #a0c4bd;
}

.ftr-quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
}

.ftr-quick-link {
  display: flex;
  align-items: center;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.ftr-quick-link:hover {
  color: #a0c4bd;
}

.ftr-quick-link::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #a0c4bd;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.ftr-footer-bottom {
  border-top: 1px solid #2d5f56;
  padding-top: 20px;
  text-align: center;
}

.ftr-footer-bottom p {
  color: #ffffff;
  font-size: 13px;
}

.ftr-scroll-to-top {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.ftr-scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.ftr-scroll-to-top svg {
  width: 20px;
  height: 20px;
  color: #1e4d44;
}

/* Footer Section Opens*/
/* Home page closes*/

/* About page opens*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Banner */
.about-banner {
  background-image: url("https://growwnpartner.com/psybuddy/wp-content/uploads/2026/02/Lets-figure-it-out-together.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-color: #000;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-banner-content {
  margin: 0 auto;
  padding: 0 2rem;
  width: 94%;
}

.about-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-link {
  color: #f39c12;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid #f39c12;
  border-radius: 25px;
  background: rgba(243, 156, 18, 0.1);
  transition: all 0.3s ease;
}

.about-link:hover {
  background: #f39c12;
  color: white;
  transform: translateY(-2px);
}

.about-sep {
  color: #f39c12;
  font-weight: bold;
  font-size: 1.2rem;
}

/* About Content Section */
.about-sec {
  background: #f8f9fa;
  z-index: 0;
}

.about-container {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-badge {
  position: absolute;
  top: 21px;
  left: -38px;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: about-pulse 2s infinite;
}



@keyframes about-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.about-text {
  padding: 1rem 0;
  position: relative;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.crew-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 30px;
}

.about-welcome {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
  font-style: italic;
  padding: 0.5rem 0.5rem;
  border-left: 4px solid #f39c12;
  padding-left: 1.5rem;
  background: rgba(243, 156, 18, 0.05);
}

.about-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
}

/*.about-desc {
  font-size: 1.05rem;
  color: #5d6d7e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}*/

/*.about-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #f39c12, transparent);
  opacity: 0.3;
}*/

.about-con {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Our Promises Section */
.about-pr {
  padding: 40px 20px;
  background: linear-gradient(135deg,
      rgb(26, 77, 71) 0%,
      rgb(45, 107, 95) 50%,
      rgb(61, 124, 111) 100%);
  display: flex;
  align-items: center;
}

.about-con {
  margin: 0 auto;
}

.about-hd {
  text-align: center;
  margin-bottom: 20px;
}

.about-t1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1;
}

.about-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 22px;
  margin-bottom: 20px;
}

.about-gr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.about-cd {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 15px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-cd::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.8s;
}

.about-cd:hover::before {
  left: 100%;
}

.about-cd:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.about-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(358deg, #235a5100, #ffffff2b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-t2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.about-desc-pr {
  color: rgba(255, 255, 255, 0.85);
  line-height: 22px;
  font-size: 1rem;
}

.about-feat {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-ch {
  width: 20px;
  height: 20px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  font-size: 12px;
}

/* About Me Section */
.about-sec {
  background: #f8fafc;
}

.about-mg {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-lc {
  padding-right: 20px;
}

.about-slbl {
  color: #059669;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-slbl::before {
  content: "★";
  margin-right: 10px;
  font-size: 1.2rem;
}

.about-h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.about-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-note {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

.about-sg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  grid-auto-rows: auto;
}

.about-scard {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #f1f5f9;
  height: fit-content;
}

.about-scard:nth-child(1) {
  grid-row: span 1;
}

.about-scard:nth-child(2) {
  grid-row: span 1;
  margin-top: 30px;
}

.about-scard:nth-child(3) {
  grid-row: span 1;
  margin-top: -20px;
}

.about-scard:nth-child(4) {
  grid-row: span 1;
  margin-top: 10px;
}

.about-scard:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.about-sicon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  padding: 8px;
}

.about-sicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-scard:nth-child(2) .about-sicon {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-scard:nth-child(3) .about-sicon {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-scard:nth-child(4) .about-sicon {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-stitle {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

/* What You'll Find Here Section */
.about-find-sec {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a4d47 0%, #2d6b5f 50%, #3d7c6f 100%);
  color: white;
  position: relative;
}

.about-find-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.about-find-h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.about-find-ul {
  list-style: none;
}

.about-find-li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.about-find-li::before {
  content: "●";
  color: #10b981;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-twrap {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 100%;
  height: 400px;
  display: flex;
}

.about-timg {
  width: 50%;
  height: 100%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-timg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.about-tcon {
  width: 50%;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-qm {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 6rem;
  color: #1f2937;
  opacity: 0.7;
  font-family: Georgia, serif;
}

.about-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
  background: #fbbf24;
  width: 120px;
  padding: 2px;
  border-radius: 15px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.about-star {
  color: #fff;
  font-size: 16px;
}

.about-ttxt {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-tauth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-ava {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.about-aname {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.about-afield {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
}

.about-nav {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-navbtn {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #1a4d47 0%, #2d6b5f 50%, #3d7c6f 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.about-navbtn:hover {
  background: rgba(0, 0, 0, 0.8);
}
/* About page closes*/

/* Contact page opens*/
/* Hero Banner */
.contctus-sec-main {
    background-image: url("https://growwnpartner.com/psybuddy/wp-content/uploads/2026/01/contact-us-1.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-color: #000;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  
}

.contctus-banner-content {
  margin: 0 auto;
  padding: 0 2rem;
  width: 94%;
}

.contctus-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.contctus-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contctus-link {
  color: #f39c12;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid #f39c12;
  border-radius: 25px;
  background: rgba(243, 156, 18, 0.1);
  transition: all 0.3s ease;
}

.contctus-link:hover {
  background: #f39c12;
  color: white;
  transform: translateY(-2px);
}

.contctus-sep {
  color: #f39c12;
  font-weight: bold;
  font-size: 1.2rem;
}


/* Co-founder section opens  */
/* --- GRID SYSTEM --- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 50px 0px;
  padding-top: 30px;
}

@media (max-width: 700px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
}

.cofounder-section {
  width: 1300px;
  margin: 0 auto;
}

/* --- CARD --- */
.profile-card {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 490px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
}

/* Hover lift */
.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.35);
}

/* Animated top gradient bar */
.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(190deg, #1e4d44, #41b5ad);
  transform: scaleX(0);
  transition: 0.4s ease;
}

.profile-card:hover::before {
  transform: scaleX(1);
}

/* --- LEFT IMAGE AREA (30%) --- */
.profile-left {
  flex: 0 0 30%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.profile-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.5s ease;
}

/* image zoom + remove grayscale on hover */
.profile-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Overlay fade effect */
.profile-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.profile-card:hover .profile-left::after {
  opacity: 1;
}

/* --- CONTENT AREA (70%) --- */
.profile-right {
  flex: 0 0 70%;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEXTS */
.profile-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
}

.profile-expertise {
  font-size: 1rem;
  margin: 0.5rem 0 0.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1e4d44, #41b5ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* Divider animation */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1e4d44, #41b5ad);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  transition: width 0.4s ease;
}

.profile-card:hover .divider {
  width: 110px;
}

.profile-about {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* Social links */
.founder-social-links {
  display: flex;
  justify-content: end;
  gap: 1rem;
  margin-top: 1rem;
}

.founder-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e4d44, #41b5ad);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.founder-social-link:hover {
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.community-cta {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 1.75rem;
  border-radius: 12px;
  background: #1e4d44;
  margin-top: 10px;
}

.community-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: #fff;
}

.cta-subtext {
  margin: 0 0 0rem;
  color: #fff;
}

.cta-line {
  margin: 0 0 0.85rem;
  color: #334155;
  line-height: 1.6;
}

.cta-link {
  color: #0ea5a4;
  text-decoration: none;
  margin-left: 0.35rem;
}

.cta-link:hover {
  text-decoration: underline;
}

.cta-message {
  margin: 0rem 0 1.25rem;
  color: #fff;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-secondary {
  padding: 0.6rem 2rem;
  border-radius: 25px;
  border: 1px solid #cbd5e1;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}


.cta-tagline {
  margin-left: auto;
  color: #64748b;
  font-size: 0.95rem;
  font-style: italic;
}

.btn-primary {
  padding: 0.6rem 2rem;
  border-radius: 25px;
  background: #4dcdc4;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* Co-founder section closed  */
.contctus-sec {

  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contctus-wrap {
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contctus-left {
  background: #4ecdc4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contctus-illus {
  position: relative;
  z-index: 2;
}

.contctus-phone {
  width: 200px;
  height: 350px;
  background: #2d3748;
  border-radius: 25px;
  border: 8px solid #1a202c;
  position: relative;
  transform: rotate(-5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contctus-screen {
  width: 100%;
  height: 280px;
  background: #4299e1;
  border-radius: 15px;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

.contctus-avatar {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: 3;
}

.contctus-head {
  width: 80px;
  height: 80px;
  background: #fbb6ce;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 10px;
}

.contctus-hair {
  width: 90px;
  height: 60px;
  background: #f6ad55;
  border-radius: 50px 50px 20px 20px;
  position: absolute;
  top: -20px;
  left: -5px;
}

.contctus-headset {
  width: 100px;
  height: 15px;
  background: #2d3748;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: -10px;
}

.contctus-headset::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #2d3748;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: -5px;
}

.contctus-body {
  width: 60px;
  height: 40px;
  background: #e53e3e;
  border-radius: 10px 10px 0 0;
  margin: 0 auto;
}

.contctus-books {
  position: absolute;
  top: 20px;
  left: -40px;
  transform: rotate(15deg);
}

.contctus-book {
  width: 80px;
  height: 10px;
  margin: 2px 0;
  border-radius: 2px;
  transform-origin: left;
}

.contctus-book:nth-child(1) {
  background: #667eea;
  transform: rotate(5deg);
}

.contctus-book:nth-child(2) {
  background: #f093fb;
  transform: rotate(-3deg);
}

.contctus-book:nth-child(3) {
  background: #fbb6ce;
  transform: rotate(8deg);
}

.contctus-book:nth-child(4) {
  background: #4299e1;
  transform: rotate(-5deg);
}

.contctus-grad {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: #764ba2;
  transform: rotate(20deg);
  border-radius: 5px;
}

.contctus-grad::before {
  content: "";
  width: 50px;
  height: 50px;
  background: #f6ad55;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 3px;
}

.contctus-grad::after {
  content: "";
  width: 30px;
  height: 4px;
  background: #f093fb;
  position: absolute;
  top: -5px;
  left: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 2px #667eea;
}

.contctus-email {
  position: absolute;
  bottom: 40px;
  right: -20px;
  width: 60px;
  height: 45px;
  background: #f6ad55;
  border-radius: 8px;
  transform: rotate(-15deg);
}

.contctus-email::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 25px solid #e53e3e;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 8px 8px;
}

.contctus-right {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contctus-title {
  font-size: 14px;
  color: #38a169;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contctus-head-txt {
  font-size: 48px;
  color: #2d3748;
  font-weight: 800;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 1.1;
}

.contctus-sub {
  color: #718096;
  font-size: 16px;
}

.contctus-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contctus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contctus-field {
  display: flex;
  flex-direction: column;
}

.contctus-input {
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 16px;
  background: #f7fafc;
  transition: all 0.3s ease;
  outline: none;
}

.contctus-input:focus {
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contctus-input::placeholder {
  color: #a0aec0;
}

.contctus-textarea {
  min-height: 120px;
  resize: vertical;
}

.contctus-btn {
  background: #4ecdc4;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  margin-top: 10px;
}

.contctus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 161, 105, 0.3);
}

.contctus-btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contctus-btn:hover::after {
  transform: translateX(5px);
}

.contctus-deco {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.contctus-deco1 {
  top: 22px;
  left: 3px;
  animation: float 6s ease-in-out infinite;
}

.contctus-deco2 {
  bottom: 1x;
  right: 3px;
  width: 60px;
  height: 60px;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* map section opens here */
.cont-map {
  background-image: url(img/map.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
}

/* contact page closes*/

/*Header My accounts regiter tab */
.mtp-header-actions{
  display:flex;
  gap:12px;
  align-items:center;
}

.mtp-account-dropdown{
  position:relative;
}

.mtp-account-toggle{
  cursor:pointer;
}

.mtp-account-menu{
  display:none;
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:180px;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
  z-index:9999;
}

.mtp-account-menu a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  color:#111;
  font-size:14px;
}

.mtp-account-menu a:hover{
  background:#f5f6f7;
}

.mtp-account-dropdown.open .mtp-account-menu{
  display:block;
}






/*Chatbot CSS */
/* Custom Chatbot Button */
/* #chatbot-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(78, 205, 196, 0.9);
  color: #ffffff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}*/

#chatbot-btn:hover {
  transform: scale(1.05);
}

/* HARD BLOCK Chatbase default launcher */
.chatbase-launcher,
#chatbase-bubble,
iframe[src*="chatbase"] {
 
}



/*Blog Detail Page Style*/

.theme-container.blog-single-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px;
}

.blog-single-featured img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-bottom: 22px;
}

.blog-single-title {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.blog-single-meta {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.blog-single-content {
  font-size: 16px;
  line-height: 1.8;
}

.blog-single-content p {
  margin-bottom: 16px;
}

.blog-single-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 26px;
  padding-top: 16px;
  font-size: 14px;
}

.blog-single-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-single-nav a {
  text-decoration: none;
  font-weight: 600;
}



/* Layout */
.blog-layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items:start;
}

@media (max-width: 992px){
  .blog-layout{ grid-template-columns:1fr; }
  .blog-sidebar{ order:2; }
}

/* Category / meta */
.blog-top-meta{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
  font-size:14px;
}
.blog-cat-label{
  font-weight:600;
  opacity:.75;
}
.blog-cat a{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}
.blog-cat a:hover{
  background:rgba(0,0,0,.1);
}

/* Featured image */
.blog-single-featured img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  margin: 0 0 18px 0;
}

/* Title & content */
.blog-single-title{
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.blog-single-meta{
  font-size:14px;
  opacity:.75;
  margin-bottom:18px;
}
.blog-single-dot{ padding:0 8px; }
.blog-single-content{
  font-size:16px;
  line-height:1.85;
}
.blog-single-content p{ margin-bottom:16px; }

/* Prev / Next */
.blog-post-nav{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(0,0,0,.08);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

@media (max-width: 640px){
  .blog-post-nav{ grid-template-columns:1fr; }
}

.blog-post-nav-item a{
  display:block;
  text-decoration:none;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: transform .08s ease, box-shadow .08s ease;
  font-weight:600;
}
.blog-post-nav-item a:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.blog-post-nav-item a span{
  display:block;
  margin-top:6px;
  font-weight:700;
}

/* Sidebar */
.blog-sidebar{
  position: sticky;
  top: 110px; /* adjust if your header height differs */
}
.sidebar-card,
.blog-sidebar .widget{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  margin-bottom:16px;
}
.blog-sidebar .widget-title{
  margin:0 0 12px;
  font-size:16px;
  font-weight:800;
}

/* Comment section */
.blog-comments-wrap{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(0,0,0,.08);
}

.comment-respond{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:18px;
  margin-top:16px;
}

.comment-respond h3{
  margin:0 0 12px;
  font-size:18px;
  font-weight:800;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
  width:100%;
  border:1px solid rgba(0,0,0,.14);
  border-radius:12px;
  padding:12px 12px;
  outline:none;
}

.comment-form textarea{ min-height:140px; }

.comment-form .form-submit input[type="submit"]{
  border:none;
  border-radius:12px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
}

.commentlist{
  list-style:none;
  padding:0;
  margin:0;
}

.commentlist .comment{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:14px;
  margin: 0 0 12px;
}
.comment-author{
  font-weight:800;
}
.comment-meta{
  font-size:12px;
  opacity:.7;
}

/*Blog Sidebar Search, post, category */

/* =========================
   Elegant Sidebar Widgets
   (Search, Recent Posts, Categories)
   ========================= */

.blog-sidebar .widget,
.sidebar-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  margin:0 0 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* Widget titles */
.blog-sidebar .widget-title,
.sidebar-card h4{
  margin:0 0 14px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.2px;
}

/* Remove default bullets + spacing */
.blog-sidebar .widget ul{
  list-style:none;
  padding:0;
  margin:0;
}
.blog-sidebar .widget ul li{
  margin:0;
  padding:10px 0;
  border-top:1px solid rgba(0,0,0,.06);
}
.blog-sidebar .widget ul li:first-child{
  border-top:none;
  padding-top:0;
}

/* Links */
.blog-sidebar .widget a{
  text-decoration:none;
  font-weight:600;
  line-height:1.5;
  display:inline-block;
  color: inherit;
  opacity:.9;
}
.blog-sidebar .widget a:hover{
  opacity:1;
  text-decoration:underline;
}

/* Recent Posts: make each item feel clickable */
.blog-sidebar .widget.widget_recent_entries ul li a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.03);
  transition: transform .08s ease, background .12s ease, box-shadow .12s ease;
}
.blog-sidebar .widget.widget_recent_entries ul li a:hover{
  background:rgba(0,0,0,.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  text-decoration:none;
}

/* Categories: show as pill/tag style */
.blog-sidebar .widget.widget_categories ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.blog-sidebar .widget.widget_categories ul li{
  border:none;
  padding:0;
}
.blog-sidebar .widget.widget_categories ul li a{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.05);
  font-size:13px;
  font-weight:700;
}
.blog-sidebar .widget.widget_categories ul li a:hover{
  background:rgba(0,0,0,.09);
  text-decoration:none;
}

/* Search widget */
.blog-sidebar .widget.widget_search form{
  display:flex;
  gap:10px;
  align-items:stretch;
}

.blog-sidebar .widget.widget_search label{
  display:none; /* hides "Search for:" label */
}

.blog-sidebar .widget.widget_search .search-field{
  flex:1;
  width:100%;
  border:1px solid rgba(0,0,0,.14);
  border-radius:14px;
  padding:12px 12px;
  outline:none;
  background:#fff;
}

.blog-sidebar .widget.widget_search .search-field:focus{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.blog-sidebar .widget.widget_search .search-submit{
  border:none;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}

/* Mobile: stack input/button nicely */
@media (max-width: 480px){
  .blog-sidebar .widget.widget_search form{
    flex-direction:column;
  }
  .blog-sidebar .widget.widget_search .search-submit{
    width:100%;
  }
}

.searchform input[type="text"]{border: 1px solid rgba(0, 0, 0, .08);  border-radius: 18px; padding: 11px;}
.searchform input[type="submit"]{    background: #4ecdc4;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    padding: 11px;
    color: white;
    cursor: pointer;
    font-weight: bold;}

