/* Blog Page Styles */

/* Main Blog Section */
.blog-main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fcf7f4;
  border-radius: 50px;
  margin-top: 120px;
}

.blog-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a1f5d;
  margin-bottom: 30px;
}

.blog-title span {
  color: #1b2559;
}

/* Blog Images Container */
.blog-images-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.blog-image {
  border-radius: 8px;
  min-width: 200px;
}

.blog-image-small {
  width: 38%;
}

.blog-image-large {
  width: 60%;
}

.blog-overlay-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  color: #2a1f5d;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  max-width: 400px;
  margin-left: 45px;
}

/* Content Header Section */
.blog-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-headings {
  text-align: left;
}

.blog-headings h3 {
  color: #6b63ff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.blog-headings h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 5px 0 0 0;
}

/* Contact Bar */
.blog-contact-bar {
  background: #002358;
  padding: 5px 10px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.contact-avatar {
  width: 38px;
  height: 38px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-color: aliceblue;
}

.contact-name {
  color: white;
}

.contact-text {
  font-weight: 600;
  cursor: pointer;
  color: white;
}

.contact-phone {
  background: #86b72e;
  padding: 8px 20px;
  color: white;
  font-weight: 600;
  border-radius: 20px;
}

/* Blog Content Section */
.blog-content-section {
  padding: 50px 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.blog-content-heading {
  color: #2a1f5d;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.blog-description {
  padding: 25px 30px;
  margin-bottom: 35px;
}

.blog-description p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.blog-cta {
  text-align: center;
}

/* Tags Section */
.blog-tags-section {
  text-align: center;
  padding: 40px 0 20px;
}

.blog-tags-container {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 85px;
  justify-content: center;
}

.blog-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #f3f4f6;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  color: #1d1d1d;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

.blog-tag img {
  width: 18px;
  height: 18px;
}

/* Great Deals Section */
.great-deals-section {
  text-align: center;
  margin-top: 10px;
}

.great-deals-title {
  font-size: 30px;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.great-deals-title img {
  width: 100px;
}

.great-deals-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #444;
}

/* Cards Section */
.blog-cards-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.blog-card {
  background-image: url('/assets/Rectangle 200.png');
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 35px 25px;
  text-align: center;
  width: 310px;
  background-size: cover;
}

.blog-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3f6fa 30%, #e3e9ed 100%);
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-icon img {
  opacity: 0.8;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  font-family: 'Inter', sans-serif;
}

.blog-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 25px;
}

.blog-card-link {
  text-decoration: none;
  color: #6b63ff;
  border: 1.5px solid #353889;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

/* Vlog Section */
.vlog-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: left;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.vlog-heading {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
}

.vlog-heading-accent {
  display: inline-block;
  width: 6px;
  height: 28px;
  background-color: #a3c150;
  margin-right: 8px;
  border-radius: 2px;
}

.vlog-description {
  font-size: 17px;
  color: #222;
  line-height: 1.9;
  font-weight: 500;
  margin: 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vlog-description a {
  color: #363889;
  font-weight: 700;
  text-decoration: none;
}

.vlog-description .contact-link {
  color: #ff3b3b;
}

/* Career Guidance Section */
.career-guidance-section {
  background-color: #fcf7f5;
  color: #150303;
  padding: 100px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.career-left {
  max-width: 500px;
  text-align: center;
  position: relative;
}

.career-circle {
  width: 400px;
  height: 400px;
  background-color: #363889;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.career-image {
  width: 500px;
  height: 400px;
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
  max-width: 100%;
  height: auto;
}

.career-heading {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.career-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.career-button-primary {
  background-color: #ff6b6b;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.career-button-secondary {
  background-color: transparent;
  color: black;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  border: 2px solid white;
}

.career-right img {
  width: 600px;
  height: 400px;
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Process Section */
.process-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.process-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.process-heading span {
  color: #3c3c97;
}

.process-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

.process-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.process-card {
  width: 300px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.process-card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-card-border-corner {
  position: absolute;
  background-color: #3c3c97;
}

.process-card-border-corner-bottom-left-h {
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
}

.process-card-border-corner-bottom-left-v {
  bottom: 0;
  left: 0;
  width: 5px;
  height: 30px;
}

.process-card-border-corner-top-right-h {
  top: 0;
  right: 0;
  width: 30px;
  height: 5px;
}

.process-card-border-corner-top-right-v {
  top: 0;
  right: 0;
  width: 5px;
  height: 30px;
}

.process-card-content {
  font-size: 16px;
  color: #222;
  margin: 50px 0;
}

.process-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-card-image img {
  width: 120px;
  height: auto;
}

.process-card-link {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-images-container {
    flex-direction: column;
    align-items: center;
  }

  .blog-image-small,
  .blog-image-large {
    width: 100%;
    max-width: 600px;
  }

  .blog-overlay-text {
    position: static;
    transform: none;
    margin: 20px 0 0 0;
    text-align: center;
  }

  .blog-content-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-contact-bar {
    width: 100%;
    justify-content: center;
  }

  .career-guidance-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .career-circle {
    width: 300px;
    height: 300px;
  }

  .career-image {
    width: 100%;
    max-width: 400px;
  }

  .career-right img {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .blog-main-section {
    margin-top: 100px;
    padding: 30px 15px;
    border-radius: 30px;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-overlay-text {
    font-size: 20px;
  }

  .blog-headings h2 {
    font-size: 24px;
  }

  .blog-headings h3 {
    font-size: 18px;
  }

  .blog-content-section {
    padding: 30px 20px;
  }

  .blog-content-heading {
    font-size: 1.2rem;
  }

  .blog-description p {
    font-size: 1rem;
  }

  .blog-tags-container {
    gap: 20px;
  }

  .great-deals-title {
    font-size: 24px;
  }

  .great-deals-title img {
    width: 60px;
  }

  .blog-card {
    width: 100%;
    max-width: 350px;
  }

  .vlog-heading {
    font-size: 22px;
  }

  .vlog-description {
    font-size: 15px;
  }

  .career-heading {
    font-size: 20px;
  }

  .career-button-primary,
  .career-button-secondary {
    font-size: 16px;
    padding: 12px 24px;
  }

  .process-heading {
    font-size: 28px;
  }

  .process-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .blog-main-section {
    padding: 20px 10px;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-overlay-text {
    font-size: 18px;
    margin-left: 0;
  }

  .blog-content-section {
    padding: 20px 15px;
  }

  .blog-tags-container {
    gap: 15px;
  }

  .blog-tag {
    padding: 6px 14px;
    font-size: 14px;
  }

  .great-deals-title {
    font-size: 20px;
  }

  .great-deals-title img {
    width: 50px;
  }

  .career-circle {
    width: 250px;
    height: 250px;
  }

  .career-buttons {
    flex-direction: column;
    width: 100%;
  }

  .career-button-primary,
  .career-button-secondary {
    width: 100%;
    justify-content: center;
  }
}

