/**
 * Theme Name:     Blocksy Child
 * Author:         CreativeThemes
 * Template:       blocksy
 * Text Domain:	   blocksy-child
 * Description:    Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
 */


/* ==============================
   GLOBAL STYLES
============================== */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #222;
}
a {
    text-decoration: none;
    color: inherit;
}
button.ct-header-search.ct-toggle {
    display: none;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
section.abt_sec {
    background: white;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    margin: 5px;
}
  
  
/* ================= HERO SECTION ================= */
.hero {
    background: linear-gradient(135deg, #97c6ff, #e7e7e7);
    color: #fff;
    padding: 120px 0;
    text-align: left;
    min-height: 700px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 400;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #0073ff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #f0f0f0;
}

/* ================= ABOUT SECTION ================= */
.about {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 100px 0;
    flex-wrap: wrap;
}
.about-img img {
    width: 100%;
    max-width: 677px;
    border-radius: 5px;
   
}
.about-img img:hover {
	margin-top: 5px;
  	transition: 0.7s;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  	color: #0066cc;
}
.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}
.page-id-6 .tutor-course-filter {
    display: none;
}
/* ================= FEATURED COURSES ================= */
.courses {
    background: #f9f9f9;
    padding: 100px 0;
    text-align: center;
    background-image: url(https://skill.blueskyeducation.co.in/wp-content/uploads/2025/10/25861911_geometric_abstract_background_with_connected_dots_and_lines-scaled.jpg);
    background-size: cover;
}
.courses h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.courses p {
    color: #555;
    margin-bottom: 50px;
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.course-card:hover {
    transform: translateY(-5px);
}
.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.course-card .content {
    padding: 20px;
    text-align: left;
}
.course-card .content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.course-card .content p {
    font-size: 0.95rem;
    color: #555;
}
.course-card .content a {
    display: inline-block;
    margin-top: 10px;
    color: #0073ff;
    font-weight: 600;
}

/* ================= CAREER HIGHLIGHT COURSES ================= */
.career-courses {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.career-courses .text {
    flex: 1;
}
.career-courses .text h2 {
    font-size: 2rem;
    color: #0073ff;
    margin-bottom: 15px;
}
.career-courses .text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}
.career-courses .image img {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
}

/* ================= LOGO SECTION ================= */
.logos {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}
.logo-grid img {
    max-width: 120px;
    opacity: 0.8;
    transition: 0.3s;
}
.logo-grid img:hover {
    opacity: 1;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    background: #f7f9fc;
    padding: 100px 0;
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.testimonial img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.testimonial h4 {
    margin: 10px 0 5px;
    color: #0073ff;
}
.testimonial p {
    font-style: italic;
    color: #555;
}

/* ================= CONTACT SECTION ================= */
.contact {
    background: linear-gradient(135deg, #0073ff, #00b3b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.contact form {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}
.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
}
.contact button {
    width: 100%;
    background: #fff;
    color: #0073ff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.contact button:hover {
    background: #f0f0f0;
}







.cart-contents {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.cart-contents:hover {
  color: #0073aa;
}

.cart-count {
  background: #ff3c00;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  padding: 2px 6px;
  position: absolute;
  top: -8px;
  right: -10px;
  font-weight: bold;
}

/* --- Layout --- */
  .founders-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    padding: 60px 20px;
    gap: 40px;
  }

  .founders-left {
    flex: 1 1;
  }

  .founders-right {
    flex: 1 1;
    display: flex;
    justify-content: center;
  }

  /* --- Left Content --- */
  .founders-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
  }

  .founders-left .launch-date {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .founders-left .description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
  }

  /* --- Card --- */
  .offer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 380px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .offer-card:hover {
    transform: translateY(-5px);
  }

  .offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-content {
    padding: 25px;
  }

  .card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
  }

  .price {
    margin: 10px 0;
  }

  .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
  }

  .new-price {
    color: #0abf53;
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 10px;
  }

  .bonus {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .cta-btn {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .cta-btn:hover {
    background: #004999;
  }

.container.banner_con h1, p {
    max-width: 770px;
}

p.crs_txt_sub {
    max-width: 1280px;
    text-align: center;
    width: 100%;
    font-size: 27px;
}

/* ---------- Layout ---------- */
  .career-highlight-section {
    background: var(--career-highlight-bg);
    padding: 60px 6%;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }

  .career-highlight-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1150px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .career-highlight-left {
    flex: 1 1 50%;
    min-width: 300px;
  }

  .career-highlight-right {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }

  /* ---------- Text Content ---------- */
  .career-highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--career-highlight-text);
    margin-bottom: 10px;
  }

  .career-highlight-subtitle {
    color: var(--career-highlight-accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .career-highlight-description {
    color: var(--career-highlight-muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* ---------- Benefits List ---------- */
  .career-highlight-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .career-highlight-benefits li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--career-highlight-text);
  }

  .career-highlight-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--career-highlight-accent);
    font-weight: bold;
    font-size: 0.9rem;
  }

  /* ---------- CTA Button ---------- */
  .career-highlight-cta {
    display: inline-block;
    background: var(--career-highlight-accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .career-highlight-cta:hover {
    background: #004b99;
    transform: translateY(-3px);
  }

  /* ---------- Image ---------- */
  .career-highlight-image {
    width: 100%;
    max-width: 525px;
    border-radius: 12px;
    object-fit: cover;
  }




  /* ---------- Contact section ---------- */

.contact-minimal-section {
    background: #fafbfc;
    padding: 80px 6%;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }

  .contact-minimal-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
  }

  /* ---------- Left Info ---------- */
  .contact-minimal-info {
    flex: 1 1 40%;
    text-align: left;
  }

  .contact-minimal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }

  .contact-minimal-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* ---------- Social Media ---------- */
  .contact-minimal-socials {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
  }

  .contact-minimal-socials a {
    color: #0066cc;
    font-size: 1.1rem;
    background: #fff;
    border: 1px solid #d9e4f1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .contact-minimal-socials a:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-3px);
  }

  /* ---------- Button ---------- */
  .contact-minimal-btn {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .contact-minimal-btn:hover {
    background: #004a99;
    transform: translateY(-3px);
  }

  /* ---------- Contact Form ---------- */
  .contact-minimal-form {
    flex: 1 1 55%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    padding: 30px;
  }



li#menu-item-447 {
    padding: 10px;
    background: #c3ddff;
}

/* ================= footer ================= */


.footer-bottom p {
    min-width: 1280px;
    text-align: center;
    margin: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  
  
  .career-highlight-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .career-highlight-left,
    .career-highlight-right {
      flex: 1 1 100%;
    }

    .career-highlight-benefits li {
      padding-left: 26px;
    }

    .career-highlight-benefits li::before {
      left: 5px;
    }
    .about, .career-courses {
        flex-direction: column;
        text-align: center;
    }
  
   .founders-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
    }
    .founders-left, .founders-right {
      flex: 1 1 100%;
    }
  
    /* ---------- Contact Section ---------- */
  
   .contact-minimal-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .contact-minimal-info, .contact-minimal-form {
      flex: 1 1 100%;
      max-width: 600px;
    }

    .contact-minimal-socials {
      justify-content: center;
    }

  
}
