@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/* New Color Scheme */
:root {
    --primary-color: #204079;
    --secondary-color: #2964C7;
    --accent-color: #F0BB10;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(32, 64, 121, 0.1), 0 2px 4px -1px rgba(32, 64, 121, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(32, 64, 121, 0.1), 0 4px 6px -2px rgba(32, 64, 121, 0.05);
    --primary-gradient: linear-gradient(93.2deg, #204079 0%, #2964C7 50.23%, #204079 100.46%);
    --primary-font: "Instrument Sans", sans-serif;
}

body {
    /*background-color: var(--light-bg);*/
    color: var(--text-primary);
    /*font-family: "Instrument Sans", sans-serif;*/
    font-family: 'Instrument Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;

}

/* Top Header Style */
.top-header {
    background: #204079;
    padding: 15px 0;
}

.nav-header {
    background: #204079;
    padding: 12px 0;
    border-top: 1px solid #FFFFFF4D
}

.item-link {
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
}

.item-link::after {
    top: 25%;
}

/* Dropdown Menu Styles */
.box-nav-menu .dropdown-menu {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 220px;
}

.box-nav-menu .dropdown-item {
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.box-nav-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1e3c72;
    text-decoration: none;
}

.box-nav-menu .dropdown-toggle::after {
    margin-left: 8px;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.box-nav-menu .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.box-nav-menu .dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.count {
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: blue !important;
    text-align: center;
    font-weight: 500;
    position: absolute;
    top: 15px;
    right: 0px;
}

.hero-section {
    background: #ffffff;
    padding: 0;
    position: relative;
}

.hero-left {
    padding: 0 0 0 15%;
}

.hero-left h1 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 60px;
    color: #204079;
    line-height: 1.35;
}

.highlight {
    color: #F0BB10;
}

.hero-left p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.hero-btn {
    background-color: #F0BB10;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

/* Angled right side */
.hero-img-wrap {
    position: relative;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-section .carousel-item {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom {
    background: var(--accent-color);
    color: white;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary-color);
}

/* Categories & Services */
.categories-services-section h3 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 40px;
    color: #17335C;
    line-height: 100%;

}

/* Cards - Modern Design */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--card-bg);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card img {
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 10px;
}

.card-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: Instrument Sans;
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Platform Features */
.platform-features {
    color: white;
    position: relative;
    padding-bottom: 100px !important;
}

.platform-features::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.platform-features .container {
    position: relative;
    z-index: 1;
}

.platform-features h2 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.platform-features h2 ~ p {
    color: #4B4B4B;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px 20px #00000005;

}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.feature-card h5 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4B4B4B;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
    text-align: center;

}

/* How It Works */
.how-it-works {
    background: linear-gradient(93.2deg, #204079 0%, #2964C7 50.23%, #204079 100.46%);
    padding: 100px 0 !important;
}

.how-it-works h2 {
    font-family: Instrument Sans, sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: white;
    margin-bottom: 15px !important;
}

.how-it-works h2 ~ p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

.step-item {
    position: relative;
    text-align: center;
}

.step-item .icon-box {
    width: 100px;
    height: 100px;
    background: transparent;
    border: 3px dashed #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    /*background: linear-gradient(135deg, var(--primary-color), #2a5298);*/
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.step-item:hover .icon-box {
    transform: scale(1.05);
}

.step-item span {
    font-weight: 700;
    font-family: Instrument Sans, sans-serif;
    font-size: 40px;
    text-align: center;
    color: white;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--primary-color);
    box-shadow: var(--shadow);
    line-height: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: -25px auto 0;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-color);
}

.step-item h5 {
    font-family: Instrument Sans, sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin: 20px 0 15px;
}

.step-item p {
    font-family: Instrument Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
}

/* Connection Line */
/*.how-it-works .row::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    z-index: 0;
    border-radius: 2px;
}*/

@media (max-width: 768px) {
    .how-it-works .row::before {
        display: none;
    }
}

/* Products */
.products-section h2 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.products-section h2 ~ p {
    color: #4B4B4B;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

/* Industries */
.industry-section h2 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.industry-section h2 ~ p {
    color: #4B4B4B;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

.industry-card {
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #285DB84F;
    box-shadow: 0px 4px 20px 20px #00000005;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.industry-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.industry-card h5 {
    font-family: Instrument Sans, sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.industry-card p {
    font-family: Instrument Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4B4B4B;
}


/* Clients */
.client-section h2 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.client-section h2 ~ p {
    color: #4B4B4B;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

/* OEM Section */
.oem-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    color: white;
}

.oem-section h2 {
    font-family: Instrument Sans, sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.oem-logo {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 6px;
}

.oem-slider .slick-slide {
    margin: 0 15px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.5;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;

}

.cta-buttons .btn-primary {
    background: #F0BB10;
    color: var(--primary-color);
    border: 2px solid #F0BB10;
}

.cta-buttons .btn-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 0 -20px;
}

.faq-question {
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.testimonial-card {
    background: #2962C2;
    border-radius: 8px;
    color: white;
    height: 100%;
    min-height: 260px;
    text-align: left;
}

.testimonial-card p {
    font-family: Instrument Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;

}

.quote-icon {
    font-size: 28px;
    color: #F0BB10;
}

.testimonial-slider .slick-slide {
    margin: 0 15px;
}

.slick-dots li button:before {
    color: #204079 !important;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    color: #17335C;
    font-family: Instrument Sans, serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.faq-section h2 ~ p {
    color: #4B4B4B;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Instrument Sans, serif;
    font-weight: 400;
}

.accordion-item {
    border-radius: 8px !important;
    margin-bottom: 15px;
    border: none;
}

.accordion-button {
    font-size: 17px;
    padding: 18px 20px;
    background: #F3F3F3;
    border-radius: 8px !important;
}

.accordion-body {
    background: white;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    font-family: Instrument Sans, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}

.accordion-button:not(.collapsed) {
    background: #F3F3F3;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

footer {
    background: #204079;
    color: #fff;
}

.footer-heading {
    color: #fff;
}

footer .link , footer i {
    color: #fff;
}



/* Media Responsiveness */
@media only screen and (max-width: 580px) {
    .hero-left {
        padding: 15% 7.5% 15% 7.5%;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .categories-services-section h3, .platform-features h2, .how-it-works h2, .industry-section h2, .products-section h2, .oem-section h2, .client-section h2, .faq-section h2 {
        font-size: 32px;
    }

    .how-it-works, .oem-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .cta-description {
        font-size: 1rem;
        margin: 0 auto 30px;
    }
}
