/* =========================================================
   TEAMOTRACK WEBSITE
   Premium SaaS UI
   Part 1
=========================================================*/

/*==========================
RESET
==========================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    background: #ffffff;

    color: #0f172a;

    overflow-x: hidden;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

button {

    border: none;

    cursor: pointer;

    font-family: inherit;

}

ul {

    list-style: none;

}



/*==========================
VARIABLES
==========================*/

:root {

    --primary: #2563EB;

    --primary-dark: #1d4ed8;

    --secondary: #0f172a;

    --accent: #10b981;

    --text: #334155;

    --white: #ffffff;

    --light: #f8fafc;

    --border: #e2e8f0;

    --shadow: 0 10px 40px rgba(15, 23, 42, .08);

    --radius: 18px;

    --transition: .35s ease;

}



/*==========================
GLOBAL
==========================*/

.container {

    width: min(1180px, 92%);

    margin: auto;

}

section {

    padding: 90px 0;

}

.section-heading {

    text-align: center;

    max-width: 760px;

    margin: auto;

    margin-bottom: 70px;

}

.section-badge {

    display: inline-block;

    background: #e0edff;

    color: var(--primary);

    padding: 8px 18px;

    border-radius: 100px;

    font-weight: 700;

    font-size: 14px;

    margin-bottom: 20px;

}

.section-heading h2 {

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-weight: 800;

}

.section-heading p {

    color: var(--text);

    font-size: 18px;

}



/*==========================
ANNOUNCEMENT
==========================*/

.announcement {

    background: #0f172a;

    color: #fff;

    padding: 12px 0;

    text-align: center;

    font-size: 15px;

}

.announcement a {

    color: #60a5fa;

    font-weight: 700;

    margin-left: 10px;

}



/*==========================
NAVBAR
==========================*/

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .80);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 82px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 28px;

    font-weight: 800;

    color: var(--secondary);

}

.logo img {

    width: 42px;

}

.logo span {

    color: var(--primary);

}

.nav {

    display: flex;

    gap: 35px;

}

.nav a {

    color: #475569;

    font-weight: 600;

    transition: var(--transition);

}

.nav a:hover {

    color: var(--primary);

}

.nav-buttons {

    display: flex;

    gap: 16px;

}

.mobile-menu {

    display: none;

    background: none;

    font-size: 30px;

}



/*==========================
BUTTONS
==========================*/

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    border-radius: 14px;

    background: var(--primary);

    color: #fff;

    font-weight: 700;

    transition: var(--transition);

    box-shadow: 0 10px 30px rgba(37, 99, 235, .25);

}

.btn-primary:hover {

    transform: translateY(-3px);

    background: var(--primary-dark);

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    border-radius: 14px;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-weight: 700;

    transition: var(--transition);

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

.big-btn {

    min-width: 190px;

}



/*==========================
HERO
==========================*/

.hero {

    position: relative;

    overflow: hidden;

    padding-top: 120px;

    padding-bottom: 120px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    gap: 70px;

}

.hero-left {

    position: relative;

    z-index: 2;

}

.badge {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 100px;

    background: #eaf2ff;

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 25px;

}

.hero h1 {

    font-size: 66px;

    font-weight: 900;

    line-height: 1.08;

    margin-bottom: 28px;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    color: var(--text);

    font-size: 20px;

    max-width: 620px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-top: 40px;

}



/*==========================
HERO STATS
==========================*/

.hero-stats {

    display: flex;

    gap: 50px;

    margin-top: 60px;

}

.hero-stats h3 {

    font-size: 42px;

    color: var(--primary);

    font-weight: 800;

}

.hero-stats p {

    font-size: 15px;

    color: #64748b;

}



/*==========================
DASHBOARD
==========================*/

.hero-right {

    position: relative;

}

.dashboard-card {

    background: #fff;

    border-radius: 25px;

    box-shadow: var(--shadow);

    overflow: hidden;

}

.dashboard-card img {

    width: 100%;

}



/*==========================
FLOATING CARDS
==========================*/

.floating-card {

    position: absolute;

    background: #fff;

    border-radius: 15px;

    padding: 16px 22px;

    box-shadow: var(--shadow);

    font-weight: 700;

    animation: float 5s ease-in-out infinite;

}

.card-one {

    top: 8%;

    left: -40px;

}

.card-two {

    bottom: 15%;

    left: -30px;

}

.card-three {

    right: -30px;

    top: 20%;

}



/*==========================
BLUR
==========================*/

.hero-blur {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .45;

}

.hero-blur-one {

    width: 450px;

    height: 450px;

    background: #93c5fd;

    top: -120px;

    left: -150px;

}

.hero-blur-two {

    width: 380px;

    height: 380px;

    background: #bfdbfe;

    bottom: -120px;

    right: -80px;

}



/*==========================
TRUSTED
==========================*/

.trusted {

    background: #f8fafc;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}

.trusted p {

    text-align: center;

    font-weight: 700;

    color: #64748b;

    margin-bottom: 40px;

}

.logo-slider {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 25px;

}

.logo-slider div {

    background: #fff;

    border-radius: 14px;

    padding: 25px;

    text-align: center;

    font-weight: 700;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);

    transition: .3s;

}

.logo-slider div:hover {

    transform: translateY(-6px);

}



/*==========================
ANIMATION
==========================*/

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0);

    }

}



/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px) {

    .hero-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-stats {

        justify-content: center;

    }

    .nav {

        display: none;

    }

    .nav-buttons {

        display: none;

    }

    .mobile-menu {

        display: block;

    }

    .logo-slider {

        grid-template-columns: repeat(2, 1fr);

    }

    .hero h1 {

        font-size: 48px;

    }

    .section-heading h2 {

        font-size: 36px;

    }

}

@media(max-width:600px) {

    .hero {

        padding-top: 80px;

    }

    .hero h1 {

        font-size: 38px;

    }

    .hero p {

        font-size: 17px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-stats {

        flex-direction: column;

        gap: 20px;

    }

    .section-heading h2 {

        font-size: 30px;

    }

    .logo-slider {

        grid-template-columns: 1fr;

    }

}

/*=========================================================
SHOWCASE
=========================================================*/

.showcase {
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, .12);
}

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #eff6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text);
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .10);
}



/*=========================================================
FEATURES
=========================================================*/

.features {
    background: #f8fafc;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    border: 1px solid var(--border);

    transition: all .35s ease;

    position: relative;

    overflow: hidden;

}

.feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s;

}

.feature-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 45px rgba(15, 23, 42, .10);

}

.feature-card:hover::before {

    transform: scaleX(1);

}

.card-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: #eff6ff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    margin-bottom: 22px;

}

.feature-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

}

.feature-card p {

    color: var(--text);

}



/*=========================================================
HOW IT WORKS
=========================================================*/

.how-it-works {
    background: #fff;
}

.steps {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.step {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 40px 30px;

    text-align: center;

    transition: .35s;

    position: relative;

}

.step:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(15, 23, 42, .10);

}

.step-number {

    width: 72px;

    height: 72px;

    margin: auto;

    margin-bottom: 22px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563EB, #3B82F6);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    font-weight: 800;

}

.step h3 {

    margin-bottom: 15px;

    font-size: 24px;

}

.step p {

    color: var(--text);

}



/*=========================================================
WHY US
=========================================================*/

.why-us {

    background: #f8fafc;

}

.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.why-grid img {

    width: 100%;

    border-radius: 24px;

    box-shadow: 0 25px 55px rgba(15, 23, 42, .10);

}

.why-grid h2 {

    font-size: 46px;

    margin: 20px 0;

}

.why-grid p {

    color: var(--text);

    font-size: 18px;

    margin-bottom: 30px;

}

.check-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.check-list li {

    background: #fff;

    padding: 16px 20px;

    border-radius: 14px;

    border: 1px solid var(--border);

    font-weight: 600;

    transition: .3s;

}

.check-list li:hover {

    background: #eff6ff;

    border-color: #bfdbfe;

}



/*=========================================================
STATISTICS
=========================================================*/

.stats {

    background: linear-gradient(135deg, #2563EB, #1E40AF);

    color: #fff;

}

.stats .container {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.stat-box {

    text-align: center;

    padding: 45px 20px;

}

.stat-box h2 {

    font-size: 54px;

    font-weight: 900;

    margin-bottom: 12px;

}

.stat-box p {

    font-size: 18px;

    opacity: .92;

}



/*=========================================================
INDUSTRIES
=========================================================*/

.industries {

    background: #fff;

}

.industry-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

}

.industry-card {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 40px 30px;

    transition: .35s;

    text-align: center;

    position: relative;

    overflow: hidden;

}

.industry-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .35s;

}

.industry-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 45px rgba(15, 23, 42, .12);

}

.industry-card:hover::after {

    transform: scaleX(1);

}

.industry-card span {

    font-size: 54px;

    display: block;

    margin-bottom: 20px;

}

.industry-card h3 {

    font-size: 26px;

    margin-bottom: 15px;

}

.industry-card p {

    color: var(--text);

}



/*=========================================================
RESPONSIVE (PART 2)
=========================================================*/

@media(max-width:1100px) {

    .showcase-grid,
    .why-grid {

        grid-template-columns: 1fr;

    }

    .steps {

        grid-template-columns: repeat(2, 1fr);

    }

    .stats .container {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .steps {

        grid-template-columns: 1fr;

    }

    .check-list {

        grid-template-columns: 1fr;

    }

    .stats .container {

        grid-template-columns: 1fr;

    }

    .showcase-grid {

        gap: 40px;

    }

    .why-grid {

        gap: 40px;

    }

    .why-grid h2 {

        font-size: 36px;

    }

    .feature-item {

        flex-direction: column;

        text-align: center;

    }

    .feature-icon {

        margin: auto;

    }

}

@media(max-width:576px) {

    .feature-grid {

        grid-template-columns: 1fr;

    }

    .industry-grid {

        grid-template-columns: 1fr;

    }

    .feature-card,
    .industry-card {

        padding: 28px;

    }

    .stat-box h2 {

        font-size: 42px;

    }

}

/*=========================================================
TESTIMONIALS
=========================================================*/

.testimonials {
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author strong {
    font-size: 18px;
    color: var(--secondary);
}

.author span {
    color: #64748b;
}



/*=========================================================
FAQ
=========================================================*/

.faq {
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
}

.faq-question {

    width: 100%;

    background: #fff;

    padding: 24px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 20px;

    font-weight: 700;

    text-align: left;

    transition: .3s;

}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question::after {
    content: "+";
    font-size: 28px;
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 30px 28px;
    color: var(--text);
    line-height: 1.8;
}



/*=========================================================
CTA
=========================================================*/

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563EB, #1E40AF);
}

.cta-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    padding: 60px;

    border-radius: 28px;

    border: 1px solid rgba(255, 255, 255, .15);

}

.cta h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 18px;
    font-weight: 800;
}

.cta p {
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
    max-width: 650px;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary);
    min-width: 220px;
}

.cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
}



/*=========================================================
FOOTER
=========================================================*/

footer {
    background: #0f172a;
    color: #fff;
    padding-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

footer h3 {
    font-size: 34px;
    margin-bottom: 22px;
}

footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

footer p {
    color: #cbd5e1;
    line-height: 1.8;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

footer li {
    color: #cbd5e1;
}

footer a {
    transition: .3s;
}

footer a:hover {
    color: #60a5fa;
}

.copyright {

    border-top: 1px solid rgba(255, 255, 255, .08);

    margin-top: 70px;

    text-align: center;

    padding: 28px;

    color: #94a3b8;

    font-size: 15px;

}



/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px) {

    .testimonial-grid {

        grid-template-columns: 1fr 1fr;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .cta-box {

        flex-direction: column;

        text-align: center;

    }

}

@media(max-width:768px) {

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .cta {

        padding: 70px 0;

    }

    .cta-box {

        padding: 40px 30px;

    }

    .cta h2 {

        font-size: 34px;

    }

    .faq-question {

        font-size: 18px;

        padding: 20px;

    }

    .faq-answer p {

        padding: 0 20px 20px;

    }

}

@media(max-width:576px) {

    .cta h2 {

        font-size: 28px;

    }

    .cta p {

        font-size: 16px;

    }

    footer h3 {

        font-size: 28px;

    }

}

/*=========================================================
FLOATING WHATSAPP BUTTON
=========================================================*/

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 28px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(37, 211, 102, .35);
    z-index: 999;
    transition: all .35s ease;
}

.whatsapp:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 25px 50px rgba(37, 211, 102, .45);
}



/*=========================================================
SCROLL TO TOP
=========================================================*/

.top-btn {

    position: fixed;

    right: 24px;

    bottom: 105px;

    width: 54px;

    height: 54px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 24px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(37, 99, 235, .30);

    z-index: 998;

}

.top-btn.show {

    opacity: 1;

    visibility: visible;

}

.top-btn:hover {

    background: var(--primary-dark);

    transform: translateY(-5px);

}



/*=========================================================
MOBILE MENU
=========================================================*/

.mobile-menu {

    display: none;

    width: 46px;

    height: 46px;

    border-radius: 12px;

    background: #eff6ff;

    color: var(--primary);

    align-items: center;

    justify-content: center;

    font-size: 28px;

}

.nav.active {

    display: flex;

    flex-direction: column;

    position: absolute;

    top: 82px;

    left: 5%;

    width: 90%;

    background: #fff;

    border-radius: 20px;

    padding: 24px;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .12);

    gap: 20px;

}



/*=========================================================
SECTION ANIMATIONS
=========================================================*/

.fade-up {

    opacity: 0;

    transform: translateY(40px);

    transition: all .8s ease;

}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}

.fade-left {

    opacity: 0;

    transform: translateX(-40px);

    transition: all .8s ease;

}

.fade-left.show {

    opacity: 1;

    transform: translateX(0);

}

.fade-right {

    opacity: 0;

    transform: translateX(40px);

    transition: all .8s ease;

}

.fade-right.show {

    opacity: 1;

    transform: translateX(0);

}



/*=========================================================
IMAGE EFFECTS
=========================================================*/

.dashboard-card img,
.showcase-image img,
.why-grid img {

    transition: transform .5s ease;

}

.dashboard-card:hover img,
.showcase-image:hover img,
.why-grid:hover img {

    transform: scale(1.03);

}



/*=========================================================
CARD HOVER IMPROVEMENTS
=========================================================*/

.feature-card,
.industry-card,
.step,
.feature-item,
.testimonial-card {

    will-change: transform;

}

.feature-card:hover,
.industry-card:hover,
.step:hover,
.feature-item:hover,
.testimonial-card:hover {

    cursor: pointer;

}



/*=========================================================
TEXT SELECTION
=========================================================*/

::selection {

    background: #2563EB;

    color: #fff;

}



/*=========================================================
CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #f1f5f9;

}

::-webkit-scrollbar-thumb {

    background: #94a3b8;

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #64748b;

}



/*=========================================================
FOCUS STATES
=========================================================*/

button:focus,
a:focus {

    outline: 3px solid rgba(37, 99, 235, .25);

    outline-offset: 3px;

}



/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-center {

    text-align: center;

}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.hidden {

    display: none;

}



/*=========================================================
LOADING ANIMATION
=========================================================*/

@keyframes pulse {

    0% {

        opacity: .5;

    }

    50% {

        opacity: 1;

    }

    100% {

        opacity: .5;

    }

}

.loading {

    animation: pulse 1.5s infinite;

}

/*=========================================================
Pricing Page
=========================================================*/

.pricing-card {

    text-align: center;

    position: relative;

    overflow: hidden;

}

.pricing-card:hover {

    transform: translateY(-12px);

}

.price {

    font-size: 58px;

    font-weight: 900;

    color: var(--primary);

    margin: 30px 0;

}

.price span {

    font-size: 18px;

    color: #64748b;

    font-weight: 500;

}

.pricing-toggle {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-top: 40px;

}

.pricing-toggle span {

    font-weight: 700;

}

.switch {

    position: relative;

    display: inline-block;

    width: 64px;

    height: 34px;

}

.switch input {

    display: none;

}

.slider {

    position: absolute;

    inset: 0;

    background: #cbd5e1;

    border-radius: 50px;

    cursor: pointer;

    transition: .35s;

}

.slider::before {

    content: "";

    position: absolute;

    width: 28px;

    height: 28px;

    left: 3px;

    top: 3px;

    background: #fff;

    border-radius: 50%;

    transition: .35s;

}

.switch input:checked+.slider {

    background: #2563EB;

}

.switch input:checked+.slider::before {

    transform: translateX(30px);

}

/*=========================================================
Contact Page Extras
=========================================================*/

.contact-form {

    background: #fff;

    padding: 40px;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);

}

.contact-form .btn-primary {

    margin-top: 10px;

}

.form-group {

    margin-bottom: 18px;

}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 18px;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    font-size: 16px;

    font-family: inherit;

    transition: .3s;

    background: #fff;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    outline: none;

    border-color: #2563EB;

    box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);

}

textarea {

    resize: vertical;

    min-height: 150px;

}

@media(max-width:768px) {

    .contact-form {

        padding: 28px;

    }

}

@media(max-width:768px) {

    .price {

        font-size: 46px;

    }

    .pricing-toggle {

        flex-direction: column;

        gap: 12px;

    }

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .mobile-menu {

        display: flex;

    }

    .nav {

        display: none;

    }

    .hero-grid,
    .showcase-grid,
    .why-grid {

        grid-template-columns: 1fr;

    }

    .hero {

        text-align: center;

    }

    .hero-buttons,
    .hero-stats {

        justify-content: center;

    }

    .hero-right {

        margin-top: 50px;

    }

    .dashboard-card {

        max-width: 650px;

        margin: auto;

    }

    .card-one,
    .card-two,
    .card-three {

        display: none;

    }

}

@media(max-width:768px) {

    .container {

        width: 92%;

    }

    section {

        padding: 70px 0;

    }

    .hero h1 {

        font-size: 42px;

    }

    .section-heading h2 {

        font-size: 34px;

    }

    .hero-stats {

        flex-direction: column;

        gap: 25px;

    }

    .whatsapp {

        width: 58px;

        height: 58px;

        font-size: 26px;

    }

    .top-btn {

        width: 50px;

        height: 50px;

    }

}

@media(max-width:576px) {

    .hero {

        padding-top: 70px;

        padding-bottom: 70px;

    }

    .hero h1 {

        font-size: 34px;

    }

    .hero p {

        font-size: 17px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }

    .big-btn {

        width: 100%;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .section-heading p {

        font-size: 16px;

    }

    .logo {

        font-size: 24px;

    }

    .logo img {

        width: 36px;

    }

    .hero-stats h3 {

        font-size: 34px;

    }

    .hero-stats p {

        font-size: 14px;

    }

    .whatsapp {

        right: 16px;

        bottom: 20px;

    }

    .top-btn {

        right: 16px;

        bottom: 90px;

    }

}

urlset, sitemapindex {
    display: block;
    background-color: #ffffff;
    color: #333333;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 24px;
    font-feature-settings: "tnum";
}

urlset::before, sitemapindex::before {
    display: block;
    background-color: #b1d1e8;
    color: #333333;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px;
    margin: -24px -24px 24px -24px;
    border-bottom: 1px solid #e0e0e0;
}

urlset::before {
    content: "XML Sitemap";
}

sitemapindex::before {
    content: "XML Sitemap Index";
}

urlset::after, sitemapindex::after {
    content: "Â© Copyright 2005-2026 XML-Sitemaps.com";
    display: block;
    text-align: center;
    padding: 24px 0 8px 0;
    margin-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666666;
}

url, sitemap {
    padding: 12px 8px;
    border-top: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: [col1-start] 55% [col1-end col2-start] minmax(100px, 1fr) [col2-end col3-start] minmax(100px, 1fr) [col3-end col4-start] minmax(100px, 1fr) [col4-end];
    gap: 12px;
    align-items: center;
    transition: background-color 0.15s ease;
}

url:hover, sitemap:hover {
    background-color: #eaeaea;
}

url:nth-of-type(odd), sitemap:nth-of-type(odd) {
    background-color: #f9f9f9;
}

loc {
    grid-column: col1-start / col1-end;
    display: block;
    font-size: 1rem;
    color: #0180AF;
    font-weight: 500;
    overflow-wrap: anywhere;
    padding-right: 8px;
}

lastmod {
    grid-column: col2-start / col2-end;
}

changefreq {
    grid-column: col3-start / col3-end;
}

priority {
    grid-column: col4-start / col4-end;
}

lastmod, changefreq, priority {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 6px 12px;
    font-style: italic;
    font-size: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #ffffff;
    color: #666666;
    width: fit-content;
}

url:first-of-type, sitemap:first-of-type {
    padding-top: 50px;
}

url:first-of-type loc::before, sitemap:first-of-type loc::before {
    content: "Target URL";
    display: block;
    transform: translateY(-38px);
    height: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
}

url:first-of-type lastmod::before, sitemap:first-of-type lastmod::before {
    content: "Last Modified";
    display: block;
    transform: translateY(-44px);
    height: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    font-style: normal;
}

url:first-of-type changefreq::before, sitemap:first-of-type changefreq::before {
    content: "Change Freq";
    display: block;
    transform: translateY(-44px);
    height: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    font-style: normal;
}

url:first-of-type priority::before, sitemap:first-of-type priority::before {
    content: "Priority";
    display: block;
    transform: translateY(-44px);
    height: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    font-style: normal;
}

@media (max-width: 768px) {

    url:first-of-type,
    sitemap:first-of-type {
        padding-top: 16px;
    }

    url:first-of-type loc::before,
    sitemap:first-of-type loc::before {
        display: none;
    }

    url:first-of-type lastmod::before,
    sitemap:first-of-type lastmod::before {
        content: "Modified: ";
        font-weight: 600;
        font-size: 0.8rem;
        color: #666666;
        transform: none;
        height: auto;
        display: inline-block;
    }

    url:first-of-type changefreq::before,
    sitemap:first-of-type changefreq::before {
        content: "Freq: ";
        font-weight: 600;
        font-size: 0.8rem;
        color: #666666;
        transform: none;
        height: auto;
        display: inline-block;
    }

    url:first-of-type priority::before,
    sitemap:first-of-type priority::before {
        content: "Prio: ";
        font-weight: 600;
        font-size: 0.8rem;
        color: #666666;
        transform: none;
        height: auto;
        display: inline-block;
    }

    url:not(:first-of-type) lastmod::before,
    sitemap:not(:first-of-type) lastmod::before {
        content: "Modified: ";
        font-weight: 600;
        font-style: normal;
        margin-bottom: 2px;
    }

    url:not(:first-of-type) changefreq::before,
    sitemap:not(:first-of-type) changefreq::before {
        content: "Freq: ";
        font-weight: 600;
        font-style: normal;
        margin-bottom: 2px;
    }

    url:not(:not(:first-of-type)) priority::before, sitemap:not(:first-of-type) priority::before {
            content: "Prio: "; font-weight: 600; font-style: normal; margin-bottom: 2px;
        }

        url, sitemap {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 16px 8px;
        }

        loc {
            margin-bottom: 4px;
            padding-right: 0;
        }

        lastmod, changefreq, priority {
            margin: 4px 6px 0 0;
            flex-direction: row;
        }
    }



    /*=========================================================
END OF TEAMOTRACK STYLESHEET
=========================================================*/