/* 🌟 Global Reset + Smooth Fonts */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 🌟 Navbar Styles */
.navbar-custom {
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar-custom.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.navbar-custom .logo {
    color: #fff;
    transition: color 0.3s;
    font-weight: 500;
}

.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .navbar-brand,
.navbar-custom.scrolled .logo {
    color: #222 !important;
}

.navbar-custom .btn-warning {
    background: #ff6f2c;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 25px;
    transition: 0.3s;
}

.navbar-custom .btn-warning:hover {
    background: #e95d1f;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    background: #212529;
    padding: 6px 18px;
    border-radius: 7px;
}

/* 🌟 Hero Section */
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('https://demo.web3canvas.com/themeforest/proland/images/header_bg_alt.jpg') center/cover no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg h1 {
    font-size: 3rem;
}

.cta-btn {
    background: #a29c92;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #FF9900;
    transform: translateY(-2px);
}

/* 🌟 Features Section */
.feature-box {
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.watch-img-wrapper {
    position: relative;
}

.icon-badge {
    position: absolute;
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
}

/* 🌟 Watch Details Section */
.key-features-btn,
.how-help-btn {
    border: 2px solid #ddd;
    color: #333;
    border-radius: 8px;
    background: #fff;
    padding: 6px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.key-features-btn:hover,
.how-help-btn:hover {
    background: #333;
    color: #fff;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 0 auto 12px auto;
    transition: 0.3s;
}

.feature-icon:hover {
    background: #1e90ff;
    color: #fff;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin: 0 6px;
    display: inline-block;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.swatch:hover {
    transform: scale(1.15);
}

.swatch.selected {
    border: 2px solid #222;
}

/* 🌟 Timeline Section */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eeeeee00;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-circle {
    width: 20%;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-right: 20px;
    z-index: 1;
}

.timeline-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content h6 {
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
}

/* 🌟 Collection Cards */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    text-align: center;
}

.section-desc {
    color: #777;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.watch-card {
    background: #f9fbfd;
    border-radius: 12px;
    text-align: center;
    padding: 2rem 1rem;
    margin: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 450px; /* Set fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spread content vertically */
}

@media (max-width: 576px) {
    .watch-card {
        height: auto; /* let height adjust on small screens */
        padding: 1.5rem 1rem;
    }
}

.watch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.watch-card img {
    max-width: 100%;
    margin-bottom: 20px;
}

.watch-name {
    color: #348fe2;
    font-weight: 600;
    font-size: 1.05rem;
}

.watch-price {
    color: #ff5722;
    font-weight: 600;
    margin: 10px 0;
}

.choose-btn {
    background: #fff;
    border: 1px solid #348fe2;
    border-radius: 25px;
    color: black;
    font-weight: 500;
    padding: 6px 20px;
    transition: 0.3s;
}

.choose-btn:hover {
    background: #FF9900;
    color: #fff;
}

/* 🌟 Responsive */
@media (max-width: 991px) {
    .hero-bg h1 {
        font-size: 2.4rem;
    }

    .watch-img {
        max-width: 280px;
        margin: 20px auto;
    }
}

@media (max-width: 767px) {
    .hero-bg {
        text-align: center;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline:before {
        right: 25px;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-circle {
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 576px) {
    .hero-bg h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.hero-section {
    background: url('https://demo.web3canvas.com/themeforest/proland/images/mobile-ap-bg.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
    height: 500px;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 45%;
    margin-left: 5%;
}

.hero-content h1 {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-bottom: 1.7rem;
    color: #eee;
}

.buy-btn {
    background: #ffb347;
    color: #fff;
    border-radius: 25px;
    border: none;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.watch-annotations {
    position: absolute;
    right: 15%;
    top: 40%;
    z-index: 2;
    width: 350px;
    /* Responsive control */
    min-width: 250px;
    max-width: 40vw;
}

.watch-annotations .annotation {
    position: absolute;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(60, 60, 60, .85);
    padding: 2px 10px;
    border-radius: 3px;
}

/* Example annotation positions (adjust as needed for real image) */
.gps {
    top: 15px;
    left: 90px;
}

.apps {
    top: 2px;
    left: 205px;
}

.strap {
    top: 77px;
    left: 250px;
}

.buttons {
    top: 97px;
    left: 110px;
}

/* Arrows/lines can be hand-coded for demo or with SVG; for production, use SVG for lines */
@media (max-width: 900px) {
    .hero-content {
        max-width: 90%;
        margin-left: 5%;
    }

    .watch-annotations {
        right: 2%;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 350px;
        min-height: 300px;
    }

    .hero-content {
        max-width: 95%;
        margin-left: 3%;
    }

    .watch-annotations {
        width: 150px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.2rem;
    }
}

/* 🌟 Mobile Navbar Styles */
@media (max-width: 991px) {
  .navbar-custom {
    background: #fff !important; /* White background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .navbar-custom .nav-link,
  .navbar-custom .navbar-brand,
  .navbar-custom .logo {
    color: #222 !important; /* Black text */
    background: transparent; /* remove black bg of logo */
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 
      xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2825, 25, 25, 1%29)' 
      stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' 
      d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-collapse {
    background: #fff; /* White dropdown menu */
    padding: 10px;
    border-radius: 8px;
  }

  .navbar-collapse .nav-link {
    color: #222 !important; /* Black text */
    padding: 10px 0;
    display: block;
  }

  .navbar-collapse .btn-warning {
    width: 100%; 
    text-align: center;
    margin-top: 10px;
  }
}
