/* Fonts */
@font-face {
    font-family: 'neue regular';
    src: url('../fonts/Neue/NeueMontreal-Regular.otf');
}

@font-face {
    font-family: 'suisse regular';
    src: url('../fonts/suisse-intl/suisse-intl-regular.ttf');
}
@font-face {
    font-family: 'suisse medium';
    src: url('../font/Suisselntl/SuisseIntl-Medium.ttf');
}

@font-face {
    font-family: 'suisse bold';
    src: url('../fonts/suisse-intl/SuisseIntl-Bold.ttf');
}


:root {
    --bg-section: #E8EEF2;
    --primary: #0277bd;
    --theme-blue: #206FAA;
    --text-blue: #0294DD;
    --secondary: #03a9f4;
    --accent: #ff9800;
    --light-gray: #f8f9fa;
    --theme-cyan: #25BCE9;
}
.suisse-medium{
    font-family: 'suisse medium', sans-serif;
}
.Suisse-Intl {
    font-family: 'suisse regular', sans-serif;
}

h3 {
    font-size: 1.625rem;
}

.bg__lightgray {
    background: rgba(244, 244, 244, 1);
}

.bg__blue {
    background: rgb(37 188 233);
}

.bg__darkblue {
    background: rgba(0, 132, 180, 1);
}

body {
    font-family: 'neue regular', sans-serif;
}

.font-suisse {
    font-family: 'suisse regular';
}

.blue-btn {
    background-color: #0084B4;
    color: #ffffff;
    border-radius: 3px;
    min-width: 161px;
    min-height: 39px;
}

.blue-btn:hover {
    background-color: #0084B4;
    color: #ffffff;
    opacity: 0.6;
}

.gap-120 {
    gap: 120px;
}

.top-bar {
    height: 50px;
    background-color: #206FAA33;
    color: var(--theme-blue);
    border-bottom: 1px solid var(--theme-blue);
    font-size: 0.85rem;
    font-weight: 500;
}
.cta-text{
    font-family: 'suisse medium', sans-serif;
}
.navbar-main {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header {
    background-color: #F4F4F4;
    height: 106px;
}

.main-header .input-group {
    width: 526px;
    height: 40px;
}

.main-header .input-group .form-control {
    border: 1px solid #ACACAC;
}

.btn_list {
    background-color: #154786;
    font-family: 'suisse bold', sans-serif;
    border: none;
    color: #fff;
    border-radius: 6px 6px 0 0;
}

.btn_list:hover {
    background-color: #0f3562;
    color: #fff;
    /* Slightly darker on hover */
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding-top: 0.9rem;
    font-family: 'suisse medium', sans-serif;
    color: rgba(33, 33, 33, 1);
    font-size: 15px;

}
.search-box {
    position: relative;
}

.search-box .form-control {
    border-radius: 20px;
    padding-right: 40px;
}

.search-box .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    background-color: #fff1e6;
}

.hero-banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.category-icon {
    width: 192px;
    height: 192px;
    background-color: #f0f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon img {
    max-width: 60%;
    max-height: 60%;
}

.card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 3px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 24px;
    margin-bottom: 0;
    margin-right: auto;
}

.section-title a {
    font-size: 0.85rem;
}

.process-step {
    text-align: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.deal-section {
    padding: 100px 0px;
}

.deal-box .shadow-box {
    width: 540px;
    box-shadow: 0px 0px 10px 0px #00000073;
    border-radius: 18px;
}

.deal-box h2 {
    font-family: 'suisse bold', sans-serif;
}

.deal-box input {
    width: 80%;
}

.deal-box .subscription-text {
    width: 550px;
    margin-top: 35px;
}

.deal-box .shadow-box img {
    width: 540px;
    border-radius: 18px;
}

.deal-title {
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-main {
    background-color: var(--secondary);
    color: white;
    padding: 3rem 0;
}

.footer-heading {
    color: white;
    font-size: 16px;
    margin-bottom: 1.5rem;
    font-family: 'suisse bold', sans-serif;
}

.footer-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 13px;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--primary);
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 0;
    font-size: 0.85rem;
}

.payment-icons img {
    height: 24px;
    margin-right: 5px;
}

.bg-blue {
    background-color: var(--theme-blue);
}

.text-blue {
    color: var(--text-blue);
}

.text_darkblue {
    color: rgba(21, 69, 128, 1);
}

.text-grey {
    color: #797979;
}

.profile-link {
    border-right: 1px solid #206FAA;
    border-radius: 0;
    line-height: 8px;
}

.product-img-bg {
    background-color: var(--bg-section);
}

.printing-section {
    height: 283px;
    background-color: #32ADE6;
    color: #ffffff;
}

.printing-section .left-content p {
    font-size: 1rem;
    width: 300px;
}

.printing-section .step-box {
    text-align: center;
}

.printing-section .step-box p {
    font-size: 1.1875rem;
}

.printing-section .step-box span {
    display: block;
    color: #000000;
    width: 175px;
    font-size: 0.875rem;
    line-height: 1rem;
}

.printing-section .step-box:nth-child(2) .img-container {
    background-color: var(--theme-cyan);
}

.printing-section .step-box .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0090BD;
    border-radius: 50px;
    width: 95px;
    height: 95px;
    margin: auto;
}

.deal-section {
    background-color: var(--bg-section);
}

.design-path-section {
    padding: 100px 0px;
}

.design-path-section h3 {
    padding-left: 60px;
}

.design-path-section .btn {
    border-color: var(--theme-cyan);
    color: var(--theme-cyan);
    text-transform: uppercase;
    width: 146px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
}

.design-path-section .card {
    background-color: #EBEBEB;
    border-radius: 0;
}

.design-path-section .card-text {
    color: #231F20; 
}

.section_title {
    margin-bottom: 12px;
    font-size: 24px; 
    padding-left: 65px;
}

.section-subtitle {
    font-family: 'neue regular', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(121, 121, 121, 1);
    margin-bottom: 4rem;
    padding-left: 65px;
}

.reviews-logos {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    padding-left: 65px;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #6b7280;
    font-family: 'suisse medium', sans-serif;
    font-size: 13px;
}

.stars i {
    color: #fbbf24;
    /* Amber-400 */
}

.logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logos img {
    height: 24px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logos img:hover {
    opacity: 1;
}

.category-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(172, 172, 172, 1);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.55);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-next {
    right: -25px;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: rgba(172, 172, 172, 1);
    font-weight: bold;
}

.circle-frame {
    width: 150px;
    height: 150px;
    background-color: rgba(236, 233, 228, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mySwiper {
    width: 100%;
  }
  
.mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-title{
    font-family: 'suisse medium', sans-serif;
    font-size: 18px;
}
.custom-btn {
    background-color: transparent;
    border: 1px solid #000;
    padding: 10px 20px;
    font-family: 'neue regular', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #111827;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: #000;
    color: #fff;
}

.productSwiper .swiper-slide {
    padding: 5px;
}

.product-card {
    background-color: #fff;
    border: 1px solid rgba(232, 238, 242, 1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    background-color: #e5edf3;
    padding: 20px;
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.product-content {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
}

.product-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(172, 172, 172, 1);
}

.price {
    color: rgba(2, 148, 221, 1);
    font-weight: 600;
    font-size: 1rem;
}
.desclaimer_secction h3{
    font-family: 'suisse medium', sans-serif; 
    font-size: 18px;
    color: rgba(33, 33, 33, 1);
}
.desclaimer_secction  .section_title {
    padding-left: 20px;
}
.disclaimer-section .section-subtitle {
    padding-left: 20px;
    color: #262626;
    font-size: 20px;
}
.desclaimer_secction  .card-body {
    padding-left: 40px;
    padding-top: 40px;
}
.event-card .card-text{
    font-size: 14px;
    color: rgba(38, 38, 38, 1);
    font-family: 'neue regular', sans-serif;
}
.event-card .theme_primarybtn{
    font-size: 12px; 
}
.bg__light {
    background-color: rgba(232, 238, 242, 1);
}

.event-card {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-color: #fff;
}

.eventSwiper .swiper-slide {
    padding: 10px;
}

.theme_primarybtn {
    background: rgba(0, 132, 180, 1);
    border: 1px solid rgba(0, 132, 180, 1);
}

.theme_primarybtn:hover {
    background: rgba(0, 132, 180, 0.8);
    border: 1px solid rgba(0, 132, 180, 1);

}

.find-more-btn {
    background-color: #ffffff;
    color: #03a9d6;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 30px;
    border: none;
    border-radius: 999px;
    /* Full pill shape */
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.find-more-btn:hover {
    background-color: #e0f7fb;
    color: #0288a7;
}

.social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    color: white;
}

.social-bar p {
    margin: 0;
    font-weight: bold;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #03a9d6;
    border-radius: 4px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: #0288a7;
    color: #fff;
}