/* ========================================
   GLOBAL STYLES & IMPORTS
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ========================================
   ELEMENT-SPECIFIC ANIMATIONS
   ======================================== */
.ts-logo-img {
  animation: fadeIn 1s ease-out;
}

.hero-title {
  animation: fadeInUp 1s ease-out;
}

.hero-desc {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-ctas {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.expertise-card {
  animation: fadeInUp 0.8s ease-out;
}

.how-we-work-feature {
  animation: slideInLeft 0.8s ease-out;
}

.tech-stack-logo {
  animation: fadeIn 0.6s ease-out;
}
/* ========================================
   GLOBAL BODY & TYPOGRAPHY STYLES
   ======================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #f9f9f9;
  color: #222;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-weight: 600;
  color: #0e0e2c;
}

a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ========================================
   HEADER & NAVIGATION STYLES
   ======================================== */
.ts-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  left: 0;
  right: 0;
}
/* Offset for WordPress admin bar */
body.admin-bar .ts-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .ts-header {
    top: 46px;
  }
}
.ts-container.ts-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 12px;
  gap: 1em;
  max-width: 1450px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}
.ts-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.ts-nav-list {
  list-style: none;
  display: flex;
  gap: 2.5em;
  margin: 0;
  padding: 0;
}
.ts-nav a {
  color: #1a237e;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s;
}
.ts-nav a:hover {
  color: #f59c00;
}
.ts-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f59c00;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(245, 156, 0, 0.08);
  margin-right: 0.5em;
  transition: background 0.2s;
  font-size: 1.2em;
  color: #fff;
}
.ts-call-btn:hover {
  background: #d48806;
  animation: pulse 0.6s ease-in-out;
}
.ts-call-btn i {
  color: #fff;
  font-size: 1.2em;
}
.ts-cta-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #1a237e;
  padding: 0.7em 2em;
  border-radius: 2em;
  font-weight: 600;
  font-size: 1.08em;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5em;
  border: 1.5px solid rgba(26, 35, 126, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}
.ts-cta-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #1a237e;
  border: 1.5px solid #fff;
  box-shadow: 0 6px 32px rgba(26, 35, 126, 0.13);
  text-decoration: none;
}
@media (max-width: 1000px) {
  .ts-container.ts-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    padding: 1.5em 24px;
  }
  .ts-nav-list {
    gap: 1em;
  }
  .ts-header-actions {
    margin-top: 1em;
  }
}

@media (max-width: 600px) {
  .ts-container.ts-header-container {
    padding: 1.5em 16px;
  }
}

body,
html {
  font-family: "Poppins", Arial, sans-serif;
}

.hero-desc {
  color: #2a2f92;
}
.hero-btn-primary {
  background: #2a2f92;
  color: #fff;
  border: 2px solid #2a2f92;
}
.hero-btn-primary:hover {
  background: #2a2f92;
  border-color: #2a2f92;
  transform: scale(1.06);
}
.hero-btn-outline {
  background: transparent;
  color: #2a2f92;
  border: 2px solid #2a2f92;
}
.hero-btn-outline:hover {
  background: #2a2f92;
  color: #fff;
  transform: scale(1.06);
}

/* ========================================
   HOMEPAGE SPECIFIC STYLES
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  display: flex;
  align-items: stretch;
  height: 80vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 60px 60px;
  max-width: 1000px;
  z-index: 2;
  text-align: left;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
  text-shadow: none;
}
.hero-desc {
  font-size: 20px;
  color: #444;
  margin-bottom: 24px;
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-btn {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, color 0.18s, border 0.18s;
  outline: none;
}
.hero-btn-primary {
  background: #2a2f92;
  color: #fff;
  border: 2px solid #2a2f92;
  border-radius: 25px;
}
.hero-btn-primary:hover {
  background: #2a2f92;
  border-color: #2a2f92;
  transform: scale(1.06);
}
.hero-btn-outline {
  background: transparent;
  color: #2a2f92;
  border: 2px solid #2a2f92;
  border-radius: 25px;
}
.hero-btn-outline:hover {
  background: #2a2f92;
  color: #fff;
  transform: scale(1.06);
}
.hero-image-col {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  justify-content: flex-end;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 90vh;
  display: block;
}
.hero-gradient {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: 100vh;
  }
  .hero-content {
    padding: 56px 16px 24px 16px;
    align-items: center;
    text-align: center;
    max-width: 100vw;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-image-col,
  .hero-image-wrapper {
    min-height: 320px;
    height: 320px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 24px 8px 16px 8px;
  }
  .hero-title {
    font-size: 22px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hero-image-col,
  .hero-image-wrapper {
    min-height: 180px;
    height: 180px;
  }
}
@media (max-width: 400px) {
  .hero-title {
    font-size: 15px;
  }
  .hero-content {
    padding: 10px 2px 8px 2px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .hero-content {
    padding: 7vw 0 2vw 0;
    align-items: center;
    text-align: center;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .hero-content {
    padding: 1.5em 0 1em 0;
  }
}

/* ========================================
   LEAD FORM SECTION
   ======================================== */
.lead-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  pointer-events: none;
}
.lead-container {
  display: flex;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(44, 44, 84, 0.13);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  min-height: 320px;
  pointer-events: auto;
}
.lead-info {
  background: #2a2f92;
  color: #fff;
  flex: 1 1 50%;
  padding: 40px 32px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}
.lead-info h2 {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
  color: #fff;
}
.lead-info p {
  font-size: 1.1em;
  margin-bottom: 18px;
}
.lead-underline {
  width: 48px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin-top: 8px;
}
.lead-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px 24px;
  gap: 18px;
}
.lead-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.lead-form input {
  flex: 1 1 0;
  padding: 14px 16px;
  border: 1.5px solid #ececec;
  border-radius: 8px;
  font-size: 1em;
  background: #fafaff;
  outline: none;
  transition: border 0.2s;
}
.lead-form input:focus {
  border-color: #2a2f92;
}
.lead-btn {
  margin-top: 10px;
  width: 100%;
  padding: 15px 0;
  background: #2a2f92;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(108, 77, 242, 0.08);
}
.lead-btn:hover {
  background: #fff;
  color: #2a2f92;
  animation: pulse 0.6s ease-in-out;
}
@media (max-width: 900px) {
  .lead-container {
    flex-direction: column;
    min-width: 0;
    max-width: 98vw;
    border-radius: 18px;
  }
  .lead-info,
  .lead-form {
    border-radius: 0;
    padding: 28px 18px;
  }
  .lead-info {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 600px) {
  .lead-section {
    margin-top: -60px;
  }
  .lead-container {
    min-height: unset;
    border-radius: 10px;
  }
  .lead-info,
  .lead-form {
    padding: 16px 8px;
  }
  .lead-info h2 {
    font-size: 1.2em;
  }
  .lead-form-row {
    flex-direction: column;
    gap: 10px;
  }
  .lead-btn {
    font-size: 1em;
    padding: 12px 0;
  }
}

/* ========================================
   HOW WE WORK SECTION
   ======================================== */
.how-we-work-section {
  background: #fafafa;
  padding: 54px 0 64px 0;
  width: 100%;
}
.how-we-work-container {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding: 12px 32px;
  border-radius: 16px;
  box-sizing: border-box;
  align-items: flex-start;
  background: #fafafa;
}
.how-we-work-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-center;
  padding-left: 20px;
}
.how-we-work-title {
  font-size: 2.8em;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.1;
  position: relative;
}

.how-we-work-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}
.how-we-work-desc {
  font-size: 1.13em;
  color: #444;
  margin-bottom: 32px;
  max-width: 600px;
}
.how-we-work-ratings {
  display: flex;
  gap: 40px;
  margin-top: -10px;
}
.how-we-work-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1em;
}
.how-we-work-stars {
  color: #f7c948;
  font-size: 1.5em;
  margin-bottom: 2px;
}
.how-we-work-rating strong {
  font-size: 1.1em;
  color: #2a2f92;
}
.how-we-work-client {
  font-size: 0.98em;
  color: #888;
  margin-top: 2px;
}
.how-we-work-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.how-we-work-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 44, 84, 0.04);
  padding: 18px 20px;
}
.how-we-work-icon {
  width: 48px;
  height: 48px;
  color: #2a2f92;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7em;
  margin-right: 8px;
}
.how-we-work-feature h3 {
  margin: 0 0 6px 0;
  font-size: 1.18em;
  color: #2a2f92;
  font-weight: 700;
}
.how-we-work-feature p {
  margin: 0;
  color: #444;
  font-size: 1em;
}
@media (max-width: 900px) {
  .how-we-work-container {
    flex-direction: column;
    gap: 32px;
    padding: 24px 8vw;
  }
  .how-we-work-left,
  .how-we-work-right {
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .how-we-work-section {
    padding: 32px 0;
  }
  .how-we-work-container {
    padding: 12px 2vw;
    gap: 18px;
  }
  .how-we-work-title {
    font-size: 1.5em;
  }
  .how-we-work-feature {
    padding: 12px 10px;
    gap: 10px;
  }
  .how-we-work-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1em;
  }
  .how-we-work-ratings {
    gap: 16px;
  }
}

/* ========================================
   TECH STACK SECTION
   ======================================== */
.tech-stack-section {
  position: relative;
  width: 100%;
  background: #ffff;
  padding: 18px 0;
  overflow: hidden;
}
.tech-stack-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
}
.tech-stack-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.tech-stack-logo {
  height: 64px;
  width: auto;
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.tech-stack-logo:hover {
  filter: grayscale(0) contrast(1.1);
  opacity: 1;
  transform: scale(1.07);
}
@media (max-width: 900px) {
  .tech-stack-container {
    gap: 32px;
  }
  .tech-stack-logo {
    height: 48px;
  }
}
@media (max-width: 600px) {
  .tech-stack-section {
    padding: 24px 0;
  }
  .tech-stack-container {
    gap: 18px;
  }
  .tech-stack-logo {
    height: 32px;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  background: #ffff;
  padding: 100px 0;
  width: 100%;
}

.features-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 0;
  box-sizing: border-box;
}

.feature-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #2a2f92;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  max-width: 500px;
}

.feature-underline {
  width: 40px;
  height: 2px;
  background: #2c3e50;
  border-radius: 1px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .features-container {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 24px;
  }

  .feature-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 40px 0;
  }

  .features-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }

  .feature-block {
    flex: 1 1 100%;
  }

  .feature-text {
    font-size: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ========================================
   OUR EXPERTISE SECTION
   ======================================== */
.expertise-section {
  background: #fafafa;
  width: 100%;
  padding: 64px 0 64px 0;
}
.expertise-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}
.expertise-title {
  font-size: 2.5em;
  font-weight: 800;
  color: #222;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.expertise-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}

.expertise-desc {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.expertise-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 44, 84, 0.06);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.expertise-card:hover {
  box-shadow: 0 6px 24px rgba(44, 44, 84, 0.13);
  transform: translateY(-4px) scale(1.03);
  animation: pulse 0.8s ease-in-out;
}
.expertise-icon {
  background: #edeafd;
  color: #2a2f92;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  margin-bottom: 18px;
}
.expertise-card h3 {
  font-size: 1.18em;
  color: #2a2f92;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.expertise-card p {
  color: #444;
  font-size: 1em;
  margin: 0;
}
@media (max-width: 900px) {
  .expertise-container {
    max-width: 98vw;
    padding: 0 8vw;
  }
  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .expertise-section {
    padding: 32px 0;
  }
  .expertise-container {
    padding: 0 2vw;
  }
  .expertise-title {
    font-size: 1.3em;
    margin-bottom: 18px;
  }
  .expertise-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .expertise-card {
    padding: 18px 8px 16px 8px;
  }
  .expertise-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: #ffff;
  width: 100%;
  padding: 64px 0 64px 0;
}
.faq-container {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  gap: 10x;
  padding: 0 32px;
  box-sizing: border-box;
  align-items: flex-start;
}
.faq-image-col {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-image {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(44, 44, 84, 0.1);
}
.faq-content-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-subtitle {
  color: #2a2f92;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.faq-title {
  font-size: 2.3em;
  font-weight: 800;
  color: #111;
  margin-bottom: 32px;
  line-height: 1.1;
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #f4f3f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 44, 84, 0.04);
  padding: 22px 28px;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s;
}
.faq-item.active,
.faq-item:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(44, 44, 84, 0.1);
}
.faq-question {
  font-size: 1.13em;
  font-weight: 700;
  color: #0e0e2c;
  margin-bottom: 8px;
}
.faq-answer {
  color: #444;
  font-size: 1em;
  display: none;
  margin-top: 4px;
}
.faq-item.active .faq-answer {
  display: block;
}
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8vw;
  }
  .faq-image {
    max-width: 100vw;
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .faq-section {
    padding: 32px 0;
  }
  .faq-container {
    padding: 0 2vw;
  }
  .faq-title {
    font-size: 1.2em;
    margin-bottom: 18px;
  }
  .faq-item {
    padding: 12px 8px;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  background: #fff;
  padding: 80px 0;
  width: 100%;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.testimonials-header {
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-subtitle {
  color: #2a2f92;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.testimonials-title {
  font-size: 2.8em;
  font-weight: 800;
  color: #0e0e2c;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

.testimonials-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}

.testimonials-desc {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 44, 84, 0.08);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 44, 84, 0.12);
}

.testimonial-quote-icon {
  background: #2a2f92;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-bottom: 20px;
  position: absolute;
  top: -24px;
  left: 28px;
}

.testimonial-text {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  margin-top: 16px;
}

.testimonial-client {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.testimonial-name {
  font-size: 1.1em;
  font-weight: 700;
  color: #0e0e2c;
  margin-bottom: 8px;
}

.testimonial-rating {
  color: #f7c948;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.testimonial-title {
  font-size: 0.9em;
  color: #2a2f92;
  font-weight: 500;
}

@media (max-width: 900px) {
  .testimonials-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 2.2em;
  }

  .testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-title {
    font-size: 1.8em;
  }

  .testimonials-desc {
    font-size: 1em;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-quote-icon {
    width: 40px;
    height: 40px;
    font-size: 1em;
    top: -20px;
    left: 20px;
  }
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.collab-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}
.collab-image {
  flex: 1;
  background-image: url("https://images.pexels.com/photos/3184325/pexels-photo-3184325.jpeg");
  background-size: cover;
  background-position: center;
}
.collab-form {
  flex: 1;
  background-color: #efedf7;
  display: flex;
  padding-left: 30px;
  align-items: center;
}
.form-container {
  max-width: 700px;
  width: 100%;
  padding: 40px;
}
.form-container h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
}

.form-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 7%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.form-row input,
.form-row select,
textarea {
  flex: 1;
  padding: 20px 20px;
  border-radius: 25px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  outline: none;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 550;
}

input::placeholder,
textarea::placeholder {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 550;
}
textarea {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  resize: none;
}

.collab-btn {
  width: 100%;
  padding: 18px 0;
  background: #2a2f92;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 16px rgba(42, 47, 146, 0.3);
}

.collab-btn:hover {
  background: #1a1f7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 47, 146, 0.4);
}

.collab-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .collab-section {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}

/* ========================================
   INTERNAL PAGES STYLES
   ======================================== */

/* ========================================
   PAGE HERO SECTION
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  background-image: url("../images/agency.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;
}

.page-hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.page-hero-content {
  background: rgba(42, 47, 146, 0.95);
  padding: 40px 50px;
  border-radius: 8px;
  margin-left: 14px;
  margin-top: -100px;
  width: 50%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-hero-title {
  font-size: 2.8em;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.1;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

.page-hero-subtitle {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@media (max-width: 768px) {
  .page-hero {
    height: 400px;
  }

  .page-hero-container {
    padding: 0 20px;
  }

  .page-hero-content {
    padding: 30px 35px;
    width: 70%;
    max-width: 100%;
  }

  .page-hero-title {
    font-size: 2.2em;
  }

  .page-hero-subtitle {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 350px;
  }

  .page-hero-content {
    padding: 25px 25px;
    width: 85%;
  }

  .page-hero-title {
    font-size: 1.8em;
  }

  .page-hero-subtitle {
    font-size: 0.95em;
  }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-us-section {
  background: #fff;
  padding: 80px 0;
  width: 100%;
}

.about-us-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 32px;
  box-sizing: border-box;
}

.about-us-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-title {
  font-size: 2.8em;
  font-weight: 800;
  color: #0e0e2c;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.about-us-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}

.about-us-desc {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.about-us-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.about-us-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-us-check {
  background: #2a2f92;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-us-feature span {
  font-size: 1em;
  color: #444;
  line-height: 1.5;
}

.about-us-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-person-img {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(44, 44, 84, 0.15);
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-us-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .about-us-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-us-title {
    font-size: 2.2em;
  }

  .about-us-features {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about-us-section {
    padding: 60px 0;
  }

  .about-us-container {
    padding: 0 16px;
    gap: 32px;
  }

  .about-us-title {
    font-size: 1.8em;
  }

  .about-us-desc {
    font-size: 1em;
  }

  .about-us-feature span {
    font-size: 0.95em;
  }
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
  background: #2a2f92;
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

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

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

.footer-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e8f5e8;
  margin: 0;
  font-weight: 400;
}

.footer-heading {
  font-size: 1.3em;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #ffffff;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 48px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.footer-contact-info p {
  margin: 10px 0;
  font-size: 0.95em;
  line-height: 1.6;
  color: #e8f5e8;
  font-weight: 400;
}

.footer-contact-info strong {
  color: #ffffff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-services-list li {
  margin: 0;
}

.footer-services-list a {
  color: #e8f5e8;
  text-decoration: none;
  font-size: 0.95em;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  font-weight: 400;
}

.footer-services-list a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #f59c00;
}

.footer-bottom {
  margin-top: 50px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright,
.footer-credits {
  font-size: 0.9em;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.footer-credits {
  color: #fff;
}

/* Floating WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 3em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  text-decoration: none;
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* Responsive Design for Footer */
@media (max-width: 1000px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer-container {
    padding: 0 24px;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column:first-child {
    grid-column: 1;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-services-list {
    align-items: center;
  }

  .footer-services-list a::before {
    display: none;
  }

  .footer-services-list a:hover {
    padding-left: 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3em;
  }
}

/* ========================================
   BLOG SECTION STYLES
   ======================================== */
.blog-section {
  background: #fafafa;
  width: 100%;
  padding: 80px 0;
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-subtitle {
  font-size: 0.9em;
  font-weight: 600;
  color: #2a2f92;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 2.5em;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.blog-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}

.blog-desc {
  font-size: 1.1em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2a2f92;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #2a2f92;
}

.blog-excerpt {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85em;
  color: #888;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i,
.blog-read-time i {
  font-size: 0.9em;
}

.blog-read-more {
  color: #2a2f92;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: #1a1f6b;
  gap: 12px;
  text-decoration: none;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

.blog-cta {
  text-align: center;
}

.blog-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2a2f92;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(42, 47, 146, 0.3);
}

.blog-view-all-btn:hover {
  background: #1a1f6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 47, 146, 0.4);
  color: #fff;
  text-decoration: none;
}

.blog-view-all-btn i {
  transition: transform 0.3s ease;
}

.blog-view-all-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-container {
    padding: 0 24px;
  }

  .blog-title {
    font-size: 2em;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 40px 0;
  }

  .blog-container {
    padding: 0 16px;
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .blog-title {
    font-size: 1.8em;
  }

  .blog-desc {
    font-size: 1em;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-view-all-btn {
    padding: 14px 28px;
    font-size: 0.9em;
  }
}

/* ======================================== FORM SUCCESS MESSAGES ======================================== */
.form-success {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #1a1f6b;
  margin-top: 1rem;
}

.form-success i {
  font-size: 2rem;
  color: #1a1f6b;
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

/* ======================================== ABOUT PAGE STYLES ======================================== */

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a3092, #3e429c);
  color: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 1.1em;
  opacity: 0.9;
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-title {
  font-size: 2.5em;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.team-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}

.team-desc {
  font-size: 1.2em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.team-member {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 32px;
}

.team-name {
  font-size: 1.4em;
  font-weight: 600;
  color: #2a2f92;
  margin-bottom: 8px;
}

.team-role {
  color: #4a90e2;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.team-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.team-social {
  display: flex;
  gap: 16px;
}

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

.team-social-link:hover {
  background: #2a2f92;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 20px;
  }

  .timeline-content {
    margin: 16px 0 0 0;
    max-width: none;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .values-title,
  .timeline-title,
  .team-title {
    font-size: 2em;
  }
}

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

  .stat-number {
    font-size: 2.5em;
  }

  .timeline-year {
    min-width: 100px;
    padding: 12px 20px;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
  background: #fafafa;
  width: 100%;
  padding: 64px 0 64px 0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding: 0 32px;
  box-sizing: border-box;
  align-items: flex-start;
}
.contact-form-col {
  flex: 1 1 55%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 44, 84, 0.06);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
}
.contact-form-col h2 {
  font-size: 2em;
  font-weight: 800;
  color: #2a2f92;
  margin-bottom: 24px;
}
.contact-form-col form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-col .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.contact-form-col input,
.contact-form-col textarea {
  flex: 1 1 0;
  padding: 14px 16px;
  border: 1.5px solid #ececec;
  border-radius: 8px;
  font-size: 1em;
  background: #fafaff;
  outline: none;
  transition: border 0.2s;
  font-family: "Montserrat", sans-serif;
}
.contact-form-col input:focus,
.contact-form-col textarea:focus {
  border-color: #2a2f92;
}
.contact-btn {
  margin-top: 10px;
  width: 100%;
  padding: 15px 0;
  background: #2a2f92;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(108, 77, 242, 0.08);
}
.contact-btn:hover {
  background: #fff;
  color: #2a2f92;
  animation: pulse 0.6s ease-in-out;
}
.contact-info-map-col {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* Enhanced Contact Info Card - No Yellow */
.contact-info {
  background: linear-gradient(135deg, #2a2f92 80%, #3e429c 100%);
  color: #fff;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  margin-bottom: 24px;
  box-shadow: 0 6px 32px rgba(44, 44, 84, 0.13);
  border: 2px solid #edeafd;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info:hover {
  box-shadow: 0 12px 40px rgba(44, 44, 84, 0.18);
  transform: translateY(-2px) scale(1.02);
}
.contact-info h3 {
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(42, 47, 146, 0.1);
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info li {
  font-size: 1.13em;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.contact-info i {
  background: #fff;
  color: #2a2f92;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(42, 47, 146, 0.1);
  margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}
.contact-info li:hover i {
  background: #3e429c;
  color: #fff;
}
@media (max-width: 900px) {
  .contact-info {
    padding: 28px 16px 20px 16px;
  }
}
@media (max-width: 600px) {
  .contact-info {
    padding: 16px 6px 10px 6px;
    border-radius: 12px;
  }
  .contact-info h3 {
    font-size: 1.1em;
    margin-bottom: 16px;
  }
  .contact-info ul {
    gap: 12px;
  }
  .contact-info i {
    width: 28px;
    height: 28px;
    font-size: 1em;
  }
  .contact-info li {
    font-size: 1em;
    gap: 10px;
  }
}

/* ========================================
   MAP SECTION (Contact Page)
   ======================================== */
.map-section {
  background: #fff;
  width: 100%;
  padding: 40px 0 64px 0;
  display: flex;
  justify-content: center;
}
.map-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background: #ffff;
  border-radius: 14px;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-container h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: #2a2f92;
  margin-bottom: 18px;
  text-align: center;
}
.map-container iframe {
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  border: none;
}
@media (max-width: 900px) {
  .map-container {
    padding: 18px 8px 12px 8px;
  }
}
@media (max-width: 600px) {
  .map-section {
    padding: 24px 0 32px 0;
  }
  .map-container {
    padding: 10px 2px 6px 2px;
  }
  .map-container h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  .map-container iframe {
    min-height: 140px;
  }
}

.section-title {
  font-size: 2.5em;
  font-weight: 800;
  color: #222;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.3em;
    margin-bottom: 18px;
  }
}

/* ========================================
   SINGLE BLOG POST STYLES
   ======================================== */
.blog-single-section {
  background: #fafafa;
  width: 100%;
  padding: 64px 0 64px 0;
}
.blog-single-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 44, 84, 0.1);
  padding: 48px 40px 32px 40px;
  box-sizing: border-box;
}
.blog-single-meta {
  display: flex;
  gap: 24px;
  color: #888;
  font-size: 0.98em;
  margin-bottom: 24px;
  align-items: center;
}
.blog-single-meta i {
  color: #2a2f92;
  margin-right: 6px;
}
.blog-single-title {
  font-size: 2.3em;
  font-weight: 800;
  color: #2a2f92;
  margin-bottom: 18px;
  line-height: 1.1;
  position: relative;
  text-align: left;
}
.blog-single-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #2a2f92;
  border-radius: 2px;
}
.blog-single-article {
  color: #222;
  font-size: 1.13em;
  line-height: 1.7;
  margin-bottom: 36px;
}
.blog-single-article h2,
.blog-single-article h3,
.blog-single-article h4 {
  color: #2a2f92;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}
.blog-single-article p {
  margin-bottom: 18px;
}
.blog-single-article ul,
.blog-single-article ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
.blog-single-article blockquote {
  background: #edeafd;
  border-left: 5px solid #2a2f92;
  color: #2a2f92;
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 8px;
  font-style: italic;
}
.blog-single-article img {
  max-width: 100%;
  border-radius: 10px;
  margin: 24px 0;
  box-shadow: 0 2px 12px rgba(44, 44, 84, 0.08);
}
.blog-single-back {
  margin-bottom: 32px;
}
.blog-single-back a {
  color: #2a2f92;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.blog-single-back a:hover {
  color: #1a1f6b;
  text-decoration: underline;
}
.blog-single-related {
  margin-top: 48px;
  background: #f4f6fd;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(44, 44, 84, 0.06);
}
.blog-single-related h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #2a2f92;
  margin-bottom: 18px;
}
.blog-single-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-single-related li {
  margin: 0;
}
.blog-single-related a {
  color: #2a2f92;
  background: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(44, 44, 84, 0.06);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.blog-single-related a:hover {
  background: #2a2f92;
  color: #fff;
  box-shadow: 0 6px 24px rgba(44, 44, 84, 0.13);
}
@media (max-width: 900px) {
  .blog-single-container {
    padding: 32px 12px 24px 12px;
    border-radius: 12px;
  }
  .blog-single-related {
    padding: 24px 10px;
  }
}
@media (max-width: 600px) {
  .blog-single-section {
    padding: 32px 0;
  }
  .blog-single-container {
    padding: 12px 2vw 8px 2vw;
    border-radius: 8px;
  }
  .blog-single-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .blog-single-related ul {
    gap: 10px;
    flex-direction: column;
  }
  .blog-single-related a {
    padding: 10px 12px;
    font-size: 0.98em;
  }
}
