@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-purple: #6c51a4;
    --primary-purple-light: #8467B9;
    --brand-coral: #E35E5E;
    --accent-pink: #cc4c89;
    --bg-light: #F8F9FA;
    --text-dark: #111111;
    --text-muted: #6C757D;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navbar styles */
.nav-parent {
    height: 80px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.navbar {
    padding: 1rem 0;
    background: var(--white);
    transition: all 0.3s ease;
}
.navbar .atom-text{
    color: #6c51a4; 
    font-weight: 800; 
    font-size: 1.4rem;    
}
.navbar .shop-text{
    color: #E35E5E;
    font-weight: 800;
    font-size: 1.4rem;
    margin-left: 5px;   
}
.navbar-brand img {
    height: 35px;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.btn-order-now {
    background-color: #6c51a4;
    color: var(--white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-order-now:hover {
    background-color: #5a428d;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}


.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.gradient-highlight {
    background: linear-gradient(90deg, #b055a4 0%, #E35E5E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-buy-now {
    background-color: #6c51a4;
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    margin-right: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background-color: #5a428d;
    transform: translateY(-2px);
}

.btn-watch-demo {
    background-color: transparent;
    color: #6c51a4;
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #6c51a4;
    transition: all 0.3s ease;
}

.btn-watch-demo:hover {
    background-color: #6c51a4;
    color: var(--white);
}

.hero-image-container {
    position: relative;
    text-align: right;
}

.hero-iron {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Wavy Bottom Transition */
.hero-waves {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-waves img {
    width: 100%;
    height: auto;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.feature-card.active {
    border: 1px solid #eef2ff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.feature-icon-container.no-bg {
    background: #f0f0ff;
    color: var(--primary-purple);
}

.feature-icon-container.blue-bg {
    background: #4a4ae2;
    color: white;
}

.feature-icon-container img {
    width: 30px;
}

.feature-card h3 {
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Technical Core */
.technical-section {
    padding: 40px 0;
}

.spec-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Since border-image doesn't work with border-radius easily, we use a pseudo-element for the gradient border */
.spec-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #b055a4, #E35E5E);
}

.spec-item {
    border-left: none;
    /* remove standard border */
    padding-left: 1.8rem;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.spec-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #6c51a4;
    display: block;
}

.tech-image {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.technical-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
}

/* Order Section */
.order-section {
    padding: 40px 0;
    background-color: #f8fbff;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 0;
    background: #f8f9fa;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.nav-tabs .nav-item {
    flex: 1 1 0;
    width: 33.33%;
}

.nav-tabs .nav-link {
    border: none;
    padding: 1.2rem;
    margin: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #666 !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.tab-icon {
    font-size: 1.2rem;
}

.nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--primary-purple) !important;
    border-top: 3px solid var(--primary-purple);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02);
}

.order-form-container {
    background: var(--white);
    padding: 3rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.form-label {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #fcfcfc;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: #a0aec0;
}

.payment-info {
    background-color: #fef4fb;
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid #fce7f3;
}

.info-icon {
    background: #0088cc;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.payment-info p {
    font-size: 0.9rem;
    color: #555;
}

.payment-info strong {
    color: #111;
}

.btn-confirm {
    background-color: #634ba1;
    color: var(--white);
    padding: 1.2rem;
    width: 100%;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-confirm:hover {
    background-color: #543f8c;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle Right Side Glow */
footer::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 94, 94, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 1;
}

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

footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact,
.footer-social {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-social li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #f8f9fa;
    opacity: 0.8;
}

.footer-links li a,
.footer-social li a {
    color: #f8f9fa;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover,
.footer-social li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: left;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-top-brand h4 {
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.footer-social i {
    font-size: 1.1rem;
}


/* index css */
.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 5;
}
.form-control {
    padding-left: 45px !important;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #fcfcfc;
}

.select2-container{
    display: inline !important;
}
.selection{
    text-align: left !important;
}
.select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px) !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    line-height: 36px !important;
}

.select2-search--dropdown .select2-search__field {
    outline: none;
}
.select2 { width: 100% !important; }
.select2-container--default .select2-selection--single { border-width: 2px !important; }
.select2-container--default .select2-selection--single {
    height: 52px !important;
    padding: 0.8rem 1.2rem 0.8rem 45px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #fcfcfc !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    color: #444 !important;
    padding-left: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px !important;
}
.is-invalid + .select2-container--default .select2-selection--single {
    border-color: #dc3545 !important;
}

.select2-container--default .select2-selection--single {
    height: 45px !important;
    border-radius: 8px !important;
    border: 1px solid #ced4da !important;
}
.select2-dropdown {
    margin-top: -0px !important;
    border-radius: 8px !important;
    border: 1px solid hsl(210, 14%, 83%) !important;
}
.select2-search--dropdown .select2-search__field {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ced4da !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 8px 6px 0 6px !important;
    margin-left: -15px !important;
    margin-top: 15px !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 9px 6px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 7px !important;
}

.upload-images {
    transition: all 0.3s ease;
}
.upload-images:hover {
    border-color: #6c51a4 !important;
    background-color: #f0f0ff !important;
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image-container {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {

    .navbar-collapse {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        z-index: 1000;
    }
    .hero-content {
        margin-top: 40px !important;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-buy-now,
    .btn-watch-demo {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .nav-tabs .nav-link {
        flex-direction: column;
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
        gap: 5px;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .technical-section {
        padding: 20px 0;
    }

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

    .spec-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .spec-value {
        font-size: 1.1rem;
    }
    .hero-section {
        padding: 20px 0 40px;
    }
    .feature-card p {
        font-size: 16px;
    }
    .form-group {
        margin-bottom: 0rem;
    }
    .order-form-container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 330px) {
    .technical-section h2 {
        font-size: 1.6rem;
    }

    .btn-confirm {
        padding: 0.8rem;
        font-size: 16px !important;
    }
}