
body {
    font-size: 1rem;
    line-height: 1.6;
}

.orange-brand {
    color: #f25c05;
}

.bg-orange-brand {
    background-color: #f25c05;
}

.swiper-pagination-bullet-active {
    background-color: #f25c05 !important;
}

header nav a {
    font-size: 18px;
}

footer p,
footer ul li,
footer ul li a,
footer .copyright,
footer .bottom-bar {
    font-size: 18px;
    line-height: 1.5;
}

footer h3 {
    font-size: 1.25rem;
}

footer h4 {
    font-size: 1rem;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
}

.icon-xs {
    font-size: 0.625rem;
}

.icon-xxs {
    font-size: 0.5rem;
}
/* ========about========== */
.text-xs {
    font-size: 16px !important;
}
.text-3xl {
    font-size: 35px !important;
}
.orange-brand {
    color: #f25c05;
}

.bg-orange-brand {
    background-color: #f25c05;
}

.bg-navy-dark {
    background-color: #2b2a4c;
}

.signature-font {
    font-family: 'Caveat', 'Brush Script MT', cursive, sans-serif;
}

.hero-arch-container {
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}
.vision-img-wrapper {
    width: 100%;
    max-width: 650px;
    height: 450px;
    overflow: hidden;
    margin-left: -23px !important;
}

#vision-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left top;
}
/* ============Service=============== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-orange: #FF5100;
    --dark-navy: #1B2030;
    --bg-light: #F8F9FA;
    --text-muted: #666666;
}


.sk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.relative.bg-cover {
    position: relative;
    overflow: hidden;
}

section.relative.bg-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.relative > .container {
    position: relative;
    z-index: 2;
}

.sk-hero-content {
    animation: fadeInLeft 1s ease-out forwards;
}

.sk-subtitle {
    color: var(--primary-orange);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 5px;
}

.sk-tagline {
    font-size: 22px;
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 500;
}

.sk-hero-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.sk-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 300;
}

.sk-services-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.sk-section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 50px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.sk-section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sk-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sk-service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.sk-service-card:nth-child(1) { animation-delay: 0.1s; }
.sk-service-card:nth-child(2) { animation-delay: 0.2s; }
.sk-service-card:nth-child(3) { animation-delay: 0.3s; }
.sk-service-card:nth-child(4) { animation-delay: 0.4s; }
.sk-service-card:nth-child(5) { animation-delay: 0.5s; }
.sk-service-card:nth-child(6) { animation-delay: 0.6s; }

.sk-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 81, 0, 0.15);
    border-color: var(--primary-orange);
}

.sk-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 81, 0, 0.1);
    color: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sk-service-card:hover .sk-card-icon {
    background: var(--primary-orange);
    color: #ffffff;
    transform: rotateY(360deg);
}

.sk-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.sk-card-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sk-card-btn {
    text-decoration: none;
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.sk-card-btn::after {
    content: '➔';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sk-card-btn:hover {
    color: #d44300;
}

.sk-card-btn:hover::after {
    transform: translateX(5px);
}

.sk-philosophy-section {
    background: var(--dark-navy);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sk-philo-subtitle {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    animation: zoomIn 0.8s ease forwards;
}

.sk-philo-line {
    width: 60px;
    height: 2px;
    background: var(--primary-orange);
    margin: 15px auto;
    animation: expandLine 1s ease forwards;
}

.sk-philo-title {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
    animation: fadeInUp 1s ease forwards;
}

.sk-philo-title strong {
    color: #ffffff;
    font-weight: 700;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .sk-hero-title { font-size: 34px; }
    .sk-philo-title { font-size: 18px; }
    .sk-services-grid { grid-template-columns: 1fr; }
}
/* ===========Requirment======== */
.sk-banner-section {
    position: relative;
    background: linear-gradient(110deg, #fef4ea 0%, #ffffff 45%, #eef3f8 100%);
    padding: 60px 20px 50px;
    overflow: hidden;
}

.sk-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.sk-banner-content {
    flex: 1.1;
    animation: skBannerFadeInLeft 0.8s ease-out;
}

.sk-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.sk-banner-desc {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

.sk-badge-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sk-badge-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sk-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sk-badge-icon {
    font-size: 30px;
    color: #f15a24;
}

.sk-badge-text {
    display: flex;
    flex-direction: column;
}

.sk-badge-text strong {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.sk-badge-text span {
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

.sk-banner-img-wrapper {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: skBannerFadeInRight 0.8s ease-out;
}

.sk-banner-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.sk-banner-cta {
    text-align: center;
    margin-top: -22px;
    position: relative;
    z-index: 10;
}

.sk-btn-explore {
    display: inline-block;
    background: #f15a24;
    color: #ffffff;
    padding: 12px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(241, 90, 36, 0.4);
    transition: all 0.3s ease;
}

.sk-btn-explore:hover {
    background: #d84816;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 90, 36, 0.5);
}

@keyframes skBannerFadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes skBannerFadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .sk-banner-container {
        flex-direction: column;
        text-align: center;
    }
    .sk-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .sk-badge-group {
        justify-content: center;
    }
    .sk-banner-img-wrapper {
        width: 100%;
    }
}

.sk-rc-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.sk-rc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sk-rc-title {
    font-size: 30px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
}

.sk-rc-subtitle {
    font-size: 18px;
    color: #666666;
    margin-top: 6px;
    margin-bottom: 30px;
}

.sk-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.sk-num-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(241, 90, 36, 0.3);
}

.sk-t-arrow {
    color: #2b1160;
    font-size: 14px;
    animation: skArrowPulse 1.5s infinite;
}

/* Track Bar System */
.sk-track-wrapper {
    position: relative;
    padding: 20px 0;
}

.sk-track-bar {
    position: absolute;
    top: 55px;
    left: 20px;
    right: 20px;
    height: 48px;
    background: #2b1160;
    border-radius: 24px;
    z-index: 1;
}

.sk-flow-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sk-step-item {
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sk-white-card {
    background: #ffffff;
    border-radius: 16px;
    width: 130px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sk-step-item.sk-highlight .sk-white-card {
    border: 3px solid #2b1160;
    transform: scale(1.05);
}

.sk-step-item:hover .sk-white-card {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.sk-step-ic {
    font-size: 45px;
    color: #2b1160;
}

.sk-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -13px;
    margin-bottom: 12px;
    z-index: 3;
    border: 2px solid #ffffff;
}

.sk-step-item h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.sk-step-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
    padding: 0 5px;
}

.sk-track-arrow {
    color: #ffffff;
    font-size: 16px;
    margin-top: 45px;
    z-index: 2;
}

.sk-sec-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.sk-sec-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sk-sec-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 40px;
}

.sk-sec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.sk-sec-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sk-sec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sk-c-blue { background: linear-gradient(180deg, #edf6ff 0%, #ffffff 100%); }
.sk-c-orange { background: linear-gradient(180deg, #fff6f0 0%, #ffffff 100%); }
.sk-c-purple { background: linear-gradient(180deg, #f8f0ff 0%, #ffffff 100%); }
.sk-c-cyan { background: linear-gradient(180deg, #eefcff 0%, #ffffff 100%); }

.sk-sec-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sk-b-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-c-blue .sk-b-num { background: #007bff; }
.sk-c-orange .sk-b-num { background: #f15a24; }
.sk-c-purple .sk-b-num { background: #6f42c1; }
.sk-c-cyan .sk-b-num { background: #17a2b8; }

.sk-top-ic {
    font-size: 28px;
    color: #007bff;
}

.sk-c-blue .sk-top-ic { color: #007bff; }
.sk-c-orange .sk-top-ic { color: #f15a24; }
.sk-c-purple .sk-top-ic { color: #6f42c1; }
.sk-c-cyan .sk-top-ic { color: #17a2b8; }

.sk-sec-ic-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.sk-center-ic {
    font-size: 70px;
    transition: transform 0.4s ease;
}

.sk-c-blue .sk-center-ic { color: #007bff; }
.sk-c-orange .sk-center-ic { color: #f15a24; }
.sk-c-purple .sk-center-ic { color: #6f42c1; }
.sk-c-cyan .sk-center-ic { color: #17a2b8; }

.sk-sec-card:hover .sk-center-ic {
    transform: scale(1.15) rotate(5deg);
}

.sk-sec-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.sk-sec-card p {
    font-size: 18px;
    color: #666666;
    line-height: 1.5;
}

@keyframes skArrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 992px) {
    .sk-flow-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .sk-track-bar, .sk-track-arrow {
        display: none;
    }
    .sk-timeline {
        gap: 15px;
    }
}
/* ===========Gallery========== */
.sk-gallery-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

.sk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (min-width: 768px) {
    .sk-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sk-gallery-item {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background-color: #f1f5f9;
    padding: 0;
}

.sk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.sk-gallery-item:hover img {
    transform: scale(1.08);
}
