/* Custom Fonts */
@font-face {
    font-family: 'Hornbill';
    src: url('fonts/HornbillTrial-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Hornbill';
    src: url('fonts/HornbillTrial-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Hornbill';
    src: url('fonts/HornbillTrial-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Hornbill';
    src: url('fonts/HornbillTrial-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* General Styles */
:root {
    --primary-teal: #0CC0DF;
    --dark-blue: #0f2231;
    --footer-bg: #0B1B2A;
    --text-pink: #ff4d94;
    --dot-color: #e0d4f7;
    --dot-active: #9b72e0;
}

body {
    font-family: "Lora", Sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.playfair {
    font-family: "Hornbill", Sans-serif;
}

.text-teal {
    color: var(--primary-teal) !important;
}

.text-pink {
    color: var(--text-pink) !important;
}

.btn-teal {
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: #09A5C0;
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 88vh;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
}

.hero-bg,
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay,
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    background-color: rgba(21, 21, 21, 0.7);
}

.cta-overlay {
    background: linear-gradient(to right, rgba(9, 20, 30, 0.95) 0%, rgba(9, 20, 30, 0.85) 45%, rgba(9, 20, 30, 0.15) 75%, rgba(9, 20, 30, 0.8) 100%);
}

header .logo-subtext {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.hero-title {
    font-family: "Hornbill", Sans-serif;
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 2.5rem !important;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 10px !important;
    letter-spacing: 0.2px;
}

.hero-small-text {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 3rem !important;
    color: #fff;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-teal);
    color: #fff;
    padding: 8px 8px 8px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Lora', sans-serif;
}

.hero-btn:hover {
    background-color: #09A5C0;
    color: #fff;
}

.hero-btn .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-left: 14px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.hero-btn:hover .icon-circle {
    background-color: #222;
}

/* img.icon-4 {
    width: 140px;
    height: 140px;
} */


/* Responsiveness for Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-overlay {
        background: rgb(30 30 30 / 80%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .carousel-control-next i.fa-solid,
    .carousel-control-prev i.fa-solid {
        margin-top: -35px;
    }

    .mockup-box.position-relative img {
        max-height: 300px;
    }

    .footer .col-lg-7.col-md-12 h5.footer-heading.mb-4 {
        font-size: 20px;
    }

    .hero-title br,
    .hero-subtitle br,
    .hero-small-text br {
        display: none;
    }
}

/* Tools Section */
.tools-section {
    background-color: #fff;
}

.tools-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.mockup-img {
    max-height: 500px;
    width: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-card {
    border: 2px solid #000;
    background: #fff;
    max-width: 400px;
    margin-left: -50px;
    z-index: 2;
}

.tool-info-card.bg-white.position-relative {
    border-width: 4px !important;
}

@media (max-width: 768px) {
    .tool-card {
        margin-left: 0;
        margin-top: 20px;
    }

    button.hero-btn span.ps-3 {
        padding: 0 !important;
    }

    form.email-form input.form-control {
        padding: 10px 25px !important;
    }

    form.email-form button.hero-btn {
        padding: 6px 10px 6px 26px !important;
    }

    section#early-access {
        padding: 0 !important;
    }

    .foter-wrap {
        justify-content: space-between;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .tool-info-card.bg-white.position-relative {
        margin: 15px 0 0;
        text-align: center !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tool-info-card.bg-white h3.mb-2 {
        font-size: 25px !important;
    }
}

.tool-info-card {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.tool-card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.sparkle-icon {
    position: absolute;
    color: #000;
    font-size: 1.5rem;
}

.sparkle-icon.top-left {
    top: -15px;
    left: -15px;
    background: #fff;
    padding: 0 5px;
}

.sparkle-icon.bottom-right {
    bottom: -15px;
    right: -15px;
    background: #fff;
    padding: 0 5px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-btn:hover {
    color: var(--dot-active);
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dot-color);
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: var(--dot-active);
}

/* CTA Section */
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.tracking-wide {
    letter-spacing: 2px;
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-inner {
    overflow: visible;
}

.email-form input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--primary-teal);
    box-shadow: none;
}

.mockup-box.position-relative::after {
    content: "";
}

.footer {
    background-color: #0A1F3A;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.teal-bg {
    background-color: var(--primary-teal);
}

.social-icon:hover {
    background-color: #fff;
    color: var(--primary-teal);
}

.footer-heading {
    font-family: 'Hornbill', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.custom-placeholder::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.tracking-wide {
    letter-spacing: 2px;
}

/* Responsive Enhancements */
.carousel-custom-row {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mockup-box.position-relative {
    max-width: 500px !important;
}

.mockup-box.position-relative img {
    max-width: 300px !important;
    border-radius: 20px;
}

div#toolsCarousel {
    padding: 0 20px;
}

.mockup-box.position-relative {
    z-index: 11;
}

.mockup-box.position-relative::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(174, 159, 255, 0.5) !important;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .carousel-custom-row {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    div#toolsCarousel .col-md-4 {
        width: 38.333333%;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .mockup-box.position-relative {
        height: 320px !important;
    }

    .carousel-custom-row {
        padding: 0px;
    }

    div#toolsCarousel {
        padding: 0 30px;
    }

    body .carousel-indicators.custom-indicators button {
        width: 5px !important;
        height: 5px !important;
        margin: 0 5px !important;
    }

    .carousel-indicators.custom-indicators {
        margin-top: 30px !important;
    }

    section.tools-section {
        padding: 0 !important;
    }

    .tool-info-card span.position-absolute.bg-white {
        display: none !important;
    }

    h2.text-center.mb-5.tools-title {
        margin-bottom: 20px !important;
        font-size: 26px;
    }

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

/* Custom Carousel Indicators */
.carousel-indicators.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #e5d9f8 !important;
    border: none !important;
    margin: 0 8px !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease !important;
}

.carousel-indicators.custom-indicators button.active {
    background-color: #a881ef !important;
}