/* =========================================
   ROOT VARIABLES - Ultra Simple
   ========================================= */
:root {
    /* Colors */
    --primary: #A4D519;
    --secondary: #26433E;
    --light: #DBE1DD;
    --dark: #1F2D3D;
    --text: #666666;

    /* Fonts */
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* =========================================
   TYPOGRAPHY - Generic Styles
   ========================================= */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
    line-height: 1.5;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

small {
    font-size: 14px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }
}

/* Service custom styles (.tp-service-cst) */
.tp-service-cst-content {
    backdrop-filter: blur(100px);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem calc(3rem - 0.5rem) 2.5rem;
    position: absolute;
    margin: 2rem;
    margin-right: calc(2rem + 2rem);
    bottom: 0;
    left: 0;
    right: 0;
    transition: var(--transition);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-content {
        margin-right: 2rem;
    }
}

@media (max-width: 574.98px) {
    .tp-service-cst-content {
        margin: 0.75rem;
        padding: calc(1.5rem + 0.25rem) 0.75rem calc(1.25rem + 0.25rem) 1.25rem;
        position: inherit;
        margin-top: -93px;
    }
}

.tp-service-cst-item {
    border-right: 1px solid var(--secondary);
    padding-right: calc(1.5rem + 0.75rem);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-item {
        padding-right: 0;
        border: none;
    }
}

.tp-service-cst-item-border {
    border-bottom: 1px solid var(--light);
    padding-bottom: 24px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-item-border br {
        display: none;
    }
}

.tp-service-cst-item:hover .tp-service-cst-content {
    background: var(--primary);
}

.tp-service-cst-item:hover .tp-service-cst-item-border {
    border-color: var(--primary);
}

.tp-service-cst-item:hover .tp-service-cst-thumb img {
    transform: scale(1.1);
}

.tp-service-cst-thumb {
    overflow: hidden;
    border-radius: var(--radius-md);;
}

.tp-service-cst-thumb img {
    border-radius: var(--radius-md);
    transition: all 0.6s ease;
}

.tp-service-cst-slider {
    margin-right: -490px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-slider {
        margin-right: 0;
    }
}

.tp-service-cst-slider-wrap {
    border-top: 1px solid var(--secondary);
    padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-info {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-info p br {
        display: none;
    }
}

.tp-service-cst-info-list ul li {
    font-family: var(--font-primary);
    font-weight: 500;
    list-style: none;
    color: var(--text);
    display: flex;
}

.tp-service-cst-info-list ul li:not(:last-child) {
    margin-bottom: 13px;
}

.tp-service-cst-info-list ul li span {
    margin-right: 10px;
    transform: translateY(-2px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tp-service-cst-title-wrap {
        margin-right: 80px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-title-wrap {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-title-wrap {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-cst-top-content p br {
        display: none;
    }
}

.tp-service-cst-2-wrap {
    border-top: 1px solid var(--light);
}

.tp-service-cst-2-wrap .tp-service-cst-item {
    border-right: 1px solid var(--light);
}

.tp-service-cst-2-info .tp-service-cst-info-list ul li {
    color: var(--text);
}

.tp-service-cst-3-wrap .tp-service-cst-item {
    border-right: 0;
    padding-right: 0;
}

.tp-service-it-shape {
    position: absolute;
    top: -100px;
    right: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-service-it-shape {
        display: none;
    }
}

/* Portfolio (vp) styles */
.tp-portfolio-vp-bigtitle {
    font-weight: 800;
}



@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-portfolio-vp-para br {
        display: none;
    }
}

.tp-portfolio-vp-post-thumbnail {
    padding-top: 720px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-portfolio-vp-post-thumbnail {
        padding-top: 600px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-portfolio-vp-post-thumbnail {
        padding-top: 400px;
        margin-bottom: 30px;
    }
}

.tp-portfolio-vp-post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: translate3d(-6.66%, 0, 0) scale(1.2);
    -webkit-transform: translate3d(-6.66%, 0, 0) scale(1.2);
    transition: opacity 0.35s, transform 0.45s, filter 0.35s;
}

.tp-portfolio-vp-post-thumbnail .video-container {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tp-portfolio-vp-post-thumbnail .video-container iframe {
    width: 300%;
    margin-left: -100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    border: none;
    max-width: none;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--primary);
}

.tp-portfolio-vp-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 3;
}

@media (max-width: 574.98px) {
    .tp-portfolio-vp-content {
        bottom: 22px;
        left: 22px;
    }
}

.tp-portfolio-vp-title span {
    background: var(--text);
    display: inline-block;
}

.tp-portfolio-vp-text-top {
    padding-left: 32px;
    padding-right: 42px;
    padding-top: 10px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.tp-portfolio-vp-text-top::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -22px;
    height: 41px;
    width: 23px;
    z-index: -1;
    background-color: transparent;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 18px 0 0 var(--dark);
}

.tp-portfolio-vp-text-middle {
    padding: 0 42px 14px 32px;
    border-radius: 0 16px 16px 16px;
}

/* Button group styles used on this page */
.tp-btn-group {
    display: flex;
    width: fit-content;
}

.tp-btn-group>*:nth-child(1) {
    transform: scale3d(0.5, 0.5, 1);
    margin-inline-end: -52px;
}

.tp-btn-group>*:nth-child(2) {
    transform: scale3d(1, 1, 1);
}

.tp-btn-group>*:nth-child(3) {
    transform: scale3d(1, 1, 1);
    margin-inline-start: 0;
}

.tp-btn-group:hover>*:nth-child(1) {
    transform: scale3d(1, 1, 1);
    margin-inline-end: 0;
    background: var(--primary);
}

.tp-btn-group .tp-btn-circle {
    text-align: center;
    width: 48px;
    height: 48px;
    font-weight: 500;

    border-radius: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--dark);
}

.tp-btn-vp-group .tp-btn-circle {
    background: transparent;
    border: 1px solid rgba(17, 17, 18, 0.1);
    width: 60px;
    height: 60px;

}

.tp-btn-vp-group .tp-btn-2 {
    background: var(--light);
    font-weight: 700;

    font-family: var(--font-secondary);
    color: var(--text);
    border: 1px solid rgba(17, 17, 18, 0.1);
    padding: 21px 29px;
}

.tp-btn-vp-group:hover>*:nth-child(1),
.tp-btn-vp-group:hover>*:nth-child(2),
.tp-btn-vp-group:hover>*:nth-child(3) {
    background: var(--text);
    color: var(--light);
}

.tp-btn-vp-group-primary .tp-btn-circle,
.tp-btn-vp-group-primary .tp-btn-2 {
    background: var(--primary);
}

.tp-btn-vp-group-primary:hover>*:nth-child(1),
.tp-btn-vp-group-primary:hover>*:nth-child(2),
.tp-btn-vp-group-primary:hover>*:nth-child(3) {
    background: var(--light);
    color: var(--text);
}




@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-portfolio-sa-title {
        padding: 17px 0;
    }
}

.tp-portfolio-pp-border {
    margin-right: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 574.98px) {
    .tp-portfolio-pp-border {
        margin-right: 0;
    }
}

.tp-portfolio-2-thumb {
    overflow: hidden;
}

.tp-portfolio-2-thumb img {
    transition: all 0.4s ease;
}

.tp-portfolio-2-item:hover .tp-portfolio-2-thumb img {
    transform: scale(1.1);
}

.tp-portfolio-pp-content .positions {
    background: var(--light);
    display: inline-block;
    border-radius: 100px;
}

.tp-portfolio-2-content .tp-portfolio-tag span {
    margin-right: 0;
    font-weight: 500;
    font-family: var(--font-primary);
}

.tp-portfolio-tag span {

    font-weight: 500;
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Button hover dot helper */
.tp-btn-circle-dot {
    position: absolute;
    bottom: 0;
    left: 32px;
    width: 0;
    height: 0;
    transition: all 0.6s ease-out;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.06);
    z-index: -1;
}

.tp-btn-rounded {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tp-btn-rounded:hover .tp-btn-circle-dot {
    width: 420px;
    height: 420px;
}

/* Panel pin helpers */
.tp-panel-pin {
    will-change: transform;
}

.tp-panel-pin-area {
    position: relative;
}











/* ===== Section ===== */
.vs-as-category-section {
    padding: 80px 0;
}

.vs-as-section-title h2 {
    font-weight: 600;

    color: var(--dark);
}

.vs-as-section-title p {
    color: var(--text);
    margin-top: 10px;

}

/* Divider */
.vs-as-title-divider {
    position: relative;
    width: 90px;
    height: 2px;
    background: var(--primary);
    margin: 12px auto;
}

.vs-as-title-divider::after {
    content: "";
    width: 10px;
    height: 10px;
    background:  var(--secondary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ===== Card ===== */
.vs-as-category-card {
    position: relative;
    background:  var(--light);
    border-radius: 12px;
    padding: 40px 20px;
    border: 1px solid var(--light);
    transition: all 0.35s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Half circle background */
.vs-as-category-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--light);
    border-radius: 50%;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.vs-as-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(76, 70, 230, 0.15);
    border-color: transparent;
}

/* Icon */
.vs-as-category-icon {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vs-as-category-title {
    position: relative;
    z-index: 2;

    font-weight: 500;
    color: var(--dark);
}

@media (max-width: 767px) {
    .vs-as-category-card {
        margin-bottom: 20px;
    }
}








.vs-as-sptb {
    background: var(--light);
    padding: 80px 0;
}

/* SECTION TITLE */
.vs-as-section-title h2 {
    font-weight: 700;

    color: var(--dark);
}

.vs-as-section-title p {
    color: var(--text);
    max-width: 600px;
    margin: 10px auto 0;
}

/* TABS CONTAINER */
.vs-as-eductaional-tabs {
    justify-content: center;
    gap: 12px;
    border: none;
}

/* TAB BUTTONS */
.vs-as-eductaional-tabs li a {
    background: var(--light);
    color: var(--dark);
    padding: 12px 26px;
    border-radius:var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ACTIVE TAB */
.vs-as-eductaional-tabs li a.active {
    background:var(--primary);
    color: var(--light);
    box-shadow: 0 8px 20px rgba(244, 43, 106, 0.35);
}

/* HOVER */
.vs-as-eductaional-tabs li a:hover {
    background: var(--primary);
    color: var(--light);
}



.vs-as-course-card {
    background: var(--light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    max-width: 360px;
}

.vs-as-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* TOP AREA */
.vs-as-card-top {
    background: var(--primary);
    height: 170px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON */
.vs-as-icon i {

    color: var(--light);
}

/* FREE RIBBON */
.vs-as-ribbon {
    position: absolute;
    top: 14px;
    left: -35px;
    background: var(--primary);
    color: var(--light);
    padding: 6px 40px;

    font-weight: 600;
    transform: rotate(-45deg);
}

/* CATEGORY BADGE */
.vs-as-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--light);

    padding: 5px 12px;
    border-radius: 4px;
}

/* PRICE BADGE */
.vs-as-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--dark);
    color: var(--light);

    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

/* BODY */
.vs-as-card-body {
    padding: 20px;
}

.vs-as-title {

    font-weight: 700;
    margin-bottom: 10px;
}

/* META */
.vs-as-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    color: var(--text);
    margin-bottom: 12px;
}

.vs-as-meta i {
    margin-right: 4px;
}

/* DESCRIPTION */
.vs-as-desc {

    color: var(--text);

    margin-bottom: 15px;
}

/* INFO ROW */
.vs-as-info {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid  var(--light);
    border-bottom: 1px solid var(--light);

    margin-bottom: 18px;
}

/* BUTTON */
.vs-as-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--light);
    padding: 12px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.vs-as-btn:hover {
    background: var(--primary);
}

/* ENTRY ANIMATION */
.vs-as-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: vsFadeUp 0.8s ease forwards;
}

/* STAGGER EFFECT */
.vs-as-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.vs-as-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.vs-as-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.vs-as-animate:nth-child(4) {
    animation-delay: 0.4s;
}

.vs-as-animate:nth-child(5) {
    animation-delay: 0.5s;
}

.vs-as-animate:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes vsFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vs-as-course-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vs-as-course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* ICON PULSE */
.vs-as-course-card:hover .vs-as-icon i {
    animation: vsPulse 0.6s ease;
}

@keyframes vsPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.vs-as-boom {
    position: relative;
    margin-top: 44px;
}

.vs-as-dim {
    display: flex;
    justify-content: center;
}







.team-area {
    padding: 130px 0;
    position: relative;
}

/* LEFT CONTENT STICKY */
.team__left {
    position: sticky;
    top: 120px;
    max-width: 520px;
}

.team__left h2 {


    font-weight: 600;
    margin-bottom: 20px;
}

.team__left p {

    color: var(--text);
    margin-bottom: 30px;
}

/* ================= TEAM CARD ================= */

.team__item {
    position: relative;
    overflow: hidden;
}

.team__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team__item:hover .team__image img {
    transform: scale(1.05);
}

.team__item h4 {
    margin-top: 18px;
    margin-bottom: 4px;

}

.team__item span {

    color: var(--text);
}

/* ================= SOCIAL ICON BUTTON ================= */

.team__item .socials {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background:  var(--dark);
    color: var(--light);
    border-radius: 50%;
    text-align: center;

    cursor: pointer;
    opacity: 0;
    transform: translateX(15px) rotate(-30deg);
    transition: all 0.4s ease;
    z-index: 2;
}

/* show plus icon */
.team__item:hover .socials {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

/* SOCIAL LIST */
.team__item .socials ul {
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    list-style: none;
}

/* show list on hover */
.team__item .socials:hover ul {
    opacity: 1;
    visibility: visible;
}

/* each icon */
.team__item .socials ul li {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.team__item .socials:hover ul li {
    transform: translateY(0);
    opacity: 1;
}

/* stagger animation */
.team__item .socials ul li:nth-child(2) {
    transition-delay: 0.1s;
}

.team__item .socials ul li:nth-child(3) {
    transition-delay: 0.2s;
}

/* icon style */
.team__item .socials ul li a {
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* rotate icon hover */
.team__item .socials ul li a:hover i {
    transform: rotateY(360deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .team__left {
        position: static;
        max-width: 100%;
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .team__image img {
        height: 320px;
        object-position: top;
    }
}

.hover-link {
    position: relative;
    display: inline-block;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* underline animation */
.hover-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.4s ease;
}

/* hover effect */
.hover-link:hover {
    color: var(--dark);
}

.hover-link:hover::after {
    width: 100%;
}

/* ================= BUTTON STYLE ================= */

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 52px;
    border-radius:var(--radius-lg);

    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border: 1.5px solid var(--dark);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* text swap animation (data-text) */
.btn-one::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

/* hide original text */
.btn-one span,
.btn-one {
    color: var(--dark);
}

/* hover reveal */
.btn-one:hover::before {
    transform: translateY(-120%);
    opacity: 0;
}

/* hover animated text */
.btn-one::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--dark);
    transform: translateY(120%);
    transition: transform 0.45s ease;
}

.btn-one:hover::after {
    transform: translateY(0);
}

/* subtle lift */
.btn-one:hover {
    transform: translateY(-2px);
}

/* mobile */
@media (max-width: 575px) {
    .btn-one {
        padding: 12px 36px;

    }
}







.vr-main-section {
    padding: 60px 0;
    background-color: var(--light);
}

.vr-section-heading {
    margin-bottom: 50px;
}

.vr-section-title {

    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.vr-heading-subtitle {
    color: var(--text);
}

.vr-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vr-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.vr-feature-box:hover {
    transform: translateY(-5px);
}

.vr-feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.vr-feature-icon img {
    width: 45px;
    height: 45px;
}

.vr-feature-icon.vr-gradient-1 {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}

.vr-feature-icon.vr-gradient-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.vr-feature-icon.vr-gradient-3 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.vr-feature-icon.vr-gradient-4 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vr-feature-content {
    flex: 1;
}

.vr-feature-title {

    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.vr-feature-divider {
    width: 60px;
    height: 4px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.vr-feature-divider.vr-color-1 {
    background: linear-gradient(90deg, #a8e063 0%, #56ab2f 100%);
}

.vr-feature-divider.vr-color-2 {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.vr-feature-divider.vr-color-3 {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.vr-feature-divider.vr-color-4 {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.vr-feature-text {

    color: var(--text);

}

.vr-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vr-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vr-play-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(168, 224, 99, 0.4);
}

.vr-play-button:hover {
    transform: scale(1.1);
}

.vr-play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid var(--light);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .vr-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .vr-image-wrapper {
        min-height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .vr-feature-box {
        gap: 20px;
    }

    .vr-feature-icon {
        width: 70px;
        height: 70px;
    }

    .vr-image-wrapper {
        min-height: 300px;
    }
}










/* Section Spacing */
.vr-gallery-section {
    padding: 80px 0;
    position: relative;
}

/* Decorative Elements */
.vr-decoration-rainbow {
    position: absolute;
    top: 20px;
    left: 80px;
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

.vr-decoration-sun {
    position: absolute;
    top: 20px;
    right: 80px;
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

.vr-decoration-dots {
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 80px;
    height: 120px;
    opacity: 0.3;
}

/* Title Section */
.vr-contact-section-title-box {
    margin-bottom: 65px;
}

.vr-section-subtitle-2 {
    color: var(--primary);

    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
}

.vr-section-title {

    font-weight: 700;
    color:var(--dark);
    margin: 0;

}

.vr-section-title .z-index-1 {
    position: relative;
    display: inline-block;
}

.vr-title-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
}

.vr-title-shape svg {
    width: 100%;
    height: 100%;
}

.vr-title-underline {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
}

/* Gallery Container */
.vr-gallery-thumb-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Box Styles */
.vr-gallery-thumb-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vr-gallery-thumb {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.vr-gallery-thumb>img {
    transition: transform 0.4s ease-in-out;
}

.vr-gallery-thumb>img:hover {
    transform: scale(1.05);
}

.vr-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.border-radius-20 {
    border-radius: 20px;
}

/* Box Style 1 - Left Column */
.box-style-1 {
    width: 180px;
}

.box-style-1 .style-1 {
    height: 180px;
}

.box-style-1 .style-2 {
    height: 240px;
}

/* Box Style 2 - Second Column */
.box-style-2 {
    width: 220px;
    padding-top: 40px;
}

.box-style-2 .style-1 {
    height: 280px;
}

.box-style-2 .style-2 {
    height: 140px;
}

/* Box Style 3 - Center Column */
.box-style-3 {
    width: 200px;
}

.box-style-3 .style-1 {
    height: 240px;
}

.box-style-3 .style-2 {
    height: 200px;
}

/* Box Style 4 - Fourth Column */
.box-style-4 {
    width: 200px;
    padding-top: 60px;
}

.box-style-4 .style-1 {
    height: 140px;
}

.box-style-4 .style-2 {
    height: 260px;
}

/* Box Style 5 - Right Column */
.box-style-5 {
    width: 240px;
}

.box-style-5 .style-1 {
    height: 200px;
}

.box-style-5 .style-2 {
    height: 240px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vr-gallery-thumb-wrap {
        gap: 15px;
    }

    .box-style-1,
    .box-style-2,
    .box-style-3,
    .box-style-4,
    .box-style-5 {
        width: calc(20% - 15px);
        min-width: 150px;
    }
}

@media (max-width: 768px) {


    .vr-gallery-thumb-wrap {
        flex-direction: column;
        align-items: center;
    }

    .box-style-1,
    .box-style-2,
    .box-style-3,
    .box-style-4,
    .box-style-5 {
        width: 100%;
        max-width: 400px;
        padding-top: 0 !important;
    }

    .box-style-2 {
        padding-top: 0;
    }

    .box-style-4 {
        padding-top: 0;
    }

    .vr-decoration-rainbow,
    .vr-decoration-sun {
        width: 60px;
        height: 60px;
    }

    .vr-decoration-rainbow {
        left: 20px;
    }

    .vr-decoration-sun {
        right: 20px;
    }
}

.vr-edu-decoration {
    width: 260px;
}

/* Arc floating motion */
.vr-edu-arc {
    animation: vrFloat 4s ease-in-out infinite;
}

.arc-2 {
    animation-delay: 0.8s;
}

/* Book bounce */
.vr-edu-decoration rect {
    animation: vrBounce 3s ease-in-out infinite;
}

/* Graduation cap slight tilt */
.vr-edu-decoration polygon {
    transform-origin: center;
    animation: vrTilt 3s ease-in-out infinite;
}

/* Stars blinking */
.vr-edu-star {
    animation: vrBlink 2s ease-in-out infinite;
}

/* Animations */
@keyframes vrFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes vrBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes vrTilt {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes vrBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}






.vr-tuition-section {
    background: var(--light);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.vr-tuition-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 89, 78, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.vr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 89, 78, 0.1);
    color:var(--primary);
    padding: 8px 20px;
    border-radius: 50px;

    font-weight: 600;
    margin-bottom: 20px;
}

.vr-badge svg {
    width: 19px;
    height: 14px;
}

.vr-section-title {

    font-weight: 700;
    color: var(--dark);

    margin-bottom: 20px;
}

.vr-section-description {
    color: var(--text);
    margin-bottom: 30px;
}

.vr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--light);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.vr-btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.vr-btn-primary svg {
    width: 16px;
    height: 15px;
    transition: transform 0.3s ease;
}

.vr-btn-primary:hover svg {
    transform: translateX(5px);
}

.vr-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.vr-card.vr-card-active {
    background: var(--primary);
    color:var(--light);
    border-color: var(--primary);
}

.vr-card-active .vr-card-title,
.vr-card-active .vr-list-label,
.vr-card-active .vr-list-item {
    color: var(--light) !important;
}

.vr-card-active .vr-check-icon path {
    fill: var(--light);
}

.vr-card-title {

    font-weight: 700;
    color: var(--vr-text-dark);
    margin-bottom: 30px;
}

.vr-list-group {
    margin-bottom: 30px;
}

.vr-list-group:last-child {
    margin-bottom: 0;
}

.vr-list-label {
    font-weight: 600;

    color: var(--vr-text-dark);
    margin-bottom: 15px;
    display: block;
}

.vr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vr-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--vr-text-muted);

}

.vr-list-item:last-child {
    margin-bottom: 0;
}

.vr-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.vr-check-icon svg {
    width: 20px;
    height: 17px;
}

@media (max-width: 991px) {

    .vr-tuition-section {
        padding: 60px 0 40px;
    }

    .vr-card {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {

    .vr-btn-primary {
        padding: 12px 24px;

    }
}




.sg-sptb {
    padding: 80px 0;
    position: relative;
}

/* Section Title Styles */
.sg-section-title {
    margin-bottom: 50px;
}

.sg-section-title h2 {

    font-weight: 700;
    color: #282f53;
    margin-bottom: 15px;

}

.sg-sectiontitle-design {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a55eea 100%);
    margin: 15px 0 20px;
}

.sg-sectiontitle-design::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    width: 25px;
    height: 4px;
    background: #e0e0e0;
}

.sg-sectiontitle-design::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 0;
    width: 25px;
    height: 4px;
    background: #e0e0e0;
}



.sg-section-title p {

    color: #737d93;

    margin: 0;
}

/* Category Items Container */
.sg-item-all-cat {
    margin-top: 30px;
}

.sg-education-categories .row {
    margin: 0 -10px;
}

.sg-education-categories [class*="col-"] {
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Category Card Styles */
.sg-item-all-card {
    position: relative;
    padding: 35px 20px;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
}

.sg-item-all-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
    transition: height 0.4s ease;
    z-index: 0;
}

.sg-item-all-card:hover::before {
    height: 100%;
}

.sg-item-all-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Icon Styles */
.sg-iteam-all-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.sg-iteam-all-icon i {

    transition: all 0.3s ease;
}

.sg-gradient-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-item-all-card:hover .sg-gradient-icon {
    -webkit-text-fill-color: var(--light);
    color: var(--light);
}

/* Text Styles */
.sg-item-all-text {
    position: relative;
    z-index: 1;
}

.sg-item-all-text h5 {

    font-weight: 600;
    color: #282f53;
    transition: all 0.3s ease;

}

.sg-item-all-card:hover .sg-item-all-text h5 {
    color: var(--light);
}

/* Hover Effects */
.sg-item-all-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15);
    border-color: transparent;
}

.sg-item-all-card:hover .sg-iteam-all-icon {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199px) {


    .sg-item-all-card {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) {
    .sg-sptb {
        padding: 60px 0;
    }




}

@media (max-width: 767px) {
    .sg-sptb {
        padding: 50px 0;
    }

    .sg-section-title {
        margin-bottom: 40px;
    }



    .sg-item-all-card {
        padding: 25px 15px;
    }


}

@media (max-width: 575px) {

    .sg-section-title p {}

    .sg-education-categories [class*="col-"] {
        margin-bottom: 15px;
    }
}


.sg-about-section-three {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sg-main-content-box {
    position: relative;
    background: linear-gradient(180deg, #111827, #0b1220);
    border-radius: 40px;
    padding: 70px;
}

.sg-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.4;
}

.sg-about-image-three {
    position: relative;
    z-index: 1;
}

.sg-about-image-three .sg-image {
    border-radius: 30px;
    overflow: hidden;
}

.sg-about-image-three img {
    width: 100%;
    display: block;
}

.sg-about-content-three {
    padding-left: 40px;
    color: #cbd5f5;
}

.sg-main-title h3 {

    letter-spacing: 1px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 12px;
}

.sg-main-title h2 {

    color: var(--light);
    margin-bottom: 20px;
}

.sg-main-title .gradient-color {
    background: linear-gradient(135deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sg-inner-box p {


    margin-bottom: 25px;
}

.sg-list-box {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.sg-list-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sg-list-box li {

    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sg-list-box li i {
    margin-right: 10px;
    color: #38bdf8;
}

.sg-btn-box .primary-btn {
    padding: 12px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    color: var(--light);
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sg-btn-box .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .sg-main-content-box {
        padding: 60px 30px;
    }

    .sg-about-content-three {
        padding-left: 0;
        margin-top: 40px;
    }

    .sg-list-box {
        flex-direction: column;
    }
}



.sg-portfolio-section-three {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: var(--light);
}

.sg-portfolio-section-three .sg-main-title {
    max-width: 750px;
    margin: 0 auto 60px;
}

.sg-main-title h3 {

    letter-spacing: 1px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 12px;
}

.sg-main-title h2 {

    font-weight: 600;
    margin-bottom: 16px;
}

.sg-main-title .gradient-color {
    background: linear-gradient(135deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sg-main-title p {

    color: #94a3b8;

}

/* ===============================
   PORTFOLIO CARD
================================ */

.sg-portfolio-block-three {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #020617;
    transition: transform 0.4s ease;
}

.sg-portfolio-block-three:hover {
    transform: translateY(-10px);
}

.sg-portfolio-block-three .sg-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.sg-portfolio-block-three:hover img {
    transform: scale(1.1);
}

/* Overlay */
.sg-portfolio-block-three::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.1),
            rgba(2, 6, 23, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sg-portfolio-block-three:hover::after {
    opacity: 1;
}

/* ===============================
   CONTENT BOX
================================ */

.sg-portfolio-block-three .sg-content-box {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.sg-content-box p {

    color: #38bdf8;
    margin-bottom: 5px;
}

.sg-content-box h3 {

    margin: 0;
}

.sg-content-box h3 a {
    color: var(--light);
    text-decoration: none;
}

/* Link Icon */
.sg-content-box .sg-link {
    position: absolute;
    top: 25px;
    right: 25px;
}

.sg-content-box .sg-link a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transform: scale(0);
    transition: all 0.4s ease;
}

.sg-portfolio-block-three:hover .sg-link a {
    transform: scale(1);
}

/* ===============================
   BUTTON
================================ */

.sg-extra-btn {
    margin-top: 60px;
}

.sg-extra-btn .primary-btn {
    padding: 12px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.sg-extra-btn .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

/* ===============================
   RESPONSIVE
================================ */



/* ================================
   PORTFOLIO HOVER CARD EFFECT
================================ */

.sg-portfolio-block-three {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #020617;
}

.sg-portfolio-block-three img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.sg-portfolio-block-three:hover img {
    transform: scale(1.08);
}

/* Hover overlay container */
.sg-hover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

/* Arrow button */
.sg-hover-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: auto;
}

/* Bottom gradient bar */
.sg-hover-content {
    width: 85%;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.sg-hover-content span {

    color: #e0f2fe;
    display: block;
    margin-bottom: 4px;
}

.sg-hover-content h3 {

    color: var(--light);
    margin: 0;
}

/* Hover animation trigger */
.sg-portfolio-block-three:hover .sg-hover-btn {
    opacity: 1;
    transform: translateY(0);
}

.sg-portfolio-block-three:hover .sg-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------- singam style -------------------------------------------------- */

.list-text {
    list-style: none !important;
    text-decoration: none !important;
}

/* topbar and navbar */

.sg-clearfix::after {
    content: "";
    display: table;
    clear: both;
}





/* HEADER TOP BAR*/

.sg-header-top-bar {
    background: var(--primary);
    padding: 10px 0;

    color: var(--light);
}

.sg-call-us p {
    color: var(--light);
    margin: 0;
}

.sg-top-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sg-link li {
    display: inline-block;
    margin-left: 20px;
}

.sg-link li:first-child {
    margin-left: 0;
}

.sg-link li a {
    color: var(--light);
    text-decoration: none;

    transition: color 0.3s ease;
}

.sg-link li a:hover {
    color: var(--primary);
}

.sg-link li a i {
    margin-right: 5px;
}

/* HEADER MIDDLE AREA */
.sg-header-middle-area {
    background: var(--light);
    padding: 10px 0;
    position: relative;

}



/* Sticky Header */
.sg-sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Logo */
.sg-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.sg-logo a {
    display: inline-block;
}

.sg-logo img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.sg-logo img:hover {
    transform: scale(1.05);
}

/* PRIMARY NAVIGATION MENU */
#sg-primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sg-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sg-main-menu>li {
    position: relative;
    margin: 0 5px;
}

.sg-main-menu>li>a {
    display: block;
    padding: 10px 15px;
    color: var(--gray-700);
    text-decoration: none;

    font-weight: var(--fw-medium);
    text-transform: capitalize;

    position: relative;
}

.sg-main-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.sg-main-menu>li:hover>a,
.sg-main-menu>li.active>a {
    color: var(--primary);
}

.sg-main-menu>li:hover>a::after,
.sg-main-menu>li.active>a::after {
    width: 100%;
}

/* DROPDOWN MENU */
.sg-dropdwn {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    z-index: 999;
    text-align: left;
}

.sg-main-menu>li:hover .sg-dropdwn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sg-dropdwn li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.sg-dropdwn li:last-child {
    border-bottom: none;
}

.sg-dropdwn li a {
    display: block;
    padding: 10px 25px;
    color: #666;
    text-decoration: none;


}

.sg-dropdwn li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 30px;
}

/* MEGA MENU */
.sg-mega-parent {
    position: relative;
}

.sg-mega-menu-area {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light);
    width: 1000px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);

    z-index: 999;
}

.sg-mega-parent:hover .sg-mega-menu-area {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sg-mega-menu-link {
    display: flex;
    gap: 30px;
    width: 100%;
}

.sg-mega-menu-link-4 {
    justify-content: space-between;
}

.sg-single-mega-item {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sg-menu-title {

    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
}

.sg-single-mega-item li a {
    display: block;
    padding: 8px 0;
    color: var(--gray-700);
    text-decoration: none;


    position: relative;
    text-align: left;
}

.sg-single-mega-item li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    opacity: 0;

    color: var(--primary);
}

.sg-single-mega-item li a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.sg-single-mega-item li a:hover::before {
    opacity: 1;
}

/* menu TOGGLE (Hamburger Menu) */
.sg-search-top-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.sg-total-menu {
    position: relative;
}

.sg-menu-toggler a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    cursor: pointer;

}

.sg-menu-toggler a:hover {
    background: #333;
    transform: rotate(90deg);
}


/* menu Dropdown */
.sg-total-menu-in ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--light);
    width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin-top: 15px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    z-index: 999;
}

.sg-total-menu:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sg-top-menu-inner h6 {
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);

    font-weight: 700;
    color: #333;
}

.sg-top-menu-inner p {
    color: #666;


    margin-bottom: 15px;
}

.sg-link li a i {
    color: white;
}

/* RESPONSIVE STYLES  */
@media (max-width: 991px) {

    #sg-primary-menu {
        display: none;
    }

    .sg-logo img {
        max-height: 50px;
    }

    .sg-mega-menu-area {
        width: 100%;
        left: 0;
        transform: none;
    }

    .sg-mega-parent:hover .sg-mega-menu-area {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .sg-header-top-bar {
        text-align: center;
    }

    .sg-top-link {
        text-align: center;
        margin-top: 10px;
    }

    .sg-link li {
        margin: 0 10px;
    }

    .sg-total-menu-in ul {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .sg-logo img {
        max-height: 40px;
    }

    .sg-menu-toggler a {
        width: 40px;
        height: 40px;
    }

    .sg-total-menu-in ul {
        width: 280px;
        right: -15px;
    }
}

.sg-border-bottom {
    border-bottom: 1px solid var(--light);
}


.sg-text-decoration-line-bottom-medium {
    border-bottom: 2px solid;
}

/* Background gradient */
.sg-bg-gradient-blue-ironstone-brown {
    background: var(--dark);
}

.sg-footer-logo img {
    height: 70px;
}

.get-in {

    font-weight: var(--fw-bold);
    text-transform: uppercase;
}

.medium-icon li {
    margin: 0 8px;
}

.sg-social-icon-style-09 ul li a {
    z-index: 9;
    border: 1px solid rgb(255 255 255 / 19%);
    border-radius: 100%;
    position: relative;
}

.sg-elements-social .medium-icon li a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: .3s cubic-bezier(.12, 0, .39, 0);
    transition: .3s cubic-bezier(.12, 0, .39, 0);
}

.medium-icon a {

    width: 50px;
    height: 50px;

}

.sg-footer-navbar li a:hover {
    color: var(--primary);
}

footer .nav-link {
    color: var(--gray-500);
    padding: .5rem 1rem;
}



.tp-heroSection-slider-1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.tp-hero-swiper-1 {
    width: 100%;
    height: 100%;
}

.tp-hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.tp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.tp-hero-subtitle {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tp-hero-title {

    font-weight: var(--fw-bolder);

    margin-bottom: 25px;
    letter-spacing: -2px;
}


.tp-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-btn {
    display: inline-block;
    padding: 16px 40px;

    font-weight: var(--fw-middle);
    text-decoration: none;
    border-radius: 50px;

    cursor: pointer;
}

.tp-btn-primary {


    border: 2px solid var(--primary);
}

.tp-btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.tp-btn-outline {
    background: transparent;

    border: 2px solid var(--light);
}

.tp-btn-outline:hover {


    transform: translateY(-2px);
}

.tp-hero-swiper-1 .swiper-button-next,
.tp-hero-swiper-1 .swiper-button-prev {
    color: var(--light);

    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}


.tp-hero-swiper-1 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;

    opacity: 0.5;
}

.tp-hero-swiper-1 .swiper-pagination-bullet-active {
    opacity: 1;

}

.tp-hero-swiper-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--light);
    width: 40px;
    border-radius: 5px;
}




/* cta Sections */
/* cta Sections  style-1*/
.tp-ctaSection-d-imge-1 {
    color: var(--dark);
}



.tp-ctaSection-d-imge-1 .tp-about-title-box h4 {
    color: var(--dark);


    margin: 20px 0px;
}


.tp-ctaSection-d-imge-1 .tp-about-title-box h4 span span {

    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: -1;

}

.tp-ctaSection-d-imge-1 .tp-about-thumb-wrap {
    position: relative;
}

.tp-ctaSection-d-imge-1 .tp-about-thumb-1 {
    position: absolute;
    bottom: -100px;
    right: 5px;
}

.tp-ctaSection-d-imge-1 .tp-about-thumb {
    margin-left: 100px;
}

.tp-ctaSection-d-imge-1 .tp-about-review-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tp-about-review {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tp-about-review h4 {
    color: black;
    margin-bottom: 0px;

}

.tp-about-ratting-icon {
    display: flex;
    flex-direction: row;
    gap: 2px;
}

.tp-about-content {
    margin: 40px 0px 40px 40px;
    max-width: 400px;
}

.tp-about-ratting-icon span {
    color: var(--light);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    gap: 20px;

}

.tp-about-ratting {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.tp-about-ratting h4 {
    color: var(--dark);
}

.menu-off-canvas p {
    color: var(--gray-700);
}