/* Section 1 */
.first-section {
    min-height: 100vh;
    color: #fff;
    background: linear-gradient(
        125deg,
        #000000 0%,
        #000000 30%,
        #02060D 43%,
        #071629 58%,
        #0A1F3C 72%,
        #071629 83%,
        #02060D 92%,
        #000000 100%
    );
    background-size: cover;
}

.nav-menu a {
    font-size: 20px;
    font-weight: 400;
    margin-left: 35px;
}

.brand-title {
    font-size: 40px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 400;
    margin-top: 50px;
}

.hero-content p {
    font-size: 23px;
}

.domain-input input,
.domain-input select {
    background: #0d1b29 !important;
    border: 1px solid #1b2b3a !important;
    color: #fff !important;
}

.domain-ext {
    max-width: 110px;
}

.domain-input input::placeholder {
    color: #6c8499 !important;
}

.domain-input button {
    background: #0d1b29;
    border: 1px solid #ffffff;
    color: #fff;
}

.domain-input button:hover {
    background: #122436;
}

.cta-wrapper {
    margin-top: 175px;
}

.cta-divider {
    flex-grow: 1;
    height: 1px;
    background: #2f4050;
}

.cta-link:hover {
    color: #ff4c6a;
}

.bi-arrow-up-right.color {
    color: #ff4c6a;
}

.hero-img {
    max-width: 80%;
}

/* Section 2 */
.second-section {
    min-height: 100vh; 
    background-color: #1a1a1a; 
    display: flex;
    align-items: center;
}

.second-section hr {
    border-top: 3px solid rgba(255, 255, 255, 0.2); 
    height: 0;
}

.second-section .first-text{
    font-weight: 400;
    padding-left: 50px;
    padding-right: 520px;
}

.second-section .first-text h2{
    font-size: 45px;
    font-weight: 400;
}

.second-section .first-text p{
    font-size: 15px;
    font-weight: 400;
}

.second-section .second-text{
    font-weight: 400;
    padding-left: 50px;
    padding-right: 220px;
    padding-left: 300px;
}

.second-section .second-text h2{
    font-size: 45px;
    font-weight: 400;
}

.second-section .second-text p{
    font-size: 15px;
    font-weight: 400;
}

.illustration-placeholder {
    height: 400px; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-illustration {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    max-width: 100%;
    max-height: 100%;
}

/* section 3 */
.section-3-bg {
    background: #0d0d0d;
    min-height: 100vh;
    width: 100%;
}

.section-title {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 500;
}

.illustration-box {
    background: #111;
    padding: 25px;
    width: 520px;
    margin: 0 auto;
}

.illustration-img {
    width: 100%;
}

.feature-title {
    font-size: 28px;
    display: flex;
    align-items: center;
}

.small-desc {
    font-size: 23px;
    line-height: 1.6;
    padding-left: 8px;
}

/* section 4 */

.section-4-final-bg {
    background-color: #171c26; 
    overflow-x: hidden; 
}

.section-4 {
    background-color: #171c26; 
    padding: 4rem 0;
}

.section-4-wrapper {
    position: relative;
    max-width: 1000px;
    height: 480px; 
    margin: 2rem auto;
}

.section-4-peeking-card {
    position: absolute;
    width: 30%; 
    height: 80%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
    background-color: #212529;
}

.section-4-peeking-card.left {
    left: 0;
    transform: translateX(-50%);
}

.section-4-peeking-card.right {
    right: 0;
    transform: translateX(50%);
}

.section-4-peeking-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%) brightness(30%);
    transition: all 0.3s;
}

.section-4-main-card {
    position: relative;
    width: 60%; 
    height: 100%;
    background-color: #000000;
    border-radius: 2rem;
    box-shadow: 0 45px 70px -20px rgba(0, 0, 0, 0.8);
    z-index: 10;
    padding: 0.5rem;
}

.section-4-main-inner {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.section-4-main-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.section-4-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 3;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: #dc3545;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 15;
}

.section-4-peeking-card.left .nav-btn { left: 10px; }
.section-4-peeking-card.right .nav-btn { right: 10px; }

.play-icon {
    cursor: pointer;
    transition: background-color 0.2s;
}
.play-icon:hover {
    background-color: #dc3545 !important;
}

/* Section 5 */
.section-5-bg {
    background-color: #3a3939; /
}

.section-5-bg.large-section {
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding-top: 8rem !important; 
    padding-bottom: 8rem !important;
}

.toolkit-illustration-placeholder {
    width: 100%;
    height: 500px; 
    background-color: #2e2e2e; 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative; 
}

.static-carousel {
    padding: 0 !important; 
    position: relative;
}
.static-control-btn {
    position: absolute;
    top: 0; 
    width: 40px;
    height: 40px;
    border-radius: 5px; 
    opacity: 1; 
    cursor: default; 
    pointer-events: none; 
}
.carousel-control-prev.static-control-btn {
    left: auto;
    right: 50px; 
    background-color: #444;
}
.carousel-control-next.static-control-btn {
    right: 0;
    background-color: #dc3545;
}

.slider-indicators {
    gap: 10px;
}
.indicator {
    width: 10px;
    height: 10px;
    background-color: #444; 
    border-radius: 50%;
}
.indicator.active {
    background-color: #dc3545; 
}

.feature-list p {
    line-height: 1.8;
}

.feature-arrow {
    font-size: 0.8rem;
    vertical-align: middle;
}

/* Section 6 */

.section-6a-experience {
    background-color: #0b0f16; 
    color: #fff;
    padding-top: 8rem; 
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
}

.section-6a-experience .display-3 {
    font-size: 3.5rem; 
    line-height: 1.1;
    color: #fff;
}

.experience-illustration-placeholder {
    width: 100%;
    height: 400px;
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-6b-services {
    background-color: #eef3fa; 
    color: #212529;
    padding-top: 6rem !important; 
    padding-bottom: 6rem !important;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.section-6b-services .display-5 {
    color: #212529;
}

.service-icon-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: #dc3545;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cards .h4 {
    color: #212529; 
}

/* Section 7 */
.section-7-bg {
    background-color: #1f1f1f; 
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Base Card Styling */
.pricing-card {
    border: none;
    border-radius: 15px;
    height: 100%; 
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    padding: 2.5rem !important; 
}

.card-light-bg {
    background-color: #eef3fa; 
}

.card-dark-bg {
    background-color: #0b0f16; 
    background: linear-gradient(180deg, #1b212f 0%, #0b0f16 100%);
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px auto;
    font-size: 2.5rem; 
    min-height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; 
}
.card-light-bg .icon-placeholder {
    color: #212529; 
}
.card-dark-bg .icon-placeholder {
    color: #dc3545; 
}

.pricing-card h3 {
    margin-bottom: 1rem;
}
.pricing-card p.small {
    line-height: 1.5; 
    min-height: 50px;
}

.btn-light-border {
    border-color: #212529; 
    color: #212529;
    padding: 10px 20px;
}
.btn-light-border:hover {
    background-color: #212529;
    color: #fff;
}
.card-dark-bg .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    width: 100%;
    padding: 10px 20px;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Section 8 */
.section-8 .section-8-input {
    background-color: #000 !important;
    border-color: #343a40 !important;
    color: #fff !important;
}

.section-8 .section-8-input::placeholder {
    color: #6c757d !important;
}

.section-8 .section-8-btn {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}
.section-8 .section-8-btn:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

.section-8 .middle-section {
    background-color: #1a1a1a;
    position: relative;
}

.section-8 .section-8-footer-links a:hover {
    color: #fff !important;
}

.section-8 .social-icons a {
    font-size: 1.25rem;
    color: #fff !important;
}
.section-8 .social-icons a:hover {
    color: #dc3545 !important;
}

.section-8 .section-8-btn-up {
    border-radius: 50%;
}