/* ========== Global Reset ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Nunito", sans-serif;
  background: #f5f7fa;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========= Navbar ========= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
  background: #f5f7fa;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, padding 0.25s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.logo img:hover {
  transform: scale(1.04);
}

/* nav list */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #111827;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  padding: 6px 2px;
  transition: color 0.2s ease, transform 0.15s ease, text-shadow 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(165, 180, 252, 0.18);
}

/* Hide menu by default on mobile */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ✅ Responsive mobile nav toggle behavior */
@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    position: absolute;
    top: 70px;
    right: 8%;
    background: #fff;
    width: 220px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar a {
    padding: 10px 0;
    width: 100%;
    color: #111827;
  }
}

/* Small link hover fix */
.navbar ul li a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #000;
}

/* =========== Hero Section ========== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 0 10%;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 92%;
}

.hero-text {
  flex: 1 1 45%;
}

/* main name*/
.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #2563eb;
  margin-bottom: 35px;
  line-height: 1.05;
  text-align: center;
}

/* intro under title */
.hero-text p {
  font-family: "Nunito", sans-serif;
  color: #111827;
  margin-bottom: 20px;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
  opacity: 0.98;
  text-align: center;
}

/* ✅ Button Container */
.book-call-container {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

/* ✅ Unified Button Style */
.btn,
.book-call-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.2);
}

/* ✅ Hover effect - smooth lift */
.btn:hover,
.book-call-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.25);
}

/* ✅ On small screens, buttons stack */
@media (max-width: 700px) {
  .book-call-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn,
  .book-call-btn {
    width: fit-content;
    font-size: 0.95rem;
    padding: 9px 18px;
  }
}

.hero-image {
  flex: 10 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-placeholder {
  width: 280px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.35s ease;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.18);
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.5);
}

/* ========== Home Intro Section ========== */
.intro {
  text-align: center;
  padding: 80px 10%;
  background: #ffffff;
  color: #312e81;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.intro h2 {
  font-family: "Rubik", sans-serif;
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.intro p {
  max-width: 820px;
  margin: 0 auto;
  color: #312e81;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* =========== Home Intro Section ========== */
.intro {
  text-align: center;
  padding: 80px 10%;
  background: #ffffff;
  color: #312e81;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.intro h2 {
  font-family: "Rubik", sans-serif;
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.intro p {
  max-width: 820px;
  margin: 0 auto;
  color: #312e81;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* =========== ABOUT PAGE STYLING =========== */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  background: #f5f7fa;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.about-text {
  flex: 1 1 55%;
  color: #111827;
}

.about-text h1 {
  font-family: "Playfair Display", serif;
  color: #2563eb;
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-align: center;
}

.about-text p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}

.about-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 280px;
  height: auto;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.3);
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.6);
}

/* =========== CORE EXPERTISE / SKILLS GRID =========== */
.skills {
  text-align: center;
  padding: 80px 0;
  background: #f5f7fa;
}

.skills h2 {
  color: #2563eb;
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: fit-content;
  margin: 0 auto;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.expertise-list li {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  background: #f5f5f5;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-list li:hover {
  background: #0078ff;
  color: white;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .expertise-list {
    padding: 25px;
    width: 90%;
  }

  .expertise-list li {
    font-size: 1rem;
  }
}

/* ========== Career Summary & Highlights ========== */
.career-summary {
  padding: 80px 10%;
  background: #f5f7fa;
  color: #2563eb;
  text-align: center;
}

.career-summary h2 {
  font-family: "Rubik", sans-serif;
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 20px;
}

.career-summary p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111827;
}

.highlights {
  text-align: left;
  padding: 50px 10%;
}

.highlights h2 {
  text-align: center;
  margin-bottom: 25px;
}

.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlights li {
  background: #f5f7fa;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1rem;
  border-left: 4px solid #6366f1;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlights li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.32);
}

/* ========== Services Section ========= */
.services {
  padding: 80px 10%;
  text-align: center;
  background: #f5f7fa;
  color: #111827;
  font-family: "Rubik", sans-serif;
}

.services h2 {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 18px;
}

.section-intro {
  color: #111827;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.card {
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  text-align: center;
  width: 240px;
  height: 280px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  color: #2563eb;
  font-size: 1rem;
  margin-top: 8px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.35);
}

/* ============ Business Portfolio ============ */
.business-section {
  padding: 80px 10%;
  background: #f5f7fa;
  color: #111827;
  min-height: 100vh;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

.business-section h2 {
  font-size: 2.3rem;
  color: #2563eb;
  margin-bottom: 18px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.business-card {
  background: #f5f7fa;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.26);
  transition: all 0.25s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-height: 200px;
}

.business-card h3 {
  color: #2563eb;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.business-card p {
  color: #111827;
  font-size: 0.97rem;
  line-height: 1.6;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.3);
}

/* ============= Achievements ============= */
.achievements {
  background: #f5f7fa;
  color: #111827;
  min-height: 100vh;
  padding: 80px 10%;
}

.achievements-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.achievements-container h1 {
  color: #2563eb;
  font-size: 2.3rem;
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

.achievements-intro {
  color: #111827;
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.award-card {
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 22px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 1rem;
  color: #111827;
  text-align: left;
  line-height: 1.6;
}

.award-card strong {
  color: #2563eb;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.42);
}

.award-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.award-images img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Testimonials Section ===== */
.testimonials {
  background-color: #ffffff;
  color: #111827;
  padding: 80px 20px;
  text-align: center;
  font-family: "Nunito", sans-serif;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.testimonials-intro {
  font-size: 1rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== Testimonials Grid ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  padding: 0 20px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #f8fafc;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Profile Image */
.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077b5;
  margin-bottom: 15px;
}

/* Name + Role */
.testimonial-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 5px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 15px;
}

/* Quote text */
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

/* ============= Clients Section =============== */
.clients {
  padding: 80px 10%;
  text-align: center;
  background: #f5f7fa;
  color: #2563eb;
  min-height: 100vh;
}

.clients h1 {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 12px;
  font-family: "Rubik", sans-serif;
}

.clients-intro {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #111827;
  font-size: 1.1rem;
  line-height: 1.7;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 35px;
  justify-items: center;
  align-items: center;
}

.client-card {
  background: #ffffff;
  border-radius: 12px;
  width: 190px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.client-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.34);
}

.client-card img {
  width: 130px;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.client-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.12);
}

/* ============ Skills Page ========== */
.skills-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.skills-container h1 {
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.skills-intro {
  color: #111827;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 1.03rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  text-align: left;
}

.skills-column {
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skills-column h2 {
  color: #2563eb;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.skills-column ul {
  list-style: disc;
  margin-left: 18px;
}

.skills-column ul li {
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.98rem;
}

.skills-column {
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.skills-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
  background: #ffffff;
}

/* ========== Certifications Page ========== */
.certifications-page {
  padding: 80px 10%;
  text-align: center;
  background: #f5f7fa;
  color: #2563eb;
  min-height: 100vh;
  font-family: "Rubik", sans-serif;
}

.certifications-page h1 {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 20px;
  font-weight: 600;
}

.cert-subtitle {
  color: #111827;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.cert-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  border-radius: 8px;
  object-fit: contain;
}

.cert-card p {
  color: #0f1010;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

/* =========== Contact Section =========== */
.contact {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 10%;
  background: #f5f7fa;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: #2563eb;
  margin-bottom: 12px;
}

.contact-info p {
  font-family: "Nunito", sans-serif;
  color: #111827;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details p {
  color: #111827;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details i {
  color: #111827;
  font-size: 1.15rem;
}

/* Social Links  */
.social-links a {
  color: #2563eb;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #111827;
  transform: scale(1.2);
}

/* ========== Form ========== */
.contact-form {
  flex: 1 1 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.18);
}

.contact-form h2 {
  font-family: "Rubik", sans-serif;
  color: #2563eb;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  outline: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #111827;
  font-size: 1rem;
  transition: border-color 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #6366f1;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  font-size: 1rem;
}

.contact-form button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

/* =========== Chat Widget =========== */
.chatbox {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 240px;
  height: 340px;
  background: rgba(17, 24, 39, 0.95);
  border: 2px solid #6366f1;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  overflow: hidden;
  z-index: 9999;
  animation: fadeInUp 0.6s ease forwards;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
}

.msg {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  max-width: 80%;
  word-wrap: break-word;
}

.user {
  background: #6366f1;
  color: white;
  align-self: flex-end;
}

.bot {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  align-self: flex-start;
}

.chat-input {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-input input {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  font-size: 0.92rem;
}

.chat-input button {
  background: #6366f1;
  border: none;
  color: white;
  padding: 0px 0px;
  cursor: pointer;
  transition: background 0.18s ease;
  font-weight: 600;
  border-top-right-radius: 8px;
}

.chat-input button:hover {
  background: #4f46e5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide Chatbot on Mobile Devices */
@media (max-width: 768px) {
  .chatbox {
    display: none !important;
  }
}

/* ======== Final Responsive Adjustments ======= */
@media (max-width: 768px) {
  .about-container,
  .hero-content,
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h1,
  .contact-info h1 {
    font-size: 2rem;
  }

  .client-card,
  .card {
    width: 90%;
    height: auto;
  }

  .cert-card {
    max-width: 100%;
  }

  .chatbox {
    right: 10px;
    bottom: 15px;
    width: 88%;
    height: 320px;
  }
}

.footer {
  background: #f5f7fa;
  color: #111827;
  padding: 20px 6%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  gap: 20px;
}

/* Left: LinkedIn */
.linkedin-footer {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.linkedin-footer h3 {
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
}

.linkedin-footer .iframe-container {
  width: 280px;
  height: 260px;
  border: 1px solid #e1e9ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  background: #fff;
  pointer-events: auto;
}

.linkedin-footer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.libutton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 32px;
  border-radius: 16px;
  background-color: #0a66c2;
  color: #fff !important;
  text-decoration: none !important;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease, transform 0.2s ease;
  padding: 6px;
  margin: 6px;
}

.libutton:hover {
  background-color: #004182;
  transform: translateY(-2px);
}

.footer-center {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.footer-center .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.footer-center .social-links a {
  color: #2563eb;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-center .social-links a:hover {
  color: #111827;
  transform: scale(1.1);
}

.footer-center p {
  font-size: 0.85rem;
  color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .linkedin-footer {
    align-items: center;
  }

  .linkedin-footer .iframe-container {
    width: 250px;
    height: 240px;
  }
}

/* Equal Size Social Icons */
.social-links .social-icon {
  width: 37px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.2s ease;
  vertical-align: middle;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover .social-icon,
.social-links a:hover i {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.social-links i.social-icon {
  font-size: 1.25rem;
  color: #2563eb;
}

.social-links a:hover i.social-icon {
  color: #111827;
}

/* ===== Social Embed Styling ===== */
.social-embeds {
  flex: 1 1 620px;
  text-align: center;
}

.social-embeds h3 {
  color: #2563eb;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.iframe-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.iframe-row iframe {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Keep footer balanced */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

.social-embed iframe {
  overflow-y: auto;
  border-radius: 10px;
}

/* ========== BLOG PAGE ========== */
.blog {
  padding: 80px 10%;
  text-align: center;
  background: #f5f7fa;
  color: #111827;
  font-family: "Nunito", sans-serif;
}

.blog h1 {
  color: #2563eb;
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.blog p {
  color: #374151;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 28px 22px;
  width: 320px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.blog-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 16px;
}

.blog-card h3 {
  color: #2563eb;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.blog-card p {
  color: #111827;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ======= FOOTER ICON SIZE FIX ======== */
.social-links img.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links img.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* ===== Footer Embeds Row ===== */
.footer {
  background: #f5f7fa;
  padding: 20px 10%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

/* Align all iframes tightly to the left side */
.footer-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* Each embed box */
.social-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-embed iframe {
  width: 260px;
  height: 310px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* LinkedIn buttons */
.linkedin-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.libutton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 30px;
  border-radius: 15px;
  background-color: #0a66c2;
  color: #fff !important;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.25s ease;
}

.libutton:hover {
  background: #004182;
}

.footer-center {
  text-align: center;
  margin-top: 12px;
}

.footer-center .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.social-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-center p {
  font-size: 0.85rem;
  color: #111827;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .footer-row {
    justify-content: center;
  }

  .social-embed iframe {
    width: 240px;
    height: 280px;
  }
}

/* ========== Smaller Chatbot Widget ========== */
#chatbot {
  width: 260px;
  height: 360px;
  font-size: 0.9rem;
  border-radius: 12px;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

#chatbot iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ✅ Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.navbar .logo img {
  height: 50px;
}

/* ✅ Navbar Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0078ff;
}

/* ✅ Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* ✅ Responsive for Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 25px;
    flex-direction: column;
    background: #fff;
    width: 230px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: right;
  }

  .nav-links.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #333;
    font-size: 16px;
  }
}

/* ✅ Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.navbar .logo img {
  height: 50px;
}

/* ✅ Navbar Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0078ff;
}

/* ✅ Hamburger Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ✅ Responsive for Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    background: #fff;
    width: 230px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #333;
  }
}
