/* Root Variables */
:root {
    --primary-color: #FF7029;
    --secondary-color: #E3F1FF;
    --dark-color: #141414;
    --text-color: #212121;
    --light-bg: #f8f9fa;
    --border-color: #474747;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rethink Sans', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rethink Sans', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FF7029;
    border-color: #FF7029;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 81, 157, 0.3);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-family: 'Rethink Sans', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    padding: 8px 19px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.contact-btn {
    font-size: 18px;
}

.logo-img {
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e3f1ff 0%, #ffffff 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(1, 81, 157, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 61px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.83px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partners-section {
    background-color: white;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 19px;
    line-height: 1.6;
    color: #666;
}

.solution-section {
    padding: 80px 0;
}

.video-container {
    border: 7px solid #e3f1ff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 85px;
    height: 85px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.empower-section {
    background-color: #f8f9fa;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    background-color: white;
}

.accordion-button {
    /* font-family: 'Rethink Sans', sans-serif; */
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    font-family: Helvetica, sans-serif;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #FF7029;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.industries-section {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0;
}

.industries-section h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.2px;
}

.stats-row {
    margin-top: 40px;
}

.stats-number {
    font-size: 61px;
    font-weight: 500;
    letter-spacing: -1.83px;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 19px;
    color: #ccc;
}

.industries-list li {
    font-size: 20px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    flex-shrink: 0;
}

.check-icon-sm {
    flex-shrink: 0;
}

.smart-tech-section {
    padding: 80px 0;
}

.tech-image-container {
    border-radius: 8px;
    overflow: hidden;
}

.badge-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-overlay .badge {
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 17px;
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.updates-section {
    padding: 80px 0;
}

.update-card {
    border: none;
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.update-card img {
    height: 200px;
    object-fit: cover;
}

.services-cards-section {
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

.service-card .card-title {
    font-size: 23.47px;
    font-weight: 700;
    letter-spacing: -0.47px;
}

.contact-section {
    background: linear-gradient(135deg, #e3f1ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 600;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1, 81, 157, 0.15);
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer {
    background-color: var(--dark-color);
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-number {
        font-size: 48px;
    }

    .step-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-number {
        font-size: 36px;
    }

    .contact-btn {
        width: 100%;
        margin-top: 15px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}



/* End of styles.css */
/* Custom Styles */
:root {
    --primary-color: #FF7029;
    --secondary-color: #1e90ff;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar-blog {
    background: linear-gradient(135deg, var(--primary-color), #FF7029);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    color: white;
}

.navbar-brand {
    font-size: 1rem;
}

.navbar-nav .nav-link {
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section-blog {
    background-color: #FF7029;
    padding: 5rem 0 !important;
    position: relative;
    overflow: hidden;
}

.hero-section-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.hero-section-blog h1 {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-section-blog p {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease;
}

/* Article Cards */
.article-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.article-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.article-card h3 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.article-card:hover h3 {
    color: var(--secondary-color);
}

.read-more-btn {
    color: black;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: end;

}

.read-more-btn:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Filter Buttons */
.filter-btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Blog Cards */
.hover-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.hover-card img {
    transition: all 0.5s ease;
}

.hover-card:hover img {
    transform: scale(1.1);
}

.explore-btn {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: end;
    text-decoration: none;
}

.explore-btn:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Blog card fade effect */
.blog-card {
    animation: fadeIn 0.5s ease;
}

.blog-card.hiding {
    animation: fadeOut 0.3s ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.cta-section h2 {
    position: relative;
    z-index: 1;
}

.cta-section p,
.cta-section button {
    position: relative;
    z-index: 1;
}


/* Modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #0d5ca5);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .article-card {
        margin-bottom: 2rem;
    }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Card Image Overlay Effect */
.card {
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

/* Form Focus Effects */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 74, 130, 0.25);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }

    .pc {
        display: none;
    }
}