/* ===========================
   Base Font Settings
=========================== */
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===========================
   Selection Color
=========================== */
::selection {
    background-color: var(--color-primary);
    color: #fff;
}
.text-primary {
    color: var(--color-primary) !important;
}
.bg-primary {
    background-color: var(--color-primary);
}

/* ===========================
   Headings (Raleway)
=========================== */
h1, h2, h3, h4, h5, h6, label {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 15px;
}
h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 28px; }
h5 { font-size: 22px; font-weight: 600; }
h6 { font-size: 18px; font-weight: 600; }

/* ===========================
   Paragraphs & Text Elements
=========================== */
p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

small {
    font-size: 80%;
    color: #777;
}

strong, b {
    font-weight: bold;
    color: #000;
}

em, i {
    font-style: italic;
}

mark {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 4px;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

/* ===========================
   Blockquotes
=========================== */
blockquote {
    font-style: italic;
    margin: 30px 0;
    padding: 15px 30px;
    background: #f9f9f9;
    border-left: 5px solid var(--color-primary);
    color: #555;
}

/* ===========================
   Lists
=========================== */
ul, ol {
    padding-left: 40px;
    margin-bottom: 30px;
}

ul li, ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}

dl {
    margin-bottom: 30px;
}

dt {
    font-weight: bold;
    color: #222;
}

dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* ===========================
   Code
=========================== */
code, pre {
    font-family: "Courier New", Courier, monospace;
    background-color: #f4f4f4;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 14px;
}

pre {
    padding: 15px;
    overflow: auto;
}

/* ===========================
   Text Utilities
=========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-muted { color: #888; }

.lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #444;
}

/* ===========================
   Responsive Typography
=========================== */
@media (max-width: 1200px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 30px; }
    h4 { font-size: 24px; }
    h5 { font-size: 20px; }
    h6 { font-size: 16px; }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 26px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    p, li { font-size: 15px; }
}

@media (max-width: 480px) {
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    h6 { font-size: 14px; }
    p, li { font-size: 14px; }
}

/* ===========================
   Base Button Style
=========================== */
.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10px;
    width: 4px;
    height: 120%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(20deg);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn:hover::after {
    left: 110%;
}

/* ===========================
   Button Types
=========================== */
.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-hover);
    border-color: var(--color-hover);
    color: #fff;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* ===========================
   Outline Buttons
=========================== */
.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-block {
    display: block !important;
}

/* ===========================
   Sizes
=========================== */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-lg {
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 14px;
}

.site-header {
    z-index: 999;
    position: relative;
}

/* ===========================
   Disabled
=========================== */
.btn:disabled,
.btn.disabled {
    background-color: #d6d6d6;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ===========================
   Utility Classes
=========================== */
.text-white { color: #fff !important; }
.text-dark { color: #333 !important; }
.bg-transparent { background-color: transparent !important; }
.border-none { border: none !important; }

@media (max-width: 480px) {
    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.sub-title {
    padding: 10px 20px;
    background-color: var(--rgba-primary-1);
    border: 1px solid var(--color-primary);
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-head {
    margin-bottom: 50px!important;
}

.section-head.text-left {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
}

.section-head.text-center {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.text-lg { font-size: 110%; }
.text-xl { font-size: 120%; }
.w-100 { width: 100% !important; }
a { text-decoration: none; }

/* ===========================
   Preloader
=========================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* ===========================
   Flip Card Animation
=========================== */
.flip-card {
    background-color: transparent;
    width: 100px;
    height: 100px;
    perspective: 1000px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: flip 2s infinite linear;
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    transform: rotateY(180deg);
}

@keyframes flip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* ===========================
   Mouse Effect
=========================== */
/* .cursor-border {
    width: 10px;
    height: 10px;
    background-color: var(--rgba-primary-8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
}

.cursor-pill {
    width: 20px;
    height: 20px;
    background-color: var(--rgba-primary-2);
    border-radius: 50px;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
} */

ul {
    padding: 0;
}

li {
    list-style-type: none;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1180px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px;
    }
}

.form-control {
    height: 50px;
    border-radius: 10px !important;
    background-color: #fff;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}

.nav-box .swiper-button-next , .nav-box .swiper-button-prev{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    opacity: 0.3;
    background-color: var(--color-primary);
    transition: all 0.5s;
}
.nav-box .swiper-button-next , .nav-box .swiper-button-prev{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    opacity: 0;
    background-color: var(--color-primary);
}
.nav-box .swiper-button-next:after, .nav-box .swiper-button-prev:after{
    font-size: 22px;
    color: #fff;
}

.security-section:hover .nav-box .swiper-button-next , .security-section:hover .nav-box .swiper-button-prev{
    opacity: 1;
    transition: all 0.5s;
}
.feature-section:hover .swiper-button-prev, .feature-section:hover .swiper-button-next {
    opacity: 1;
    transition: all 0.5s;
}
.feature-section .swiper-button-prev{
    left: -80px;
    right: auto;
}
.feature-section .swiper-button-next {
    right: -80px;
    left : auto;
}