@font-face {
    font-family: 'Gotham';
    src: url('../library/font/Gotham-Medium.otf') format('otf');
    font-weight: 400;
    font-style: normal;
}

/* Repeat for bold/italic variants as needed */

/* Section Wrapper */
.zoccam-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0px;
    background: linear-gradient(90deg, #10438f 0%, #2565d0 100%);
    color: white;
    position: relative;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 83%;
}

/* Left Content */
.zoccam-content {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */

}

.zoccam-left {
    width: 25%;
}

.zoccam-right img {
    width: 100%;
    max-width: 600px;
}

.zoccam-content h2 {
    font-size: 60px;
    font-weight: 500;
    margin: 0 0 15px;
    line-height: 1.3;
    font-family: 'Gotham', sans-serif;
}

.zoccam-content p {
    margin: 0 0 25px;
    font-size: 25px;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Gotham', sans-serif;
}

.powered-btn {
    background: white;
    color: #10438f;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: 'Gotham', sans-serif;
}

/* Right Devices */
.zoccam-devices {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

/* Bottom Highlight Bar */
.highlight-bar {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 32px;
    font-weight: bold;
    color: #003366;
    border-top: 2px solid #e6e6e6;
    position: relative;
    border-radius: 20px;
    font-weight: 500;
    filter: drop-shadow(2px 0px 9px rgba(0, 0, 0, 0.1));
    background-color: #ffffff;
    margin-top: -40px;
    margin-bottom: 80px;
    font-family: 'Gotham', sans-serif;
    display: flex;
    justify-content: space-evenly;

}
.highlight-bar img{
  width: 45px;
  height: 45px;
}
.options-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* flex-wrap: wrap; */
    align-items: stretch;
    /* equal height */
    margin-bottom: 100px;
}

.option-box {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* for equal height content alignment */
    transition: all 0.3s ease;
    min-height: 775px;


}

.option-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* App store & play store badges hover effect */
.store-badges img {
    height: 100%;
    width: 160px;
    transition: transform 0.3s ease;
}

.store-badges img:hover {
    transform: scale(1.1);
}

.option-header {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 50px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-radius: 15px;
    
    max-width: 240px;
    margin: 0 auto;
    font-family: 'Gotham', sans-serif;
    margin-top: -55px;

}

.change-color1 .option-header{
  background-color: #37b3e7;
}
.change-color2 .option-header{
  background-color: #2c6ed5;
}
.change-color1 .step-list>li::before{
   background-color: #37b3e7;
}
.change-color2 .step-list>li::before{
   background-color: #2c6ed5;
}

.option-box h3 {
    font-size: 22px;
    color: #003366;
    font-weight: bold;
    text-align: center;
    font-family: 'Gotham', sans-serif;
}

.option-box p {
    font-size: 18px !important;
    color: #003366;
    font-family: 'Gotham', sans-serif;
}

/* Step list counter style */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
    height: 550px;
    /* Reset counter */

}

.step-list>li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    /* thoda gap */
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    flex-direction: column;
    font-size: 18px;
    color: #0e2841;
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
}

.step-list>li::before {
    content: counter(step-counter);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    font-family: 'Gotham', sans-serif;
}

.step-list>li::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 28px;
    width: 1px;
    height: calc(100% - 5px);
    background: #ddd;

}

.step-list li a {
    word-break: break-word;
    /* breaks long links */
    overflow-wrap: anywhere;
    /* modern browsers */
    display: inline-block;
    /* prevents overflow */
    color: #337ab7;
    /* keep your blue */
    text-decoration: none;
    font-size: 14px;
    /* smaller on mobile */
}

.step-list li a:hover {
    text-decoration: underline;
}

/* Remove line for last step */
.step-list>li:last-child::after {
    display: none;
}

/* Nested UL ke liye normal bullets */
.step-list li ul {
    margin: 10px !important;
    font-size: 13px;
    list-style: disc;
    padding: 0;
}

.step-list li ul li {
    display: list-item;
    padding-left: 0;
    position: static;
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.step-list li ul li::before {
    content: none !important;
}

.submit-primary-btn {
    display: inline-block;
    border-radius: 5px;
    background-color: #3365cb;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;

    font-size: 14px;
    font-weight: bold;
    text-align: center;

    margin: 0px auto 0px auto;
    font-family: 'Gotham', sans-serif;

}

.submit-primary-btn:hover {
    border: 1px solid #3365cb;
    color: #3365cb;
    background: transparent;
    transition: 0.5
}

.extra-note {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.store-badges {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    margin-top: 15px;
}


.stepbystep {
    font-size: 18px;
    color: #14499d;
    font-weight: bold;
        margin-bottom: 20px;
}

.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 20px;
    border-radius: 18px;
    background: #f9f9f9;

}

.feature-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item img, .feature-right img {
    width: 60px;
    height: 35px;
    object-fit: contain;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
}

.feature-right {
    text-align: left;
    padding-left: 30px;
    border-left: 1px solid #e0e0e0;
    display: flex;
    gap: 9px;
    flex-direction: column;
}

.feature-right h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.feature-right a {
    color: #1d9fd6;
    text-decoration: none;
    font-size: 14px;
}

.feature-right a:hover {
    text-decoration: underline;
}

.option-main-box {
    width: 50%;
}

.info-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
}

/* .info-item img {
    width: 28px;
    height: 28px;
} */

.info-item p {
    margin: 0;
    font-size: 15px;
    color: #222;
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
}

.divider {
    border-top: 1px solid #ddd;
    margin: 0;
}

.option-divider {
    margin: 30px 20px;
}
.feature-left .divider:last-child {
    display: none;
}

.page-template-page-emd-new #footer {
    background: #092B73 !important;
    padding-top: 30px;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  
    .zoccam-left {
        width: 100%;
    }

    .zoccam-content h2 {
        font-size: 50px;
    }

    .options-wrapper {
        gap: 20px;
    }

    .option-main-box {
        width: 100%;
    }

    .option-box {
        min-height: auto;
        /* remove fixed height */
        padding: 20px;
    }

    .option-box h3 {
        font-size: 20px;
    }


    .store-badges img {
        width: 140px;
        height: auto;
    }
    .step-list{
      height: 550px;
    }
}

@media (max-width: 999px) {
	    .step-list {
        height: 650px;
    }
    .edd-container {
        width: 100%;
    }

}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .step-list{
      height: auto;
    }
    .zoccam-section {
        background-size: cover;
    }

    .zoccam-content {
        flex-direction: column;
        gap: 20px;
    }

    .zoccam-content h2 {
        font-size: 40px;
    }

    .options-wrapper {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 50px;
        gap: 60px;
    }

    .option-box {
        min-height: auto;
        padding: 18px;
    }

    .option-header {
        font-size: 18px;
        padding: 10px 20px;
        margin-top: -40px;
    }

    .option-box h3 {
        font-size: 18px;
    }

    .option-box p,
    .step-list>li {
        font-size: 18px;
    }

    .store-badges {
        /* flex-direction: column; */
        gap: 8px;
    }

    .store-badges img {
        width: 130px;
        height: auto;
    }

    .submit-primary-btn {
        font-size: 13px;
        padding: 15px 30px;
        margin: 0px auto 0px auto;
    }

    .feature-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .feature-right {
        border-left: none;
        padding-left: 0;
        margin-top: 15px;
        flex-direction: row;
    }

    .feature-left {
        gap: 15px;
    }

    .highlight-bar {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .zoccam-left {
        width: 100%;
    }

}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
    .option-header {
        font-size: 16px;
        padding: 8px 15px;
    }

    .option-box h3 {
        font-size: 16px;
    }

    .option-box p,
    .step-list>li {
        font-size: 16px;
    }

    .store-badges img {
        width: 120px;
    }

}

/* Responsive */
@media(max-width: 900px) {
    .zoccam-section {
        flex-direction: column;
        text-align: center;
        background-size: cover;
    }

    .zoccam-content h2 {
        font-size: 40px;
    }

    .zoccam-content p {
        font-size: 18px;
    }

    .zoccam-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .zoccam-devices {
        justify-content: center;
    }

    .zoccam-devices img {
        max-width: 150px;
    }
}