* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rajdhani", sans-serif;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Rajdhani", sans-serif;
}

/* CENTER DOT */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #107c10;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/* OUTER CIRCLE + SOFT SHADE */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(16, 124, 16, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s ease,
        height 0.2s ease,
        border 0.2s ease;

    /* Soft glow */
    box-shadow: 0 0 20px rgba(16, 124, 16, 0.25);
}

/* Hover effect */
a:hover~.cursor-ring,
button:hover~.cursor-ring {
    width: 55px;
    height: 55px;
    border-color: rgba(16, 124, 16, 0.9);
}

/* Mobile off */
@media (max-width: 768px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

.swiper-slide {
    backface-visibility: hidden;
    height: auto !important;
}

.swiper-wrapper {
    height: auto;
}

:root {
    --primary: #107c10;
    --secondary: #222222;
    --primary-light: #107c1057;
    --border: #e5e5e5;
    --text-dark: #222;
    --text-muted: #777;
    --white: #fff;
}

a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

button {
    cursor: pointer;
}

a:hover {
    color: inherit;
}

img {
    width: 100%;
    max-width: 100%;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #111;
}

h1 {
    font-size: 42px;
    letter-spacing: 0.3px;
}

h2 {
    font-size: 40px;
    letter-spacing: 0.3px;
}

h3 {
    font-size: 30px;
    letter-spacing: 0.3px;
}

h4 {
    font-size: 20px;
    letter-spacing: 0.3px;
}

h5 {
    font-size: 19px;
    letter-spacing: 0.3px;
}

.form-control,
.form-control:focus,
.form-control:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: black;
    opacity: 1;
}

.bg-black {
    background-color: black;
}

.m-15 {
    margin: 15px 0;
}

.pt-20 {
    padding-top: 20px;
}

.m-60 {
    margin: 60px 0;
}

.mt-3 {
    margin-top: 30px;
}

.mb-3 {
    margin-bottom: 30px;
}

.margin-main {
    margin: 80px 0;
}

.padding-main {
    padding: 60px 0;
}

.d-flex {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.align-center {
    align-items: center !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.space-between {
    justify-content: space-between !important;
}

.text-right {
    text-align: right;
}

.row {
    display: flex;
    flex-flow: row wrap;
}

.w-100 {
    width: 100% !important;
}

.col-md,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    width: 100%;
    min-height: 1px;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .col-md {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-md-2 {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        width: 83.333%;
        max-width: 83.333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .flex-reverse {
        flex-direction: column-reverse !important;
    }

    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .padding-main {
        padding: 20px 0;
    }

    .p--0 {
        padding: 0 !important;
    }
}

.container {
    max-width: 1450px;
    margin: auto;
    padding: 0px 15px;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (min-width: 1251px) and (max-width: 1500px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1001px) and (max-width: 1250px) {
    .container {
        max-width: 980px !important;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .container {
        margin: 0px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 14px;
    color: black;
    border-radius: 4px;
    background: white;
    overflow: hidden;
    z-index: 1;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-one i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.btn-one::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #107c10 0%, #0a700a 50%, #0a700a 50%);
    transform: translate(-100%, 100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-one::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(315deg, #107c10 0%, #0a700a 50%, #0a700a 50%);
    transform: translate(100%, -100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-one:hover {
    transform: translateY(-1px);
    color: white;
}

.btn-one:hover::before {
    transform: translate(0, 0);
}

.btn-one:hover::after {
    transform: translate(0, 0);
}

.btn-one:hover i {
    transform: translateX(3px);
    color: white;
}

@media (max-width: 768px) {
    .btn-one {
        padding: 10px 18px;
    }
}

.heading-main {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading-main h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.heading-main h2 span {
    color: var(--primary);
}

.heading-main a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.heading-main a i {
    color: var(--primary);
}

.heading-main .word:first-child {
    color: var(--primary);
}

@media (max-width: 768px) {
    .heading-main h2 {
        font-size: 22px;
    }
}

.heading-main.dark,
.heading-main.dark a {
    color: white;
}

.btn-two {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-two:hover {
    background: var(--primary);
    color: white;
}

/* SPLIT TETX */

.word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.25em;
}

.char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.6s ease,
        opacity 0.6s ease;
}

.char.show {
    transform: translateY(0);
    opacity: 1;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-content.modal-sm {
    max-width: 500px;
}

.modal-content.modal-lg {
    max-width: 800px;
}

.modal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.modal-form label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.modal-form input,
.modal-form select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: #111;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.modal-form textarea {
    resize: none;
}

.modal-form .form-row {
    display: flex;
    gap: 15px;
}

.modal-form .form-row .form-group {
    flex: 1;
}