:root {
    --primary-color: #346bb2 !important;
    --secondary-color: #2a5592;
    --accent-color: #4a7bc8;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-muted: #666;
    --success-color: #3ddb65;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --gradient: linear-gradient(135deg, #346bb2 0%, #4a7bc8 100%);
    --shadow: 0 10px 30px rgba(52, 107, 178, 0.15);
    --shadow-hover: 0 20px 40px rgba(52, 107, 178, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

main {
    flex: 1;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.775rem;

    /* overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column; */
}

/* Darory color */
.text-darory {
    color: var(--primary-color) !important;
}

.bg-darory {
    background-color: var(--primary-color) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


.table-primary {
    --bs-table-bg: var(--primary-color);
    --bs-table-color: white;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-block: unset;
    padding-inline: 0;
    flex-wrap: wrap;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand > img {
    height: 45px;
}

/* .navbar-brand:hover {
    transform: scale(1.05);
} */

.navbar-nav {
    padding-block: 1rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-block: 0;
    margin-inline: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

/* underline effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    inset-inline-start: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active link style */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

@media (min-width: 1400px) {
    .nav-item.dropdown>.nav-link::before {
        content: "▾";
        font-size: 0.65rem;
        margin-inline-start: 5px;
        vertical-align: middle;
        display: inline-block;
        transition: transform 0.3s;
        position: relative;
        top: -1px;
    }

    .nav-item.dropdown:hover>.nav-link::before {
        transform: rotate(180deg);
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Dropdown menu items */
.dropdown-menu .dropdown-item {
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: .35rem;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(52, 107, 178, 0.1);
    color: var(--primary-color);
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Modern Navbar Toggler - no hover */
.modern-toggler {
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, transform 0.18s ease;
    cursor: pointer;
}

.modern-toggler:focus {
    outline: none;
    box-shadow: none;
}

.toggler-bar {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: all 0.35s ease;
}

/* When navbar expanded */

.modern-toggler[aria-expanded="true"] .toggler-bar {
    background: var(--primary-color);
}

/* Animation to X */
.modern-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.modern-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.modern-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Hero Section */
.hero-section {
    background: var(--gradient);
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height for mobile */
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    /* padding: 12px 30px; */
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 107, 178, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a7bc8 0%, #346bb2 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(52, 107, 178, 0.45);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background: white;
    color: var(--success-color);
    border: none;
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 107, 178, 0.3);
}

.btn-success:hover {
    background: linear-gradient(25, 135, 84);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(25, 135, 84, 0.6);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background: white;
    color: var(--dark-color);
    border: none;
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 107, 178, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(to right, #212529, #343a40);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(33, 37, 41, 0.6);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--dark-color);
    border: none;
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 107, 178, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(108, 117, 125);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(108, 117, 125, 0.6);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-info {
    background: white;
    color: var(--info-color, #0dcaf0);
    border: none;
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.3);
}

.btn-info:hover {
    background: linear-gradient(45deg, #0dcaf0, #36d1dc);
    color: white;
    /* text color changes for better contrast */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(13, 202, 240, 0.6);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--dark-color);
    background: transparent;
    /* padding: 12px 36px; */
    padding-block: 12px;
    padding-inline: 36px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(52, 107, 178, 0.35);
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-small {
    font-size: 1rem;
    /* padding: 0.375rem 1rem; */
    padding-block: 0.375rem;
    padding-inline: 1rem;

}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    padding-block: 12px;
    padding-inline: 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff6b5a 0%, #e74c3c 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.45);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--primary-color);
}

/* Floating Animation */
@keyframes float {

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

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

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Hero Image */
.hero-image {
    position: relative;
}

img {
    max-width: 100% !important;
    height: auto;
}


.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    background: white;
    /* padding: 80px 0; */
    padding-block: 80px;
    padding-inline: 0;

}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Styling */
.section {
    /* padding: 100px 0; */
    padding-block: 60px;
    padding-inline: 0;

}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(52, 107, 178, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Domain Search */
.domain-search {
    background: var(--light-color);
    /* padding: 60px 0; */
    padding-block: 60px;
    /* top & bottom */
    padding-inline: 0;
    /* start & end */

}

.search-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.search-input {
    border: 2px solid #eee;
    border-radius: 10px;
    /* padding: 15px 20px; */
    padding-block: 15px;
    padding-inline: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 107, 178, 0.25);
}

.domain-extensions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.domain-ext {
    background: var(--light-color);
    /* padding: 8px 15px; */
    padding-block: 8px;
    padding-inline: 15px;
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.domain-ext:hover,
.domain-ext.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    /* padding: 8px 25px; */
    padding-block: 8px;
    padding-inline: 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    /* margin: 1rem 0; */
    margin-block: 1rem;
    margin-inline: 0;

}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    /* margin: 1.5rem 0; */
    margin-block: 1.5rem;
    margin-inline: 0;
}

.pricing-features li {
    /* padding: 8px 0; */
    padding-block: 8px;
    padding-inline: 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-inline-start: 25px;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    /* padding: 100px 0; */
    padding-block: 100px;
    padding-inline: 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    /* padding: 12px 15px; */
    padding-block: 12px;
    padding-inline: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 107, 178, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    /* padding: 60px 0 30px; */
    padding-block-start: 60px;
    padding-block-end: 30px;
    padding-inline: 0;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-inline-start: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-inline-end: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particles 15s linear infinite;
}

@keyframes particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 220px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 107, 178, 0.9), rgba(74, 123, 200, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Mobile App Section */
.app-mockup {
    max-width: 300px;
    margin: 0 auto;
}

.app-mockup img {
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

.download-btn {
    background: var(--dark-color);
    color: white;
    /* padding: 12px 25px; */
    padding-block: 12px;
    padding-inline: 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Process Section */
.process-step {
    text-align: center;
    position: relative;
    /* padding: 2rem 1rem; */
    padding-block: 2rem;
    padding-inline: 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    /* margin: 0 auto 1rem; */
    margin-block-start: 0;
    margin-inline: auto;
    margin-block-end: 1rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 1;
}

.process-step h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Technology Stack */
.tech-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* margin: 0 auto 1rem; */
    margin-block-end: 1rem;
    margin-inline: auto;
}

.tech-logo:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(52, 107, 178, 0.2);
}

.tech-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Go To Top */
#goToTop {
    position: fixed;
    bottom: 20px;
    inset-inline-end: 20px;
    /* RTL/LTR aware */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 999;
    background-color: var(--primary-color);
    border: none;
    color: #ffffff;
    font-size: 18px;
    display: none;
    /* hidden initially */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* smooth transitions */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#goToTop:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1) translateY(-3px);
    /* zoom + slight lift */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation Enhancements */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 800px) {

    /* html,
    body {
        /* font-size: 14px; */
    /* font-size: 0.775rem; */
    /* overflow-x: hidden; */

    .navbar-brand > img {
        height: 40px;
    }

    .nav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .hero-section {
        /* padding: 100px 0 80px; */
        padding-block-start: 100px;
        padding-block-end: 80px;
        padding-inline: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 2.2rem;
    }

    .app-mockup img {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .domain-extensions {
        justify-content: center;
    }

    .pricing-card.popular {
        transform: none;
        margin-bottom: 2rem;
    }

    .auth-buttons {
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

}
