/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

/* ===== LAYOUT STRUCTURE ===== */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 150vh;
}

.main-content {
    flex: 1;
}

main {
    flex: 1;
    padding: 20px;
}

/* ===== HEADER STYLES ===== */
.top-header {
    background-color: #2a2346;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.top-header .nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 6px;
}

.top-header .nav-links a:hover {
    text-decoration: underline;
}

.top-header .social-icons {
    display: flex;
    gap: 8px;
}

.top-header .social-icons a {
    width: 30px;
    height: 30px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.top-header .social-icons a:hover {
    background-color: white;
    color: #b23a48;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.main-header .logo img {
    height: 60px;
}

/* ===== NAVIGATION ===== */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.main-nav li {
    position: relative;
}

.main-nav>ul>li>a {
    text-decoration: none;
    color: #111;
    padding: 8px;
    display: block;
}

.main-nav>ul>li>a:hover {
    color: #b23a48;
}

/* Dropdown Menu */
.main-nav ul ul {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0;
}

.main-nav ul ul li a {
    padding: 10px;
    text-decoration: none;
    color: #111;
    font-weight: normal;
    display: block;
}

.main-nav ul ul li a:hover {
    background: #f5f5f5;
    color: #b23a48;
}

.main-nav li:hover>ul {
    display: block;
}

/* ===== BUTTON STYLES ===== */
.login-btn {
    background: #ff8212;
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.login-btn:hover {
    background: #d86b0b;
}

.hero-btn1,
.hero-btn2 {
    padding: 12px 30px;
    border: 1px solid #292929;
    border-radius: 3px;
}

.hero-btn1 {
    background-color: #AC5507;
    border-color: #AC5507;
    color: #fff;
    margin-right: 5px;
}

.hero-btn1:hover {
    background-color: #292929;
    border-color: #292929;
    transition: all .50s ease;
}

.hero-btn2 {
    color: #292929;
}

.hero-btn2:hover {
    border-color: #AC5507;
    color: #AC5507;
    transition: all .50s ease;
}

/* ===== HERO SECTIONS ===== */
section {
    padding: 120px 15% 100px;
}

.hero-section {
    position: relative;
    height: 150vh;
    background-image: url(../img/Bg-5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 50%;
    padding: 40px;
}

.hero-img img {
    width: 100%;
}

.hero-text {
    width: 50%;
    padding: 40px;
}

.hero-text h2 {
    font-size: 30px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: .9rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Collection Hero Section */
.section {
    padding: 0px 10% 0px;
}

.clhero-section {
    background-color: #e6e3d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 3000px;
}

.collection-part-1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clhero-content {
    display: flex;
    align-items: center;
}

.cl-content {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clhero-img {
    width: 50%;
}

.clhero-img img {
    max-width: 550px;
    height: auto;
}

.clhero-text {
    width: 40%;
}

.cl-img {
    width: 30%;
}

.cl-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.cl-text {
    width: 70%;
}

.clhero-text h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.clhero-text p {
    font-size: 14px;
    margin-bottom: 20px;
}

.clhero-text a {
    padding: 20px 0;
    font-size: 14px;
}

/* ===== CARD SECTIONS ===== */
.card-section {
    width: 100%;
    height: 100%;
    margin-top: -300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-card {
    display: flex;
    width: 100% !important;
    justify-content: space-around;
}

.card {
    width: 350px;
    height: 550px;
    border-radius: 10px;
    padding: 2rem 1rem;
    background: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: .50s ease-in-out;
}

.card:hover {
    transform: translateY(20px);
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(0 176 155 / 0%), rgb(4 4 4));
    z-index: 2;
    transition: 0.5s all;
    opacity: 0;
}

.card:hover:before {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card .info {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}

.card:hover .info {
    opacity: 1;
    transform: translateY(0px);
}

.card .info h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.card .info p {
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
}

.card .info a {
    color: #F9FC10;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    background: url(../img/Bg-6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 3000px;
}

.product-heading h1 {
    font-size: 120px;
    text-align: center;
    text-transform: uppercase;
    color: #252525;
}

.product-heading h3 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-top: -120px;
}

.product-heading h3 span {
    color: #F9FC10;
}

.product-part-1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-content {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 25%;
}

.product-img img {
    width: 100%;
}

.product-text {
    width: 75%;
}

.product-text h2 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-text p {
    padding: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-text a {
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    height: 50vh;
    background: url(../img/Bg-7.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}

.newsletter-content {
    width: 100%;
    padding: 0 200px;
}

.newsletter-content h2 {
    text-align: center;
    font-size: 40px;
    color: #292929;
    text-transform: uppercase;
}

.newsletter-content hr {
    width: 350px;
}

.newsletter-content p {
    text-align: center;
    margin: 40px 0;
}

.newsletter-content a {
    color: #fff;
    background-color: rgb(255, 119, 0);
    padding: 12px 30px;
    border-radius: 3px;
}

.button_styles {
    color: #fff;
    background-color: rgb(255, 119, 0);
    padding: 10px 30px;
    border-radius: 3px;
}

.newsletter-content a:hover {
    background-color: #292929;
    transition: 0.5s all;
}

/* ===== WEBINAR SECTION ===== */
.webiner-section {
    height: 80vh;
    background: url(../img/Bg-1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}

.webiner-content {
    width: 100%;
    padding: 0 200px;
    margin-top: 100px;
}

.webiner-content h2 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
}

.webiner-content p {
    text-align: center;
    margin: 40px 0;
    color: #fff;
}

.webiner-content a {
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 30px;
    border-radius: 40px;
}

.webiner-content a:hover {
    color: #F9FC10;
    border-color: #F9FC10;
    transition: 0.5s all;
}

/* ===== SIGNUP SECTION ===== */
.signup-section {
    height: 60vh;
    background: url(../img/Bg-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}

.signup-content {
    width: 100%;
    padding: 0 200px;
}

.signup-content h2 {
    text-align: center;
    font-size: 40px;
    color: #292929;
    text-transform: uppercase;
}

.signup-content hr {
    width: 160px;
}

.signup-content p {
    text-align: center;
    margin: 40px 0;
    color: #292929;
}

.signup-content a {
    color: #fff;
    background-color: #AC5507;
    padding: 12px 30px;
    border-radius: 3px;
}

.signup-content a:hover {
    background-color: #292929;
    transition: 0.5s all;
}

/* ===== ACCORDION SECTION ===== */
.acordion {
    margin-top: -100px;
    background: url(../img/Bg-3.png);
    background-position: top center;
    background-repeat: no-repeat;
    padding: 200px 0;
    background-size: 100% 100%;
}

.acordion h2 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-top: 100px;
}

.acordion h2 span {
    color: #F9FC10;
}

.acordion-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.container {
    max-width: 1120px;
    width: 100%;
}

.wrapper {
    display: flex;
}

.wrapper img {
    padding-left: 10px;
}

.indicator {
    padding: 1.5rem 0;
}

.indicator li {
    width: 350px;
    align-items: center;
    grid-gap: .5rem;
    padding: 20px 2rem;
    cursor: pointer;
    font-size: .9rem;
    color: #fff;
    border-right: 5px solid transparent;
    background: #363535;
    margin-top: 10px;
}

.indicator li:hover {
    background: #CB0059;
    transition: 0.5s all;
}

.indicator li.active {
    border-right-color: #9C0045;
    background: #CB0059;
    color: #fff;
}

.content {
    padding: 2.5rem 3rem;
}

.content li {
    margin-top: 60px;
    display: none;
}

.content li.active {
    display: block;
}

.content li h2 {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 0;
}

.content li p {
    font-size: .9rem;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 2rem;
}

.content li a {
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

/* ===== SPECIAL SECTIONS ===== */
.blackcurve-bg {
    display: block;
    position: relative;
    color: #fff;
    margin-top: 52px;
}

.blackcurve-bg:after {
    content: "";
    /* background-image: url(../img/blackcurvebg.png); */
    background-color: #4d406B;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.pt-48 {
    padding-top: 3rem !important;
}

.pb-20 {
    padding-bottom: 2rem !important;
}

.webiner-bg:after {
    content: "";
    background: url(../img/backgroundwebnar.png);
    background-repeat: no-repeat;
    inset: 0;
    position: absolute;
    background-size: cover;
    z-index: -1;
}

.webiner-bg {
    display: block;
    position: relative;
    color: #fff;
}

.py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.z-40 {
    z-index: 40 !important;
}

.padding-top {
    padding-top: 120px;
}

/* ===== FEATURED REVIEWS GRID ===== */
#exampleid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.column {
    width: 15%;
    max-width: 150px;
    text-align: center;
}

.column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

#showMoreBtn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #ff8212;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Alternative Grid Layout */
.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.card_no_animation {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
}

.container_book {
    width: 60%;
    display: flex;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.img {
    max-width: 100%;
    max-height: 100%;
}

.text {
    font-size: 20px;
    padding-left: 20px;
}

.card1 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    background-color: 0 4px 8px 0 rgba(250, 250, 250, 0.2);
    width: 70%;
    padding: 20px;
}

.card1:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container_cards {
    display: flex;
}

.content_card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    background-color: 0 4px 8px 0 rgba(250, 250, 250);
    width: 33%;
    padding: 50px;
    text-align: center;
}

/* ===== INFO GRID ===== */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-box {
    border: 1px solid #ccc;
    padding: 20px;
    flex: 1 1 30%;
    min-width: 280px;
    box-sizing: border-box;
    background-color: #fff;
}

.info-box h3 {
    margin-top: 0;
    font-weight: bold;
}

.info-box a {
    color: #007BFF;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

h2 {
    margin-bottom: 20px;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    /* background: #e3e2e2; */
    background-color: #2a2346;
    color: #ffffff;
    padding: 40px 60px;
    justify-content: center;
    align-items: center;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer h3 {
    color: #ff8212;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #111;
}

.footer .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer .social-icons a {
    width: 32px;
    height: 32px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background: #fff;
    color: #111;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #111;
}

/* ===== ICONS ===== */
.fa-regular {
    color: #F9FC10;
    font-size: 18px;
    padding-right: 10px;
}

.content li .fa-regular {
    color: #F9FC10;
    font-size: 18px;
    padding-right: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1280px) {
    header {
        padding: 40px 10%;
    }

    header.sticky {
        padding: 10px 8%;
        background-color: #fff;
    }

    .hero-img {
        padding: 20px;
    }

    .hero-text {
        padding: 20px;
    }

    .hero-text h2 {
        font-size: 25px;
    }

    .card {
        width: 312px;
        height: 436px;
        border-radius: 14px;
        margin: 0 10px;
    }
}

@media (max-width: 1120px) {
    .hero-img {
        padding: 15px;
    }

    .hero-text {
        padding: 15px;
    }

    .hero-text h2 {
        font-size: 25px;
    }

    .card {
        width: 320px;
        height: 375px;
        border-radius: 14px;
        padding: 2rem 3rem;
        margin: 0 10px;
    }

    .newsletter-content {
        width: 100%;
        padding: 0 78px;
    }

    .webiner-content {
        width: 100%;
        padding: 0 90px;
        margin-top: 70px;
    }

    .signup-content {
        width: 100%;
        padding: 0 90px;
    }

    .container {
        max-width: 960px;
    }

    .content {
        padding: 2.5rem 1rem;
    }

    .content li {
        margin-top: 29px;
    }
}

@media (max-width: 1060px) {
    /* Mobile menu styles remain the same */
}

@media (max-width: 800px) {
    section {
        padding: 80px 5% 50px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-btn1,
    .hero-btn2 {
        padding: 10px 25px;
        font-size: .7rem;
    }

    .card {
        width: 320px;
        height: 345px;
        padding: 2rem 1rem;
        margin: 0 10px;
    }

    .card-section {
        margin-top: -425px;
    }

    .product-section {
        background-size: cover;
    }

    .product-heading h1 {
        font-size: 90px;
    }

    .product-heading h3 {
        font-size: 30px;
        margin-top: -90px;
    }

    .product-text h2 {
        font-size: 20px;
    }

    .product-text p {
        font-size: 12px;
    }

    .newsletter-section {
        height: 34vh;
    }

    .newsletter-content h2 {
        font-size: 30px;
    }

    .newsletter-content hr {
        width: 262px;
    }

    p {
        font-size: .7rem;
        text-align: center;
        margin: 24px 0;
    }

    a {
        font-size: .7rem;
        padding: 10px 25px;
        border-radius: 3px;
    }

    .button_styles {
        font-size: .7rem;
        padding: 10px 25px;
        border-radius: 3px;
    }

    .webiner-content h2 {
        font-size: 30px;
    }

    .webiner-content p {
        font-size: .7rem;
        text-align: center;
        margin: 24px 0;
    }

    .webiner-content a {
        font-size: .7rem;
        padding: 10px 25px;
        border-radius: 40px;
    }

    .webiner-section {
        height: 60vh;
    }

    .signup-content h2 {
        font-size: 30px;
    }

    .signup-content hr {
        width: 120px;
    }

    .signup-content p {
        margin: 25px 0;
        font-size: .7rem;
    }

    .signup-content a {
        font-size: .7rem;
        padding: 10px 25px;
        border-radius: 3px;
    }

    .signup-section {
        height: 35vh;
    }

    .indicator li {
        width: 290px;
        padding: 15px 2rem;
        font-size: .7rem;
    }

    .wrapper img {
        height: 459px;
        padding-left: 23px;
    }

    .content li h2 {
        font-size: 20px;
    }

    .content li p {
        font-size: .7rem;
        line-height: 1.3rem;
    }

    .content li {
        margin-top: 2px;
    }

    .acordion {
        margin-top: -40px;
        padding: 90px 0;
    }

    .clhero-section {
        background-size: cover;
    }

    .clhero-text h2 {
        font-size: 20px;
    }

    .clhero-text p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .card {
        height: 330px;
    }

    header .navigation {
        width: 10% !important;
    }
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .wrapper {
        flex-direction: column;
    }

    .indicator {
        border-right: none;
    }
}

@media (max-width: 430px) {
    .hero-content {
        display: block;
    }

    .hero-img {
        width: 100%;
    }

    .hero-text {
        width: 100%;
    }

    .card-section {
        margin-top: -200px;
    }

    .wrapper-card {
        display: block;
    }

    .card {
        height: 505px;
        margin-bottom: 20px;
        margin-right: -10px;
    }

    .product-heading h1 {
        font-size: 55px;
        color: #fff;
    }

    .product-heading h3 {
        font-size: 20px;
        margin-top: 0px;
    }

    .product-part-1 {
        display: block;
    }

    .product-content {
        display: block;
    }

    .product-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-img {
        width: 100%;
    }

    .product-text {
        width: 100%;
    }

    .wrapper-card {
        width: 89% !important;
    }

    .newsletter-content {
        padding: 0 25px;
    }

    .webiner-content {
        padding: 0 25px;
    }

    .signup-content {
        padding: 0 25px;
    }

    .acordion {
        background-size: cover;
    }

    .wrapper img {
        display: none;
    }

    .indicator li {
        width: 86%;
        align-items: center;
        justify-content: center;
        margin-left: 30px;
    }

    .container {
        margin-top: 0;
    }

    .cl-content {
        display: block;
    }

    .cl-img {
        width: 100%;
    }

    .cl-text {
        width: 100%;
    }

    .clhero-content {
        display: block;
    }

    .clhero-img {
        width: 100%;
    }

    .clhero-text {
        width: 100%;
    }

    .content_card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
        background-color: 0 4px 8px 0 rgba(250, 250, 250);
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    .container_cards {
        display: block;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .wrapper-card {
        width: 97% !important;
    }
}

/* pagination */


.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    font-size: 12px;
    position: relative;
    float: left;
    padding: 6px 10px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #37a2e4;
    border-color: #37a2e4;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

.pager li {
    display: inline;
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.pager li>a:hover,
.pager li>a:focus {
    text-decoration: none;
    background-color: #eee;
}

.pager .next>a,
.pager .next>span {
    float: right;
}

.pager .previous>a,
.pager .previous>span {
    float: left;
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}





/* content below hero section */

.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url('../img/background-img.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    height: 600px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    color: #333;
}

.content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #2c3e50;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    color: #444;
}

.highlight {
    font-weight: 700;
    color: #ff8212;
}

.mission-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(52, 152, 219, 0.3);
}

.mission-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff8212;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }

    .content {
        padding: 40px 30px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1.1rem;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }
}



.logo-section {
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.logo-section h2 {
    margin-bottom: 20px;
    position: relative;
}

.logo-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-item-product:hover {
    transform: translateY(-10px);
}

.logo-product {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.logo:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-name {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    letter-spacing: 0.5px;
}

.divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

@media (max-width: 768px) {
    .logo-section {
        padding: 40px 25px;
    }

    .logo-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .logos-container {
        gap: 40px;
    }

    .logo-product {
        width: 150px;
        height: 100px;
    }

    .divider {
        height: 2px;
        width: 80px;
        background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    }
}

@media (max-width: 480px) {
    .logos-container {
        flex-direction: column;
        gap: 30px;
    }

    .logo-product {
        width: 140px;
        height: 90px;
    }
}