.btn-consult a{
    text-decoration: none;
    color: #fff !important;
}
 .hero-section {
    background: linear-gradient(135deg, #003028 0%, #004038 50%, #005048 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60h60V0zM0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}


        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.4;
        }

        .cta-button {
            background: #ff4500;
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
        }

        .cta-button:hover {
            background: #e63e00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
            color: white;
        }

    
        .floating-element {
            position: absolute;
            z-index: 5;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(even) {
            animation-delay: -3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .book-1 {
            top: 15%;
            left: 5%;
            width: 180px;
            transform: rotate(-15deg);
        }

        .book-2 {
            top: 60%;
            left: 8%;
            width: 120px;
            transform: rotate(10deg);
        }

        .book-3 {
            top: 20%;
            right: 8%;
            width: 160px;
            transform: rotate(15deg);
        }

        .book-4 {
            top: 55%;
            right: 5%;
            width: 140px;
            transform: rotate(-10deg);
        }

        .laptop {
            bottom: 25%;
            left: 15%;
            width: 200px;
            transform: rotate(-5deg);
        }

        .phone {
            bottom: 15%;
            right: 15%;
            width: 120px;
            transform: rotate(8deg);
        }

        .pen {
            top: 40%;
            left: 20%;
            width: 80px;
            transform: rotate(45deg);
        }

        .paper {
            top: 35%;
            right: 25%;
            width: 60px;
            transform: rotate(-20deg);
        }

        
        .logo-section {
            background: #00332B;
            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .logo-text {
            color: white;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 400;
            margin-bottom: 40px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-slider {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .logo-track {
            display: inline-flex;
            animation: scroll 25s linear infinite;
            align-items: center;
        }

        .logo-item {
            margin: 0 80px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-item img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem !important;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .floating-element {
                display: none;
            }

            .logo-item {
                margin: 0 50px;
            }

            .logo-item img {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .logo-item {
                margin: 0 40px;
            }

            .logo-item img {
                height: 35px;
            }
        }

        .floating-element img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        
        }



        .logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #00332B, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #00332B, transparent);
}


.section-container {
  padding: 5rem 0;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #212529;
}

.main-heading .highlight {
  color: #008672;
}

.sub-heading {
  font-size: 1.125rem;
  color: #495057;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #343a40;
}

.checklist-item .material-icons {
  color: #008672;
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

.video-container {
  position: relative;
  height: 580px;
  width: 100%;
  padding-top: 56.25%; 
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unmute-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.unmute-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 992px) {
  .main-heading {
    font-size: 2.25rem;
  }
  .sub-heading {
    font-size: 1rem;
  }
  .unmute-button {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.75rem;
  }
  .sub-heading {
    font-size: 0.95rem;
  }
  .checklist-item {
    font-size: 0.95rem;
  }
  .checklist-item .material-icons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  .section-container {
    padding: 3rem 1rem;
  }
}




  .cta-section {
            background-color: #003028;
            color: #ffffff;
            padding: 3rem 1.5rem;
            border-radius: 1rem;
            margin: 2rem 0;
        }
        .cta-section .container {
            display: flex;
            max-width: 1140px !important;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .cta-text {
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
        }
        .cta-text span {
            font-weight: normal;
        }
        .cta-button {
            background-color: #f74922;
            color: #ffffff;
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #e63e1a;
            color: #ffffff;
        }
        @media (min-width: 768px) {
            .cta-section .container {
                flex-direction: row;
            }
            .cta-text {
                font-size: 2rem;
                text-align: left;
            }
        }































.services-section {
    width: 100%;
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #333333;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .highlight-text {
            color: #008672;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666666;
            margin-bottom: 1rem;
        }

        .section-subtitle a {
            color: #20b2aa;
            text-decoration: underline;
        }

        .section-subtitle a:hover {
            color: #1a9999;
        }

        .genre-text {
            text-align: center;
            font-size: 1.1rem;
            color: #333333;
            margin-bottom: 2rem;
        }

        .toggle-container {
            display: flex;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .toggle-buttons {
            display: flex;
            background: #f8f9fa;
            border-radius: 50px;
            padding: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .toggle-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            color: #666666;
        }

        .toggle-btn.active {
            background:#008672;
            color: white;
            box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
        }

        .toggle-btn:hover:not(.active) {
            color: #333333;
        }

        .services-grid {
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .services-grid.fade-out {
            opacity: 0;
        }

        .service-card {
            border: 3px solid #e9ecef;
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card.bestseller {
            border-color: #003028;
        }

        .service-card.advantage {
            border-color: #003028;
        }

        .service-card.elite {
            border-color: #003028;
        }

        .service-card.ghostwriting {
            border-color: #003028;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1rem;
        }

        .card-subtitle {
            font-size: 1rem;
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .features-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: #555555;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background-color: #008672;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.8rem;
            flex-shrink: 0;
        }

        .check-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .learn-more-btn {
            background: transparent;
            border: 2px solid #008672;
            color: #003028;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            width: calc(100% - 4rem);
        }

        .learn-more-btn:hover {
            background: #008672;
            color: white;
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.8rem;
            }
            
            .service-card {
                margin-bottom: 2rem;
                padding-bottom: 5rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .toggle-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .service-card {
                padding: 1.5rem;
                padding-bottom: 4rem;
            }

            .card-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }

            .toggle-buttons {
                width: 100%;
                max-width: 300px;
            }

            .toggle-btn {
                flex: 1;
                padding: 8px 15px;
            }
        }






        @media (max-width: 1024px) and (min-width: 992px) {
  .services-grid .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}






 .section-stats {
    color: white;
    background-color: #003028;
            padding: 80px 0;
        }
        .header-section {
            text-align: center;
            padding-bottom: 60px;
        }
        .header-section h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .header-section p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }
        .btn-schedule {
            background-color: #f26533;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }
        .btn-schedule:hover {
            background-color: #d8572a;
        }
        .by-the-numbers {
            padding-top: 60px;
        }
        .by-the-numbers-title {
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 40px;
            font-size: 1rem;
        }
        .stat-card {
            background-color: #004A3F;
            padding: 30px;
            border-radius: 12px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .highlight1{
            color: #008672;
        }
        .stat-card-title {
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #a0b5b3;
            margin-bottom: 10px;
        }
        .stat-card .main-stat {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .stat-card .big-text {
            font-size: 2.2rem;
            font-weight: 700;
        }
        .stat-card p {
            font-size: 0.95rem;
            color: #d4e0df;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .stat-card .read-more {
            color: #31a38f;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .stat-card .read-more:hover {
            color: #4ac7b1;
        }
        .arrow-container {
            position: relative;
        }
        .arrow-image {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(10%);
            width: 150px;
            z-index: -1;
        }
        @media (max-width: 991.98px) {
            .arrow-image {
               display: none;
            }
            .header-section h1 {
                font-size: 2.2rem;
            }
             .stat-card .main-stat {
                font-size: 2.5rem;
            }
            .stat-card .big-text {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 767.98px) {
            .header-section h1 {
                font-size: 2rem;
            }
             .header-section p {
                font-size: 1rem;
            }
        }





         .tools-section {
            padding: 60px 0;
        }
        .tools-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #003028;
            margin-bottom: 50px;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            background-color: transparent;
            margin-bottom: 20px;
        }
        .card-img-container {
            border-radius: 15px;
            overflow: hidden;
            background-color: #008080;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px;
        }
        .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
        .card-body {
            background-color: #f8f9fa;
            padding: 25px 5px;
        }
        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
        }






.testimonials-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #333333;
            text-align: center;
            margin-bottom: 4rem;
        }

        .highlight-text {
            color: #008672;
        }

        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            padding: 3rem;
            background: #fff;
            border-radius: 20px;
           
        }

        .testimonial-content {
            flex: 1;
            padding-right: 3rem;
        }

        .testimonial-quote {
            font-size: 2.2rem;
            font-style: italic;
            color: #008672;
            line-height: 1.4;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .testimonial-description {
            font-size: 1.1rem;
            color: #000;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            font-size: 1.2rem;
            font-weight: 600;
            color: #000;
        }

        .testimonial-image {
            flex-shrink: 0;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #20b2aa;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav:hover {
            background: #008672;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: -25px;
        }

        .carousel-nav.next {
            right: -25px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 3rem 0;
        }

        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: #008672;
            transform: scale(1.2);
        }

        .indicator-dot:hover {
            background: #20b2aa;
            opacity: 0.7;
        }


        @media (max-width: 992px) {
            .section-title {
                font-size: 2.8rem;
            }

            .carousel-slide {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .testimonial-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .testimonial-quote {
                font-size: 1.8rem;
            }

            .testimonial-image {
                width: 300px;
                height: 300px;
            }

            .carousel-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .carousel-indicators{
                display: none;
            }
            .testimonials-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.2rem;
                margin-bottom: 3rem;
            }

            .carousel-slide {
                padding: 1.5rem;
            }

            .testimonial-quote {
                font-size: 1.5rem;
            }

            .testimonial-description {
                font-size: 1rem;
            }

            .testimonial-image {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .cta-video-section{
                border-radius: none;
            }
            .section-title {
                font-size: 1.8rem;
            }

            .testimonial-quote {
                font-size: 1.3rem;
            }

            .testimonial-image {
                width: 200px;
                height: 200px;
            }

            .cta1-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        .carousel-wrapper {
            touch-action: pan-y;
        }


    @media (max-width: 1024px) {
            .cta-video-section{
                border-radius:0px !important;
            }
        }
.cta-video-section {
    border-radius: 20px;
    position: relative;
    background-color: #003028;
    padding: 60px 0;
}


.sectionc-title {
    margin-left: 20px;
    text-align: left;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.sectionc-subtitle {
    margin-left: 20px;
    text-align: start;
    font-size: 1.1rem;
    color: #fff;
}

.cta-buttonr {
    margin-left: 20px;
    background-color: #f74922;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-buttonr:hover {
    background-color: #e63e1a !important;
    color: #ffffff !important;
}

.video-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .sectionc-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .sectionc-subtitle {
        text-align: center;
    }

    .cta-buttonr {
        display: block;
        margin: 1rem auto 0 auto;
        text-align: center;
    }

    .video-container {
        margin-top: 1rem;
    }
}



.book-type-section {
            padding: 60px 0;
        }
        .book-type-section h2 {
            text-align: center;
            font-weight: 700;
            margin-bottom: 50px;
            font-size: 3rem;
            color: #1a1a1a;
        }
        .book-type-section h2 span {
            color: #008672;
        }
        .book-type-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 90px;
        }
        .book-type-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 120px;
        }
        .book-type-item:hover {
            transform: translateY(-5px);
        }
        .book-type-icon-wrapper {
            background-color: #003028;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .book-type-icon-wrapper .material-icons {
            color: #F2D9BB;
            font-size: 40px;
        }
        .book-type-item p {
            margin: 0;
            font-weight: 600;
            color: #333;
        }
        @media (max-width: 768px) {
            .book-type-section h2 {
                font-size: 2rem;
            }
            .book-type-container {
                gap: 15px;
            }
            .book-type-item {
                width: 100px;
            }
            .book-type-icon-wrapper {
                width: 70px;
                height: 70px;
                padding: 15px;
            }
            .book-type-icon-wrapper .material-icons {
                font-size: 30px;
            }
        }
        @media (max-width: 576px) {
            .book-type-container {
                justify-content: space-around;
            }
             .book-type-item {
                width: calc(50% - 10px);
                margin-bottom: 20px;
            }
        }



.section-padding {
  background-color: #003028;
  padding: 80px 0;
}

.section1-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: #a0b5b3;
  margin-bottom: 3rem;
}


.card-custom {
  background-color: #123c39;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #1a534e;
}

.card-custom .material-icons {
  font-size: 3rem;
  color: #4bdcb3;
  margin-bottom: 1rem;
}

.card-custom h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card-custom p {
  color: #a0b5b3;
  font-size: 0.9rem;
}

.btn-consult {
  background-color: #e55c3c;
  color: #ffffff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border: none;
  transition: background-color 0.3s;
}

.btn-consult:hover {
  background-color: #d44c2a;
  color: #ffffff;
}

.link-quiz {
  color: #a0b5b3;
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.link-quiz:hover {
  color: #ffffff;
}







 .podcast-section {
    
    background: linear-gradient(135deg, #003028 0%, #004038 50%, #005048 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .podcast-content {
            position: relative;
            z-index: 10;
        }

        .section-title {
            text-align: left;
            font-size: 2.8rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .section-description {
            font-size: 1.2rem;
            color: white;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .listen-btn {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .listen-btn:hover {
            background: white;
            color: #1a4d3a;
        }

        .phone-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 5;
        }

        .phone-mockup {
            width: 280px;
            height: auto;
            max-width: 100%;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
            transform: rotate(-5deg);
            transition: all 0.3s ease;
        }

        .phone-mockup:hover {
            transform: rotate(-2deg) scale(1.05);
        }

        .episodes-panel {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }

        .episodes-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 2rem;
        }

        .episodes-title .highlight {
            color: #20b2aa;
        }

        .episode-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .episode-item {
            display: flex;
            align-items: flex-start;
            padding: 1.2rem 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .episode-item:last-child {
            border-bottom: none;
        }

    
        .episode-number {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            min-width: 50px;
            margin-right: 1rem;
        }

        .episode-content {
            flex: 1;
            margin-right: 1rem;
        }

        .episode-title {
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            line-height: 1.4;
            margin-bottom: 0.3rem;
        }

        .episode-description {
            font-size: 0.9rem;
            color: #666666;
            line-height: 1.4;
        }

        .play-button {
            width: 40px;
            height: 40px;
            background: #20b2aa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

       
        .play-icon {
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }

            .phone-mockup {
                width: 220px;
                margin: 2rem 0;
            }

            .episodes-panel {
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .podcast-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
                text-align: center;
            }

            .section-description {
                font-size: 1.1rem;
                text-align: center;
            }

            .listen-btn {
                display: block;
                text-align: center;
                margin: 0 auto 2rem;
                max-width: 250px;
            }

            .phone-mockup {
                width: 200px;
                transform: rotate(0deg);
            }

            .phone-mockup:hover {
                transform: scale(1.05);
            }

            .episodes-panel {
                padding: 2rem;
            }

            .episodes-title {
                font-size: 1.5rem;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.6rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .listen-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .phone-mockup {
                width: 180px;
            }

            .episodes-panel {
                padding: 1.5rem;
            }

            .episode-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .episode-number {
                margin-bottom: 0.5rem;
            }

            .episode-content {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .play-button {
                align-self: flex-end;
            }
        }




        @media (min-width: 992px) and (max-width: 1400px) {
            .podcast-content {
                justify-content: center;
            }

            .podcast-content .col-lg-4:first-child {
                flex: 0 0 45%;
                max-width: 45%;
            }

            .podcast-content .col-lg-4:nth-child(2) {
                flex: 0 0 55%;
                max-width: 55%;
            }

            .podcast-content .col-lg-4:last-child {
                flex: 0 0 100%;
                max-width: 100%;
                margin-top: 3rem;
            }

            .episodes-panel {
                max-width: 800px;
                margin: 0 auto;
            }

            .episode-item {
                padding: 1.5rem 0;
            }

            .episode-number {
                min-width: 60px;
                font-size: 1.2rem;
            }

            .episode-title {
                font-size: 1.1rem;
            }
        }

        @media (min-width: 992px) and (max-width: 1200px) {
            .episodes-panel {
                padding: 2rem 1.5rem;
            }

            .episode-title {
                font-size: 0.95rem;
                line-height: 1.3;
            }

            .episode-number {
                min-width: 45px;
                font-size: 1rem;
            }

            .play-button {
                width: 35px;
                height: 35px;
            }

            .play-icon {
                border-left: 10px solid white;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
            }
        }




.ht2 {
    color: #F2D9BB;
}

.blogs-section {
    background-color: #003028;
    padding: 60px 0;
}

.blogs-section h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.card {
    background-color: #FFFFFF;
    color: #0A2E29;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;              
    height: 250px;         
    object-fit: cover;        
    border-radius: 0.5rem;    
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #0A2E29;
}

.card-meta {
    font-size: 0.875rem;
    color: #6C757D;
    margin-bottom: 1rem;
}

.card-text {
    color: #495057;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: #008672 !important;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}

.all-blogs-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: bold;
}






 .book-showcase-section {
            background-color: #003028;
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .main-headline {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .highlight {
            color: #F2D9BB;
        }

        .subheading {
            font-size: 1.25rem;
            color: #E0E0E0;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        .bold-text {
            font-weight: 700;
            color: white;
        }

        .carousel-container {
            margin-bottom: 60px;
            position: relative;
        }

        .swiper {
            width: 100%;
            padding: 20px 0 40px 0;
            overflow: visible;
        }

        .swiper-slide {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .book-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .book-card:hover {
            transform: translateY(-10px);
        }

        .book-cover {
            width: 200px;
            height: 300px;
            border-radius: 12px;
        
            object-fit: cover;
            margin-bottom: 20px;
            transition: box-shadow 0.3s ease;
        }

       
        .book-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 5px;
        }

        .star {
            color: #F2D9BB;
            font-size: 18px;
        }

        .rating-text {
            color: #E0E0E0;
            font-size: 16px;
            font-weight: 600;
        }

        .cta-container {
            text-align: center;
        }

        .cta-button {
            background-color: #FF5722;
            color: white;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #E64A19;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
        }

   
        @media (max-width: 1024px) {
            .main-headline {
                font-size: 2.5rem;
            }
            
            .book-cover {
                width: 180px;
                height: 270px;
            }
        }

        @media (max-width: 768px) {
            .book-showcase-section {
                padding: 60px 15px;
            }
            
            .main-headline {
                font-size: 2rem;
            }
            
            .subheading {
                font-size: 1.1rem;
            }
            
            .book-cover {
                width: 160px;
                height: 240px;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .carousel-container {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .main-headline {
                font-size: 1.75rem;
            }
            
            .subheading {
                font-size: 1rem;
            }
            
            .book-cover {
                width: 140px;
                height: 210px;
            }
            
            .cta-button {
                padding: 14px 28px;
                font-size: 16px;
            }
        }

     


        
.pop-section {
    background-color: #fff;
    padding: 60px 0;
}

.pop-section h2 {
    color: #003028;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.card {
    background-color: #FFFFFF;
    color: #0A2E29;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;              
    height: 250px;            
    object-fit: cover;       
    border-radius: 0.5rem;    
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #0A2E29;
}

.card-meta {
    font-size: 0.875rem;
    color: #6C757D;
    margin-bottom: 1rem;
}

.card-text {
    color: #495057;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: #0D6EFD;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}

.all-blogs-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: bold;
}

