* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.new_landing_logo_section {
    padding: 10px 0;
    width: 100%;
    background-color: #fff;
}

.new_landing_first_section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../img/ai_agents/new_landing_bg.jpg") center/cover no-repeat;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    margin-top: 20px;
}

.new_landing_first_section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFC708;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.new_landing_first_section p {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-in-out;
}

.new_landing_first_section .category-buttons,
.new_landing_first_section .agent-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.new_landing_first_section .category-buttons {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;
}

.new_landing_first_section .category-buttons button,
.new_landing_first_section .agent-buttons button {
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.new_landing_first_section .category-buttons button {
    background: transparent;
    color: #FFC708;
    border: 2px solid #FFC708;
    border-radius: 30px;
}

.new_landing_first_section .category-buttons button:hover {
    background: #FFC708;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 0 12px #FFC708;
}

.new_landing_first_section .agent-buttons {
    animation: fadeInUp 1.5s ease-in-out;
}

.new_landing_first_section .agent-buttons button {
    background: #000;
    border: 2px solid #FFC708;
    color: #FFC708;
}

.new_landing_first_section .agent-buttons button:hover {
    background: #FFC708;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 0 12px #FFC708;
}

.new_landing_first_section .card {
    background: rgba(17, 17, 17, 0.9);
    border: 2px solid #FFC708;
    border-radius: 16px;
    padding: 30px;
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 199, 8, 0.1);
    transition: 0.4s;
    animation: fadeInUp 1.3s ease-in-out;
}

.new_landing_first_section .card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #FFC708;
}

.new_landing_first_section .card ul {
    list-style: none;
}

.new_landing_first_section .card ul li {
    padding: 6px 0;
    color: #f1f1f1;
}

.new_landing_first_section .demo-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #FFC708;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 199, 8, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 199, 8, 1);
    }
}

.new_landing_second_section {
    padding: 80px 40px;
    background: #111;
    color: #fff;
    gap: 40px;
}

.new_landing_second_section .full-width-title {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.new_landing_second_section .full-width-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.new_landing_second_section .full-width-title h2 span {
    color: #FFC708;
}

.new_landing_second_section .full-width-title p {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 15px;
}

.new_landing_second_section .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.new_landing_second_section .content-left,
.new_landing_second_section .content-right {
    flex: 1 1 45%;
}

.new_landing_second_section .content-right {
    background: #000;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.new_landing_second_section .content-right h3 {
    font-size: 1.5rem;
    color: #FFC708;
    margin-bottom: 10px;
}

.new_landing_second_section .content-right p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.new_landing_second_section .agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.new_landing_second_section .agents-grid .agent {
    background: rgba(255, 199, 8, 0.05);
    border: 1px solid rgba(255, 199, 8, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
    cursor: pointer;
}

.new_landing_second_section .agents-grid .agent i {
    font-size: 2rem;
    color: #FFC708;
    margin-bottom: 10px;
}

.new_landing_second_section .agents-grid .agent:hover {
    background: rgba(255, 199, 8, 0.15);
    border-color: #FFC708;
    box-shadow: 0 0 20px rgba(255, 199, 8, 0.4);
}

.new_landing_second_section .activate-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #FFC708;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.new_landing_second_section .activate-btn:hover {
    background: #000;
    color: #FFC708;
    border: 2px solid #FFC708;
    box-shadow: 0 0 15px #FFC708;
}

.feature-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0px 40px 80px;
    background: #111;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1 1 50%;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 199, 8, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.feature i {
    font-size: 2rem;
    color: #FFC708;
}

.feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature:hover {
    background: rgba(255, 199, 8, 0.15);
    border-color: #FFC708;
    box-shadow: 0 0 20px rgba(255, 199, 8, 0.4);
}

.feature-text {
    flex: 1 1 40%;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 60px;
}

.feature-text h2 span {
    color: #FFC708;
}

.new_landing_fourth_section {
    background: #000000;
    color: #fff;
    padding: 4rem 2rem;
}

.new_landing_fourth_section .container {
    max-width: 1200px;
    margin: auto;
}

.new_landing_fourth_section .heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.new_landing_fourth_section .heading h2 {
    font-size: 2rem;
    color: #FFC708;
    font-weight: 700;
}

.new_landing_fourth_section .heading p {
    font-size: 1rem;
    color: #fff;
}

.new_landing_fourth_section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.new_landing_fourth_section .card {
    background: #111;
    border: 2px solid #FFC708;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    cursor: pointer;
}

.new_landing_fourth_section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 199, 8, 0.4);
}

.new_landing_fourth_section .icon {
    font-size: 2rem;
    color: #FFC708;
    margin-bottom: 1rem;
    display: inline-block;
    background: transparent !important;
}

.new_landing_fourth_section .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #FFC708;
}

.new_landing_fourth_section .card p {
    font-size: 0.95rem;
    color: #f5f5f5;
}

.new_landing_fifth_section {
    background: #111;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.new_landing_fifth_section .container {
    max-width: 1200px;
    margin: auto;
}

.new_landing_fifth_section .heading {
    margin-bottom: 3rem;
}

.new_landing_fifth_section .heading h2 {
    font-size: 2rem;
    font-weight: 700;
}

.new_landing_fifth_section .heading h2 span {
    color: #FFC708;
}

.new_landing_fifth_section .heading p {
    font-size: 1rem;
    color: #fff;
    max-width: 500px;
    margin: auto;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-items: center;
}

.hex {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 600;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  background: 
    linear-gradient(#FFC708, #FFC708) padding-box,
    linear-gradient(#000, #000) border-box;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  border: 4px solid transparent;
  transition: all .5s;
}

.hex:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 199, 8, 0.4);
}

.new_landing_sixth_section {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.new_landing_sixth_section .container {
    max-width: 1200px;
    margin: auto;
}

.new_landing_sixth_section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.new_landing_sixth_section h2 span {
    color: #FFC708;
}

.banner-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.floating-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFC708;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.floating-tag small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 2px;
    color: #333;
}

.new_landing_seventh_section {
    background: #111;
    color: #fff;
    padding: 4rem 2rem 0;
    text-align: center;
}

.new_landing_seventh_section .container {
    max-width: 1200px;
    margin: auto;
}

.new_landing_seventh_section h2 {
    font-size: 2rem;
    margin-bottom:1rem;
    font-weight: 700;
}

.new_landing_seventh_section h2 span {
    color: #FFC708;
}

.new_landing_seventh_section p.subtext {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-card ul li {
    margin: 0.4rem 0;
}

.pricing-card.highlight {
    background: #FFC708;
    color: #000;
    border: none;
    font-weight: 600;
}

.pricing-card.highlight .price {
    color: #000;
}

.new_landing_sevent_bottom_section{
    background-image: none;
}

.new_landing_sevent_bottom_section .card{
    border: 0;
    padding: 0;
    background-color: transparent;
    margin: 0;
}

.new_landing_sevent_bottom_section .card .demo-btn{
    margin: 0;
}

@media (max-width: 900px) {
    .new_landing_second_section {
        flex-direction: column;
        text-align: center;
    }

    .new_landing_second_section .content-left,
    .new_landing_second_section .content-right {
        max-width: 100%;
    }

    .feature-section {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-text {
        flex: 1 1 100%;
        margin-top: 30px;
    }

    .hex-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new_landing_first_section h1 {
        font-size: 2.2rem;
    }

    .new_landing_first_section p {
        font-size: 1rem;
    }

    .new_landing_first_section .card {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .new_landing_fourth_section .heading h2 {
        font-size: 1.6rem;
    }

    .hex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .new_landing_sixth_section h2 {
        font-size: 1.6rem;
    }

    .floating-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hex-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .new_landing_first_section{
        padding: 20px 10px;
    }
    .new_landing_first_section h1 {
        font-size: 2rem;
    }
    .new_landing_first_section .category-buttons button, .new_landing_first_section .agent-buttons button{
        padding: 8px 16px;
    }
    .new_landing_first_section .card {
        padding: 15px;
    }
    .new_landing_first_section .demo-btn{
        margin-top: 0;
    }
    .new_landing_second_section {
        padding: 20px 20px;
    }
    .new_landing_second_section .full-width-title h2{
        font-size: 2rem;
    }
    .feature-section{
        padding: 0 20px 80px;
    }
    .feature-text h2{
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .new_landing_fourth_section{
        padding: 2rem 2rem;
    }
    .new_landing_fifth_section {
        padding: 2rem 2rem;
    }
    .new_landing_sixth_section{
        padding: 2rem 2rem;
    }
    .new_landing_seventh_section{
        padding: 2rem 2rem 0;
    }
}

