/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

/* ---- index styles ---- */
/* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      }

      :root {
        --primary-color: #9220CCFF;
        --secondary-color: #9220CC70;
        --accent-color: #FF9079FF;
        --dark-color: #2c3e50;
        --light-color: #f8f9fa;
        --text-color: #333;
        --text-light: #777;
        --white: #fff;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
      }

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      footer a {
    color: var(--white) !important;
}

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
    display: block;
    height: 100px;
}

.logo img {
    height: 100%;
    width: auto;
}

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      /* About Section */
      .about {
        background-color: var(--white);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .about-text {
        flex: 1;
      }

      .about-text h3 {
        font-size: 2rem;
        color: var(--dark-color);
        margin-bottom: 20px;
      }

      .about-text p {
        margin-bottom: 20px;
        color: var(--text-light);
      }

      .about-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      /* Courses Section */
      .courses {
        background-color: var(--light-color);
      }

      .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
      }

      .course-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }

      .course-card:hover {
        transform: translateY(-10px);
      }

      .course-img {
        height: 200px;
        overflow: hidden;
      }

      .course-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .course-card:hover .course-img img {
        transform: scale(1.1);
      }

      .course-content {
        padding: 20px;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .course-content p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      .course-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
      }

      .price {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.2rem;
      }

      /* Pricing Section */
      .pricing {
        background-color: var(--white);
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .pricing-card {
        background-color: var(--light-color);
        border-radius: 10px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 2px solid transparent;
      }

      .pricing-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
      }

      .pricing-card.featured {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        position: relative;
      }

      .pricing-card.featured::before {
        content: "Popular";
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--accent-color);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .pricing-card.featured .btn {
        background-color: var(--white);
        color: var(--primary-color);
      }

      .pricing-card.featured .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
      }

      .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }

      .pricing-card .price {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
      }

      .pricing-card.featured .price {
        color: var(--white);
      }

      .pricing-card ul {
        margin-bottom: 30px;
      }

      .pricing-card ul li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      .pricing-card.featured ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      /* Testimonials Section */
      .testimonials {
        background-color: var(--light-color);
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .testimonial-card {
        background-color: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        position: relative;
      }

      .testimonial-card::before {
        content: "\201C";
        font-size: 5rem;
        color: rgba(106, 90, 205, 0.1);
        position: absolute;
        top: 10px;
        left: 10px;
        line-height: 1;
      }

      .testimonial-content {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
      }

      .author-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
      }

      .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
      }

      .author-info p {
        color: var(--text-light);
        font-size: 0.9rem;
      }

      /* FAQ Section */
      .faq {
        background-color: var(--white);
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
      }

      .faq-question {
        padding: 15px 20px;
        background-color: var(--light-color);
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-question::after {
        content: "+";
        font-size: 1.5rem;
      }

      .faq-question.active::after {
        content: "-";
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .faq-answer.show {
        padding: 20px;
        max-height: 500px;
      }

      /* Blog Section */
      .blog {
        background-color: var(--light-color);
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .blog-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 450px;
      }

      .blog-card:hover {
        transform: translateY(-10px);
      }

      .blog-img {
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .blog-card:hover .blog-img img {
        transform: scale(1.1);
      }

      .blog-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .blog-meta {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: var(--text-light);
      }

      .blog-meta span {
        margin-right: 15px;
      }

      .blog-meta i {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .blog-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .blog-content p {
        color: var(--text-light);
        margin-bottom: 15px;
        flex-grow: 1;
      }

      .blog-content .btn {
        align-self: flex-start;
        margin-top: auto;
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        text-align: center;
        padding: 80px 0;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
        font-size: 1.1rem;
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        overflow-y: auto;
        padding: 20px;
      }

      .modal-content {
        background-color: var(--white);
        max-width: 800px;
        margin: 50px auto;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        animation: modalFadeIn 0.3s ease;
      }

      @keyframes modalFadeIn {
        from {
          opacity: 0;
          transform: translateY(-50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        z-index: 1;
        background: none;
        border: none;
      }

      .close-modal:hover {
        color: var(--accent-color);
      }

      .modal-body {
        padding: 30px;
      }

      .modal-body img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
      }

      .modal-body h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--dark-color);
      }

      .modal-body .modal-meta {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        color: var(--text-light);
        font-size: 0.9rem;
      }

      .modal-body .modal-meta span {
        margin-right: 20px;
      }

      .modal-body .modal-meta i {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .modal-body p {
        margin-bottom: 15px;
        line-height: 1.8;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 2.8rem;
        }

        .about-content {
          flex-direction: column;
        }

        .about-image {
          order: -1;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .hero h1 {
          font-size: 2.2rem;
        }

        .hero-btns {
          flex-direction: column;
          align-items: center;
        }


        .section-title h2 {
          font-size: 2rem;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 120px 0 80px;
        }

        .hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .pricing-grid {
          grid-template-columns: 1fr;
        }
      }

/* ---- about styles ---- */
/* Reset and Base Styles */
      /* Removed duplicate reset and root styles - using main ones from top of file */
      

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      /* About Section */
      .about {
        background-color: var(--white);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .about-text {
        flex: 1;
      }

      .about-text h3 {
        font-size: 2rem;
        color: var(--dark-color);
        margin-bottom: 20px;
      }

      .about-text p {
        margin-bottom: 20px;
        color: var(--text-light);
      }

      .about-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      /* Mission Section */
      .mission {
        background-color: var(--light-color);
      }

      .mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .mission-card {
        background-color: var(--white);
        padding: 40px 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }

      .mission-card:hover {
        transform: translateY(-10px);
      }

      .mission-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 20px;
      }

      .mission-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark-color);
      }

      /* Team Section */
      .team {
        background-color: var(--white);
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      .team-card {
        background-color: var(--light-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        text-align: center;
        transition: var(--transition);
      }

      .team-card:hover {
        transform: translateY(-10px);
      }

      .team-img {
        height: 250px;
        overflow: hidden;
      }

      .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .team-card:hover .team-img img {
        transform: scale(1.1);
      }

      .team-info {
        padding: 20px;
      }

      .team-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: var(--dark-color);
      }

      .team-info p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
      }

      .team-social a {
        width: 35px;
        height: 35px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .team-social a:hover {
        background-color: var(--accent-color);
        transform: translateY(-3px);
      }

      /* Values Section */
      .values {
        background-color: var(--light-color);
      }

      .values-list {
        max-width: 800px;
        margin: 0 auto;
      }

      .value-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
      }

      .value-icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        padding: 15px;
        background-color: rgba(106, 90, 205, 0.1);
        border-radius: 50%;
        flex-shrink: 0;
      }

      .value-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .value-content p {
        color: var(--text-light);
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        text-align: center;
        padding: 80px 0;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
        font-size: 1.1rem;
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 2.8rem;
        }

        .about-content {
          flex-direction: column;
        }

        .about-image {
          order: -1;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .hero h1 {
          font-size: 2.2rem;
        }

        .hero-btns {
          flex-direction: column;
          align-items: center;
        }


        .section-title h2 {
          font-size: 2rem;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 120px 0 80px;
        }

        .hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .value-item {
          flex-direction: column;
          text-align: center;
          align-items: center;
        }
      }

/* ---- courses styles ---- */
/* Using main root styles and reset from top of file */

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      nav ul li a.active {
        color: var(--primary-color);
      }

      nav ul li a.active::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Page Header */
      .page-header {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .page-header-content {
        position: relative;
        z-index: 1;
      }

      .page-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
      }

      .breadcrumb {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
      }

      .breadcrumb a {
        color: var(--white);
        opacity: 0.8;
      }

      .breadcrumb a:hover {
        opacity: 1;
      }

      .breadcrumb span {
        margin: 0 10px;
        opacity: 0.8;
      }

      /* Courses Grid */
      .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
      }

      .course-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
      }

      .course-card:hover {
        transform: translateY(-10px);
      }

      .course-img {
        height: 200px;
        overflow: hidden;
      }

      .course-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .course-card:hover .course-img img {
        transform: scale(1.1);
      }

      .course-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .course-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .course-content p {
        color: var(--text-light);
        margin-bottom: 15px;
        flex: 1;
      }

      .course-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
      }

      .course-duration {
        display: flex;
        align-items: center;
        color: var(--text-light);
        font-size: 0.9rem;
      }

      .course-duration i {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .price {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.2rem;
      }

      /* Course Categories */
      .course-categories {
        margin-bottom: 40px;
      }

      .category-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
      }

      .category-btn {
        padding: 8px 20px;
        background-color: var(--light-color);
        color: var(--dark-color);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
      }

      .category-btn:hover,
      .category-btn.active {
        background-color: var(--primary-color);
        color: var(--white);
      }

      /* Course Features */
      .course-features {
        background-color: var(--white);
        border-radius: 10px;
        padding: 40px;
        margin-bottom: 50px;
        box-shadow: var(--shadow);
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      .feature-item {
        text-align: center;
      }

      .feature-icon {
        width: 80px;
        height: 80px;
        background-color: rgba(106, 90, 205, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--primary-color);
        font-size: 1.8rem;
      }

      .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }

      .feature-item p {
        color: var(--text-light);
      }

      /* Pagination */
      .pagination {
        display: flex;
        justify-content: center;
        margin-top: 50px;
      }

      .pagination a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 5px;
        border-radius: 50%;
        background-color: var(--white);
        color: var(--dark-color);
        font-weight: 600;
        transition: var(--transition);
      }

      .pagination a:hover,
      .pagination a.active {
        background-color: var(--primary-color);
        color: var(--white);
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        overflow-y: auto;
        padding: 20px;
      }

      .modal-content {
        background-color: var(--white);
        max-width: 900px;
        margin: 50px auto;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        animation: modalFadeIn 0.3s ease;
      }

      @keyframes modalFadeIn {
        from {
          opacity: 0;
          transform: translateY(-50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        z-index: 1;
        background: none;
        border: none;
      }

      .close-modal:hover {
        color: var(--accent-color);
      }

      .modal-header {
        padding: 30px 30px 0;
      }

      .modal-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .modal-header .course-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
      }

      .modal-body {
        padding: 30px;
      }

      .course-details {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
      }

      .course-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
      }

      .course-info {
        flex: 1;
      }

      .course-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }

      .course-info p {
        margin-bottom: 20px;
        color: var(--text-light);
      }

      .course-features-list {
        margin-bottom: 20px;
      }

      .course-features-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
      }

      .course-features-list i {
        color: var(--primary-color);
        margin-right: 10px;
      }

      .course-tabs {
        margin-bottom: 30px;
      }

      .tab-buttons {
        display: flex;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
      }

      .tab-btn {
        padding: 10px 20px;
        background: none;
        border: none;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-light);
        position: relative;
      }

      .tab-btn.active {
        color: var(--primary-color);
      }

      .tab-btn.active::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
      }

      .tab-content {
        display: none;
      }

      .tab-content.active {
        display: block;
      }

      .curriculum-list {
        margin-bottom: 20px;
      }

      .curriculum-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
      }

      .curriculum-item h4 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
      }

      .curriculum-item p {
        color: var(--text-light);
        font-size: 0.9rem;
      }

      .instructor-card {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
      }

      .instructor-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
      }

      .instructor-info h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
      }

      .instructor-info p {
        color: var(--text-light);
        margin-bottom: 10px;
      }

      .instructor-social {
        display: flex;
        gap: 10px;
      }

      .instructor-social a {
        width: 35px;
        height: 35px;
        background-color: rgba(106, 90, 205, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
      }

      .instructor-social a:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .course-details {
          flex-direction: column;
        }

        .course-image {
          max-height: 300px;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .page-header h1 {
          font-size: 2.2rem;
        }


        .section-title h2 {
          font-size: 2rem;
        }
      }

      @media (max-width: 576px) {
        .page-header {
          padding: 120px 0 60px;
        }

        .page-header h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .course-features {
          padding: 20px;
        }

        .modal-header {
          padding: 20px 20px 0;
        }

        .modal-body {
          padding: 20px;
        }
      }

/* ---- blog styles ---- */
/* Using main root styles from top of file */
      

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Hero Section */
      .blog-hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .blog-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .blog-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        
      }

      .blog-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .blog-hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }

      /* Blog Grid Section */
      .blog-posts {
        background-color: var(--white);
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 40px;
      }

      .blog-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 500px;
      }

      .blog-card:hover {
        transform: translateY(-10px);
      }

      .blog-img {
        height: 250px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .blog-card:hover .blog-img img {
        transform: scale(1.1);
      }

      .blog-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .blog-meta {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: var(--text-light);
      }

      .blog-meta span {
        margin-right: 15px;
      }

      .blog-meta i {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .blog-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark-color);
      }

      .blog-content p {
        color: var(--text-light);
        margin-bottom: 20px;
        flex: 1;
      }

      .blog-excerpt {
        margin-bottom: 20px;
        flex: 1;
      }

      .read-more {
        display: inline-block;
        font-weight: 600;
        color: var(--primary-color);
        transition: var(--transition);
        margin-top: auto;
      }

      .read-more:hover {
        color: var(--accent-color);
      }

      .pagination {
        display: flex;
        justify-content: center;
        margin-top: 50px;
      }

      .pagination a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: var(--light-color);
        color: var(--dark-color);
        font-weight: 600;
        transition: var(--transition);
      }

      .pagination a:hover,
      .pagination a.active {
        background-color: var(--primary-color);
        color: var(--white);
      }

      /* Categories */
      .blog-categories {
        margin-bottom: 40px;
      }

      .categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }

      .category-btn {
        padding: 8px 20px;
        background-color: var(--light-color);
        color: var(--dark-color);
        border-radius: 30px;
        font-weight: 500;
        transition: var(--transition);
      }

      .category-btn:hover,
      .category-btn.active {
        background-color: var(--primary-color);
        color: var(--white);
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Blog Modal */
      .blog-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        overflow-y: auto;
        padding: 20px;
      }

      .blog-modal-content {
        background-color: var(--white);
        max-width: 900px;
        margin: 50px auto;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        animation: modalFadeIn 0.3s ease;
      }

      @keyframes modalFadeIn {
        from {
          opacity: 0;
          transform: translateY(-50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .close-blog-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        z-index: 1;
        background: none;
        border: none;
      }

      .close-blog-modal:hover {
        color: var(--accent-color);
      }

      .blog-modal-body {
        padding: 40px;
      }

      .blog-modal-img {
        height: 400px;
        overflow: hidden;
        margin-bottom: 30px;
      }

      .blog-modal-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .blog-modal-meta {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 0.95rem;
        color: var(--text-light);
      }

      .blog-modal-meta span {
        margin-right: 20px;
      }

      .blog-modal-meta i {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .blog-modal-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--dark-color);
      }

      .blog-modal-content p {
        margin-bottom: 20px;
        line-height: 1.8;
      }

      .blog-modal-content ul,
      .blog-modal-content ol {
        margin-bottom: 20px;
        padding-left: 20px;
      }

      .blog-modal-content li {
        margin-bottom: 10px;
      }

      .blog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }

      .blog-tag {
        padding: 5px 15px;
        background-color: var(--light-color);
        color: var(--dark-color);
        border-radius: 30px;
        font-size: 0.8rem;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .blog-hero h1 {
          font-size: 2.8rem;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .blog-hero h1 {
          font-size: 2.2rem;
        }

        .blog-hero-content h1,
        .hero-content h1,
        .hero h1,
        .privacy-hero h1,
        .page-header-content h1 {
          margin-top: 0;
          padding-top: 50px;
        }

        


        .section-title h2 {
          font-size: 2rem;
        }

        .blog-modal-img {
          height: 300px;
        }
      }

      @media (max-width: 576px) {
        .blog-hero {
          padding: 120px 0 80px;
        }

        .blog-hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .blog-grid {
          grid-template-columns: 1fr;
        }

        .blog-modal-body {
          padding: 25px;
        }

        .blog-modal-content h2 {
          font-size: 1.8rem;
        }
      }

/* ---- contact styles ---- */
/* Using main root styles from top of file */

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }

      /* Contact Section */
      .contact {
        background-color: var(--white);
      }

      .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .contact-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
      }

      .contact-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(106, 90, 205, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.5rem;
        flex-shrink: 0;
      }

      .contact-details h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
      }

      .contact-details p,
      .contact-details a {
        color: var(--text-light);
      }

      .contact-details a:hover {
        color: var(--accent-color);
      }

      .contact-form {
        background-color: var(--light-color);
        padding: 40px;
        border-radius: 10px;
        box-shadow: var(--shadow);
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark-color);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: var(--transition);
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* FAQ Section */
      .faq {
        background-color: var(--light-color);
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
      }

      .faq-question {
        padding: 15px 20px;
        background-color: var(--white);
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-question::after {
        content: "+";
        font-size: 1.5rem;
      }

      .faq-question.active::after {
        content: "-";
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .faq-answer.show {
        padding: 20px;
        max-height: 500px;
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        text-align: center;
        padding: 80px 0;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
        font-size: 1.1rem;
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 2.8rem;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .hero h1 {
          font-size: 2.2rem;
        }


        .section-title h2 {
          font-size: 2rem;
        }

        .contact-form {
          padding: 30px;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 120px 0 80px;
        }

        .hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .contact-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .contact-icon {
          margin-bottom: 15px;
        }
      }

/* ---- terms styles ---- */
/* Using main root styles from top of file */

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

     li{
      list-style: none;
     }
      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }


        .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-color);
        bottom: -10px;
        left: 25%;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/heading_background.jpg")
          no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }

      /* Terms Content */
      .terms-content {
        background-color: var(--white);
        padding: 50px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        margin-bottom: 40px;
      }

      .terms-content h2 {
        font-size: 1.8rem;
        color: var(--dark-color);
        margin: 30px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light-color);
      }

      .terms-content h3 {
        font-size: 1.4rem;
        color: var(--dark-color);
        margin: 25px 0 15px;
      }

      .terms-content p {
        margin-bottom: 15px;
        color: var(--text-light);
      }

      .terms-content ul,
      .terms-content ol {
        margin-bottom: 20px;
        color: var(--text-light);
      }

      .terms-content li {
        margin-bottom: 10px;
      }

      .highlight {
        background-color: rgba(255, 126, 95, 0.1);
        padding: 20px;
        border-left: 3px solid var(--accent-color);
        margin: 20px 0;
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        text-align: center;
        padding: 80px 0;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
        font-size: 1.1rem;
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 2.8rem;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .hero h1 {
          font-size: 2.2rem;
        }


        .section-title h2 {
          font-size: 2rem;
        }

        .terms-content {
          padding: 30px;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 120px 0 80px;
        }

        .hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }


        .section-title h2 {
          font-size: 1.8rem;
        }

        .terms-content {
          padding: 20px;
        }
      }

/* ---- privacy styles ---- */
/* Using main root styles from top of file */

      body {
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-color);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      a:hover {
        color: var(--accent-color);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        text-align: center;
      }

      .btn:hover {
        background-color: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .section {
        padding: 80px 0;
      }

      /* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
      }

      .logo span {
        color: var(--accent-color);
      }

      nav ul {
        display: flex;
      }

      nav ul li {
        margin-left: 30px;
      }

      nav ul li a {
        font-weight: 600;
        color: var(--dark-color);
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        bottom: -5px;
        left: 0;
        transition: var(--transition);
      }

      nav ul li a:hover::after {
        width: 100%;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
      }

      /* Privacy Policy Hero */
      .privacy-hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--secondary-color)
        );
        color: var(--white);
        padding: 150px 0 80px;
        text-align: center;
      }

      .privacy-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
      }

      .privacy-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto;
      }

      /* Privacy Content */
      .privacy-content {
        background-color: var(--white);
        padding: 60px 0;
      }

      .privacy-container {
        max-width: 900px;
        margin: 0 auto;
      }

      .privacy-section {
        margin-bottom: 40px;
      }

      .privacy-section h2 {
        font-size: 1.8rem;
        color: var(--dark-color);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light-color);
      }

      .privacy-section h3 {
        font-size: 1.4rem;
        color: var(--primary-color);
        margin: 25px 0 15px;
      }

      .privacy-section p {
        margin-bottom: 15px;
        line-height: 1.8;
      }

      .privacy-section ul {
        margin: 20px 0;
        padding-left: 20px;
      }

      .privacy-section ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
      }

      .privacy-section ul li::before {
        
        color: var(--accent-color);
        position: absolute;
        left: 0;
        font-size: 1.2rem;
      }

      .last-updated {
        font-style: italic;
        color: var(--text-light);
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid var(--light-color);
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-col h3::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
      }

      .footer-col p {
        margin-bottom: 15px;
        opacity: 0.8;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Responsive Styles */
      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          box-shadow: var(--shadow);
          transition: var(--transition);
          z-index: 999;
        }

        nav.active {
          left: 0;
        }

        nav ul {
          flex-direction: column;
          padding: 20px;
        }

        nav ul li {
          margin: 15px 0;
        }

        .privacy-hero h1 {
          font-size: 2.2rem;
        }

        .privacy-section h2 {
          font-size: 1.6rem;
        }
      }

      @media (max-width: 576px) {
        .privacy-hero {
          padding: 120px 0 60px;
        }

        .privacy-hero h1 {
          font-size: 1.8rem;
        }

        .section {
          padding: 60px 0;
        }
      }





      .blog-article {
        background-color: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: var(--shadow);
      }

      .blog-featured-image {
        margin-bottom: 30px;
      }

      .blog-featured-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: var(--shadow);
      }

      .blog-body h4 {
        margin-top: 25px;
        margin-bottom: 10px;
        color: var(--primary-color);
      }

      .blog-tags {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
      }

      .blog-tags span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-weight: 600;
      }

      .blog-tags .tag {
        background-color: var(--light-color);
        color: var(--primary-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
      }

      .blog-nav {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
      }

      .blog-nav .btn,
      .blog-nav .btn-outline {
        flex: 1 1 200px;
        text-align: center;
      }



















