.main-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.features-dropdown,
.resources-dropdown {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: -3px !important;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    white-space: nowrap;
}

.arrow {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.features-dropdown.open .arrow,
.resources-dropdown.open .arrow {
    transform: rotate(180deg);
}

.box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    margin-top: 4px;
    min-width: 180px;
    z-index: 1000;
}

.box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box ul li {
    display: block;
    width: 100%;
}

.box ul li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.box ul li a:hover {
    background-color: #F5F5F5;
    color: #1751D0;
}

.features-dropdown.open .box,
.resources-dropdown.open .box {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-menu > li > a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.main-menu > li > a:hover {
    color: #1751D0;
}

@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .features-dropdown,
    .resources-dropdown {
        margin-bottom: -3px;
        width: 100%;
    }

    .box {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 4px;
        padding-left: 16px;
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .box ul li a {
        padding: 8px 0;
    }
}
.elem__price {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}


.elem__price.prof .price p,
.elem__price.prof .list ul li,
.elem__price.prof span,
.elem__price.prof p {
    color: white !important;
}

.elem__price.prof .btn .outline-btn {
    background: white !important;
    color: #1751D0 !important;
}

.elem__grid[data-plan] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.elem__grid[data-plan]:hover {
    transform: translateY(-5px);
}

.elem__grid.prof {
    background: #1751D0 !important;
}

.elem__grid.prof .plan p,
.elem__grid.prof .plan span,
.elem__grid.prof .price p,
.elem__grid.prof .price span,
.elem__grid.prof .content__part p {
    color: white !important;
}

.elem__grid.prof .btn .outline-btn {
    background: white !important;
    color: #1751D0 !important;
    border-color: white !important;
}

.elem__grid.prof .content__part img[src*="activecheck.svg"] {
    filter: brightness(0) invert(1);
}

/* X mark styling for unselected state */
.all__plans .outer__plans > .content .grid > .elem__grid .content__part > p img[src*="x-mark"] {
    width: 23px;
    height: 15px;
    vertical-align: middle;
}

/* X mark styling for selected state (blue background) */
.elem__grid.prof .content__part img[src*="x-mark"] {
    filter: brightness(0) invert(1);
}

/* Center SVGs */
.all__plans .outer__plans > .content .grid > .elem__grid .content__part > p img {
    display: block;
    margin: 0 auto;
}

/* Add padding for numbers and text */
.all__plans .outer__plans > .content .grid > .elem__grid .content__part > p:not(:has(img)) {
    padding-left: 7px;
}

/* Make X marks darker */
.all__plans .outer__plans > .content .grid > .elem__grid .content__part img[src*="x-mark-black"] {
    opacity: 0.8;
}

/* Update text alignment for all content parts */
.all__plans .outer__plans > .content .grid > .elem__grid .content__part > p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 24px;
}

/* Pricing Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px auto;
}

.pricing-toggle span {
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.pricing-toggle span.active {
    color: #1751D0;
    font-weight: 600;
}

.pricing-toggle .discount {
    background: #e6f0ff;
    color: #1751D0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #1751D0;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Price Display */
.yearly-price {
    display: none;
}

.price-wrapper {
    margin: 10px 0;
}

.price-wrapper p {
    font-size: 20px;
    font-weight: 600;
    color: #1751D0;
    margin: 0;
}

.price-wrapper span {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.price-wrapper small {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.x-mark {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Pricing Styles */
.price .original-price,
.price-wrapper .original-price {
    color: #666;
    margin-right: 8px;
    font-size: 14px;
    text-decoration: line-through;
}

.yearly-price,
.monthly-price {
    font-size: 1.2em;
    color: #1751D0;
    font-weight: 600;
}
@media (max-width: 991px) {
    .all__plans .outer__plans > .content .grid {
        min-width: 1382px !important;
        }
  }

  .hero__section .outer__hero>h1 {
    text-align:center;
    margin-top:0px;
    margin-bottom:24px;
    background:linear-gradient(94deg, #2B66FF 14.9%, #052065 82.04%);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-family:"Inter" ,sans-serif;
    font-size:64px;
    line-height:74px;
    letter-spacing:-1px;
    font-weight:600;
  }

.integration__wrapper .outer__integration .tracking-search {
    margin-top: 28px;
}

.integration__wrapper .outer__integration .tracking-search form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    height: 95px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 14px 36px rgba(2, 24, 73, 0.10), 0 2px 6px rgba(2, 24, 73, 0.04);
}

.integration__wrapper .outer__integration .tracking-search input[type="text"] {
    flex: 1 1 auto;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 132px 0 24px;
    font-size: 16px;
    color: #1F2937;
    background: transparent;
}

.integration__wrapper .outer__integration .tracking-search input::placeholder {
    color: #9CA3AF;
}

.integration__wrapper .outer__integration .tracking-search button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 104px;
    border: none;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(90deg, #052065 0%, #2B66FF 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
}

.integration__wrapper .outer__integration .tracking-search button[type="submit"]::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 28px;
    background: #ffffff;
    border-left: 1px solid rgba(17, 24, 39, 0.08);
    transform: skewX(-12deg);
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    pointer-events: none;
}

.integration__wrapper .outer__integration .tracking-search button[type="submit"] svg {
    display: block;
}

@media (min-width: 992px) {
    .integration__wrapper .outer__integration {
        margin-top: 24px;
    }
}

.integration__wrapper .outer__integration .tracking-search form:focus-within {
    border-color: rgba(43, 102, 255, 0.35);
    box-shadow: 0 0 0 4px rgba(43, 102, 255, 0.08), 0 8px 24px rgba(2, 24, 73, 0.08), 0 2px 6px rgba(2, 24, 73, 0.04);
}

.integration__wrapper .outer__integration .tracking-search button[type="submit"]:hover {
    filter: brightness(1.03);
}

@media (max-width: 575px) {
    .integration__wrapper .outer__integration .tracking-search form {
        height: 60px;
        max-width: 100%;
        border-radius: 12px;
    }

    .integration__wrapper .outer__integration .tracking-search button[type="submit"] {
        width: 52px;
        right: 6px;
        top: 6px;
        bottom: 6px;
        border-radius: 10px;
    }
}
