@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Ubuntu", sans-serif;
    /* background-color: #f9f9f9; */

}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: -0.02em;
}

.section-title .seo-text {
    color: #dc3545;
}



.seo-tool {
    background: white;
    border-radius: 10px;
    padding: 30px 30px 30px;
    text-align: left;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    border: 1px solidrgb(238, 241, 245);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.seo-tool:hover {
    /* transform: translateY(-5px); */
    border: 1px solid #0a67de;
}

.seo-tool-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.seo-tool-icon img {
    width: 80px;
}

.seo-tool:hover .seo-tool-icon {
    transform: scale(1.05);
}

.seo-tool-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(11, 21, 35);
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-tool-description {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.seo-tool-button {
    background: #0a67de;
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
    white-space: nowrap;
    width: 100%;
    align-self: center;
    margin-top: auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    text-align: center;
    text-decoration: none;
}

.seo-tool:hover .seo-tool-button {
    opacity: 1;
    transform: translateY(0);
}

.seo-tool-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* hero */

.seo-bg {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.seo-bg .hero-section {
    background: url('../img/tools/bg.webp') no-repeat center top;
    background-size: cover;
    padding: 60px 40px 120px;
    border-radius: 40px;
    width: 100%;
    margin: 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.seo-bg .hero-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #00204a;
    margin-top: 20px;
}

.seo-bg .hero-section h2 {
    font-weight: 600;
    color: #e63946;
    font-size: 2rem;
}

.seo-bg .hero-section p {
    background: #e9f3ff;
    width: fit-content;
    margin: auto;
    padding: 5px 15px;
    border-radius: 8px;
}

.seo-bg .image-composition {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 300px;
    margin: 0 auto;
    pointer-events: none;
}

.seo-bg .laptop-img {
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    z-index: 1;
}

.seo-bg .phone-img {
    display: none;
}

.seo-bg .floating-left,
.seo-bg .floating-right {
    position: absolute;
    width: 250px;
    z-index: 2;
    border-radius: 10px;
}

.seo-bg .floating-left {
    left: 50%;
    transform: translateX(-180%) translateY(10%);
    top: 25%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.seo-bg .floating-right {
    right: 50%;
    transform: translateX(180%) translateY(10%);
    top: -5%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
    .seo-bg {
        display: flex;
        justify-content: center;
        padding: 20px 10px;
        position: relative;
    }

    .seo-bg .hero-section h1 {
        font-weight: 700;
        font-size: 1.7rem;
        color: #00204a;
        margin-top: 20px;
    }

    .seo-bg .hero-section h2 {
        font-weight: 600;
        color: #e63946;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .seo-bg .hero-section {
        background-size: cover;
    }

    .seo-bg .floating-left,
    .seo-bg .floating-right {
        position: absolute;
        width: 140px;
        z-index: 2;
        border-radius: 10px;
    }

    .seo-bg .floating-left {
        left: 50%;
        transform: translateX(-120%) translateY(20%);
        top: 25%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .seo-bg .floating-right {
        right: 50%;
        transform: translateX(130%) translateY(10%);
        top: -5%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .seo-bg .laptop-img {
        width: 100%;
        bottom: -100px;
    }

    .seo-bg .hero-section {
        padding-bottom: 100px;
    }

    .seo-bg .laptop-img {
        display: none;
    }

    .seo-bg .phone-img {
        position: absolute;
        bottom: -250px;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        z-index: 1;
        display: block;
    }
}

.seo-header {
    background: url('../img/tools/head.png') no-repeat;
    background-size: cover;
    padding: 60px 0;

}

.seo-header h1 {
    text-align: center;
    font-size: 2rem;
    margin: auto;
    top: 0;
    color: #08386D;
    font-family: 'Ubuntu', sans-serif;
}

.seo-header h1 span {

    color: #d42230;

}

/* CTA Button Styles with .seo-header parent */
.seo-header .cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.seo-header .btn-primary {
    background: #d42230;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.seo-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.seo-header .btn-primary:active {
    transform: translateY(0);
}

.seo-header .btn-secondary {
    background: transparent;
    color: #08386D;
    border: 2px solid #08386D;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.seo-header .btn-secondary:hover {
    background: #08386D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.seo-header .btn-secondary:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .seo-header .cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .seo-header .btn-primary,
    .seo-header .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Optional: Add icon support */
.seo-header .btn-icon {
    margin-right: 8px;
    font-size: 14px;
}


/* utm-form */

.seo-utm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    /* background-color: #f8f9fa; */
    min-height: 100vh;
}

.seo-utm .form-container {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 30px;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
}

.seo-utm .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.seo-utm .form-control {
    border: 1px solid #DFDFDF;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.seo-utm .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.seo-utm .form-control::placeholder {
    color: #adb5bd;
    font-size: 13px;
}

.seo-utm .btn-generate {
    background-color: #dc3545;
    border: none;
    color: white;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.seo-utm .btn-generate:hover {
    background-color: #c82333;
}

.seo-utm .btn-reset {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
    margin-top: 15px;
}

.seo-utm .btn-reset:hover {
    color: #c82333;
}

.seo-utm .results-container {
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    font-family: "Montserrat", sans-serif;
    height: 500px;
}

.seo-utm .results-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.seo-utm .result-section {
    margin-bottom: 25px;
}

.seo-utm .result-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.seo-utm .result-input {
    position: relative;
}

.seo-utm .result-input input {
    padding-right: 50px;
    border: 2px solid #DFDFDF;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
}

.seo-utm .copy-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.seo-utm .copy-btn:hover {
    color: #007bff;
}

.seo-utm .copy-btn img {
    width: 20px;
    height: 20px;
    /* background: #C5C5C5; */
}

.seo-utm .share-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.seo-utm .share-btn img {
    width: 20px;
    height: 20px;
}

.seo-utm .share-btn:hover {
    color: #007bff;
}

.seo-utm .feature-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.seo-utm .feature-card {

    border-radius: 16px;
    padding: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}


.seo-utm .feature-icon {
    width: 30px;
    height: 30px;
    background: #E4EBF3;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.seo-utm .feature-icon img {
    width: 15px;
    height: 15px;

}

.seo-utm .feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.seo-utm .feature-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.seo-utm .form-container h5 {
    font-size: 16px;
    color: #08386D;
    margin-bottom: 20px;
}

.seo-utm .form-container h5 i {

    color: #f1414f;
}

/* Toast styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    min-width: 250px;
}

/* Reset button styling */
.btn-reset-new {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
    margin-top: 15px;
    cursor: pointer;
}

.btn-reset-new:hover {
    color: #c82333;
}

.utm-cheat-sheet {
    background-color: rgba(239, 246, 255, 1);
    font-family: "Montserrat", sans-serif;
    padding: 20px 0;
}

.utm-cheat-sheet h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(8, 56, 109, 1);
    margin-bottom: 10px;
}

.utm-cheat-sheet table {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #DFDFDF;
}

.utm-cheat-sheet thead tr {
    border: 1px solid #DFDFDF;
}

.utm-cheat-sheet thead th {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    padding: 20px;
}

.utm-cheat-sheet tbody td {
    font-size: 14px;
    color: #333;
    padding: 15px;
}

@media (max-width: 768px) {
    .seo-utm .feature-cards {
        flex-direction: column;
    }

    .seo-utm .form-container,
    .seo-utm .results-container {
        padding: 20px;
    }
}

/* why-utm */
.why-utm {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;

}

.why-utm .utm-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    width: 350px;
    height: 350px;

}

.why-utm .hex-outside {
    position: absolute;
    top: 50%;
    left: -20px;
    /* Peeks in from left */
    transform: translateY(-50%);
    width: 250px;
    z-index: 0;
    /* opacity: 0.5; */
}

.why-utm .utm-card {
    background-color: #0a67de;
    border-radius: 40px;
    color: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    margin: 30px;
    /* text-align: center; */
}

.why-utm .icon-box {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    /* half of height to overlap */
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #0066e3;
    z-index: 2;
}


.why-utm .icon-box img {
    width: 50px;
    height: 50px;
}

.why-utm .utm-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 30px;
    font-size: 15px;
}

.why-utm .utm-card p {
    font-size: 11px;
    text-align: left;
}

.why-utm .utm-card ul {
    font-size: 13px;
    padding-left: 1.2rem;
    margin-top: 1rem;
    text-align: left;
    line-height: 30px;
    list-style: disc;
}

/* FAQ */

.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section .faq-title {
    position: relative;
    z-index: 2;
    margin: auto;
    color: rgba(0, 56, 111, 1);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.2;
    padding: 20px;
}

.faq-section .faq-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../img/tools/bg-faq.gif');
    background-size: cover;
    height: 100%;
    min-height: 500px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq-section .faq-container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.faq-section .faq-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    text-align: left;
    font-weight: 400;
    padding: 20px;
}

.faq-section .faq-item {
    background: white;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-section .faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-section .faq-question.active {
    border-bottom: 1px solid #e5e7eb;
}

.faq-section .faq-icon {
    font-size: 1rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-section .faq-icon.rotate {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
    margin-top: 20px;
}

.faq-section .faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section .faq-container {
        padding: 60px 0;
    }

    .faq-section .faq-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .faq-section .faq-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-section .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-section .faq-answer {
        padding: 0 1.2rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .faq-section .faq-title {
        font-size: 2rem;
    }

    .faq-section .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-section .faq-question {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .faq-section .faq-answer {
        padding: 0 1rem 0.9rem;
        font-size: 0.85rem;
    }
}

/* slider */

.seo-slider {
    background: rgba(239, 246, 255, 1);
    padding: 60px 0;
    overflow: hidden;

}

.seo-slider .slider-container {
    display: flex;
    align-items: stretch;
    gap: 30px;
    height: 350px;
}

.seo-slider .left-section {
    flex: 0 0 300px;
    /* background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%); */
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seo-slider .left-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.seo-slider .left-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    color: rgba(0, 56, 111, 1);
}

.seo-slider .left-section .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.seo-slider .cards-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
}

.seo-slider .cards-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.seo-slider .tool-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 30px;
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.seo-slider .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #20c997, #fd7e14);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.seo-slider .tool-card a {
    text-decoration: none;

}

/* .seo-slider .tool-card:hover::before {
            transform: translateX(0);
        }

        .seo-slider .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        } */

.seo-slider .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.seo-slider .card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.seo-slider .card-icon i {
    font-size: 2rem;
    color: #0d6efd;
    position: relative;
    z-index: 2;
}

.seo-slider .card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50px;
}

.seo-slider .card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-slider .card-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
    flex-grow: 1;
}

/* Arrow button styles */
.seo-slider .arrow-button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    z-index: 10;
}

.seo-slider .arrow-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.seo-slider .arrow-button:active {
    transform: translateY(-50%) scale(0.95);
}

.seo-slider .arrow-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.seo-slider .arrow-button:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .seo-slider .slider-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .seo-slider .left-section {
        flex: none;
        text-align: center;
        padding: 30px 20px;
    }

    .seo-slider .left-section h2 {
        font-size: 2rem;
    }

    .seo-slider .tool-card {
        flex: 0 0 calc(50% - 15px);
        margin-right: 20px;
    }

    .seo-slider .arrow-button {
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .seo-slider {
        padding: 40px 0;
    }

    .seo-slider .tool-card {
        flex: 0 0 calc(100% - 10px);
        margin-right: 15px;
    }

    .seo-slider .left-section {
        padding: 25px 15px;
    }

    .seo-slider .left-section h2 {
        font-size: 1.8rem;
    }

    .seo-slider .card-title {
        font-size: 1.2rem;
    }

    .seo-slider .card-description {
        font-size: 0.9rem;
    }

    .seo-slider .arrow-button {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .seo-slider .container {
        padding: 0 15px;
    }

    .seo-slider .tool-card {
        padding: 25px 20px;
    }

    .seo-slider .card-icon {
        width: 60px;
        height: 60px;
    }

    .seo-slider .card-icon i {
        font-size: 1.5rem;
    }
}


#currencyDropdown {
    max-height: 200px;
    overflow-y: auto;
}

/* Optional: Better scrollbar for webkit browsers */
#currencyDropdown::-webkit-scrollbar {
    width: 6px;
}

#currencyDropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#currencyDropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Fix for dropdown arrow positioning */
.currency-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    border-color: #DFDFDF;
    /* Match Bootstrap form-control height */
    /* min-height: calc(2.25rem + 2px); */
}

.currency-content {
    display: flex;
    align-items: center;
}

/* Bounce rate quality color indicators */
.bounce-rate-excellent {
    background-color: #d4edda !important;
    color: #155724 !important;
    border-color: #c3e6cb !important;
}

.bounce-rate-very-good {
    background-color: #d1ecf1 !important;
    color: #0c5460 !important;
    border-color: #bee5eb !important;
}

.bounce-rate-good {
    background-color: #cce5ff !important;
    color: #004085 !important;
    border-color: #b3d7ff !important;
}

.bounce-rate-average {
    background-color: #fff3cd !important;
    color: #856404 !important;
    border-color: #ffeaa7 !important;
}

.bounce-rate-poor {
    background-color: #ffe8d1 !important;
    color: #8a4a00 !important;
    border-color: #ffd19a !important;
}

.bounce-rate-very-poor {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border-color: #f5c6cb !important;
}

/* Toast styling for better visibility */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    margin-bottom: 10px;
}

/* Result section highlighting */
.result-input input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Animation for updated results */
.result-highlight {
    animation: highlightResult 0.5s ease-in-out;
}

@keyframes highlightResult {
    0% {
        background-color: #fff3cd;
    }

    50% {
        background-color: #ffeaa7;
    }

    100% {
        background-color: transparent;
    }
}

.seo-utm .robots-btn {
    background: rgb(8, 56, 109);
    color: #e2e2e2;
    font-size: 13px;
}

.seo-utm .form-check {
    font-size: 14px;
}

.seo-bg .flip {
    display: inline-block;
    position: relative;
    width: 700px;
    height: 40px;
    top: 10px;
    perspective: 500px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    justify-content: center;
}

.seo-bg .flip .step {
    font-weight: 600;
    display: block;
    opacity: 0;
    transform-origin: 0% 0%;
    transform: rotateX(90deg) translateX(0%);
    position: absolute;
    top: -20px;
    left: 50px;
    right: 50px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.seo-bg .flip .step.set {
    top: 0;
    opacity: 1;
    transform: rotateX(0deg) translateX(0%);
}

.seo-bg .flip .step.down {
    top: 40px;
    opacity: 0;
    transform: rotateX(-90deg) translateX(00%);
}


/* Tab Styles */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
    padding: 0 15px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.tab-button:hover {
    color: #dc3545;
    background-color: #f8f9fa;
}

.tab-button.active {
    color: #fff;
    background-color: #1a365d;
    border-bottom: 3px solid #dc3545;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .tabs-nav {
        gap: 3px;
        padding: 0 10px;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 14px;
        font-weight: 600;
    }

    .tab-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .container-xxl {
        padding: 0 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    .seo-bg .flip {
        display: inline-block;

        width: 400px;

    }

    .seo-bg .flip .step {

        top: -20px;
        left: 0px;
        right: 0px;

    }

    .tabs-container {
        margin-bottom: 30px;
        overflow: hidden;
    }

    .tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        gap: 5px;
        padding: 0 15px;
        margin-bottom: 25px;
        width: 100%;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        white-space: nowrap;
        min-width: 90px;
        max-width: 120px;
        flex: 0 0 auto;
        padding: 8px 10px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 6px 6px 0 0;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .tab-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .container-xxl {
        padding: 0 15px;
        overflow-x: hidden;
    }

    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .tabs-container {
        overflow: hidden;
    }

    .tabs-nav {
        padding: 0 10px;
        gap: 3px;
    }

    .tab-button {
        min-width: 75px;
        max-width: 90px;
        padding: 6px 8px;
        font-size: 11px;
        line-height: 1.2;
    }

    .tab-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .container-xxl {
        padding: 0 10px;
        overflow-x: hidden;
    }

    .seo-tool {
        margin-bottom: 15px;
    }

    .seo-tool-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .seo-tool-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Hero Section Mobile Fixes */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section h2 {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .image-composition {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section h2 {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .image-composition {
        transform: scale(0.7);
    }
}

.currency-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.currency-info h5 {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.currency-info p {
    margin: 5px 0;
    font-size: 14px;
}

.currency-conversion {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.conversion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.conversion-row:last-child {
    border-bottom: none;
}

.conversion-label {
    font-weight: 500;
    color: #495057;
}

.conversion-value {
    font-weight: 600;
    color: #007bff;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.location-badge img {
    margin-right: 5px;
}

/* Why section  */

.why-section {
    background: linear-gradient(180deg, #0A57B5 0%, #001D60 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.why-section .title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.why-section .lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.why-section .chatgpt-text {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.why-section .stats-container {
    margin: 4rem 0;
}

.why-section .stat-item {
    text-align: center;
    padding: 1rem;
}

.why-section .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.why-section .stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

.why-section .features-list {
    margin-top: 2rem;
}

.why-section .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    /* padding: 0.5rem 0; */
}

.why-section .feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;

}

.why-section .feature-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.why-section .feature-text strong {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-section h1 {
        font-size: 2.8rem;
    }

    .why-section .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .why-section {
        padding: 60px 0;
    }

    .why-section h1 {
        font-size: 2.2rem;
    }

    .why-section .stat-number {
        font-size: 2rem;
    }

    .why-section .stats-container {
        margin: 3rem 0;
    }
}

/* What section */

.what-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.what-section .section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;

    height: 400px;
}

.what-section .section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.what-section .content-wrapper {
    padding-left: 60px;
}

.what-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.what-section .description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.what-section .description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .what-section .content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .what-section h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .what-section .description {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .what-section {
        padding: 60px 0;
    }

    .what-section h2 {
        font-size: 2rem;
    }

    .what-section .section-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .what-section h2 {
        font-size: 1.8rem;
    }

    .what-section .description {
        font-size: 1rem;
    }
}

/* what section */

.how-to-use {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.how-to-use .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.how-to-use .step-card {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    text-align: left;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-use .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-to-use .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;

    border-radius: 8px;
    display: flex;
    align-items: left;
    justify-content: left;
}

.how-to-use .step-icon img {
    width: 50px;
    height: 50px;

}

.how-to-use .step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.how-to-use .step-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .how-to-use {
        padding: 60px 0;
    }

    .how-to-use .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .how-to-use .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .how-to-use .section-title {
        font-size: 2rem;
    }

    .how-to-use .step-card {
        padding: 30px 20px;
    }
}


/* How to */
.how-to {
    padding: 60px 0;
    background-color: #fff;
}

.how-to .main-title {
    text-align: center;
    margin-bottom: 60px;
}

.how-to .main-title h6 {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    margin-top: 30px;
}

.how-to .main-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 0;
}

.how-to .main-title .highlight {
    color: #dc3545;
}

.how-to .step-card {
    background: #F3F3F3;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.how-to .step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #878787;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #495057;
    z-index: 2;
}

.how-to .step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    margin-top: 20px;
}

.how-to .step-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.how-to .row {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .how-to .main-title h1 {
        font-size: 2.5rem;
    }

    .how-to .step-card {
        margin-bottom: 30px;
        padding: 35px 25px;
    }

    .how-to .step-number {
        left: -15px;
    }
}

@media (max-width: 576px) {
    .how-to .main-title h1 {
        font-size: 2rem;
    }

    .how-to .step-card {
        padding: 30px 20px;
    }

    .how-to .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        left: -15px;
    }
}