.elementor-kit-1348{--e-global-color-primary:#1E64DC;--e-global-color-secondary:#01375D;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-a8d6930:#F8F9FA;--e-global-typography-primary-font-family:"Questrial";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Hind";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Questrial", Sans-serif;}.elementor-kit-1348 e-page-transition{background-color:#FFBC7D;}.elementor-kit-1348 h1{font-family:"Questrial", Sans-serif;}.elementor-kit-1348 h2{font-family:"Questrial", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;600&family=Questrial&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size for rem calculation */
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind', sans-serif; /* Use Hind for body */
    color: #333; /* Default dark text */
    line-height: 1.6; /* Consistent line height */
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Questrial', sans-serif; /* Use Questrial for headings */
    line-height: 1.3;
    margin-bottom: 1rem; /* Consistent bottom margin */
    font-weight: 600; /* Slightly bolder headings */
}

h1 { font-size: 3rem; color: #fff; } /* Hero H1 specific */
h2 { font-size: 2.2rem; text-align: center; color: #0a2d4e; margin-bottom: 2rem;} /* Section Titles */
h3 { font-size: 1.4rem; color: #0a2d4e; } /* Sub-section Titles */
h4 { font-size: 1.1rem; color: #fff; } /* Footer Titles */

p {
    margin-bottom: 1rem;
    color: #555; /* Default paragraph color */
    font-size: 1rem;
}

a {
    color: #007bff; /* Standard link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 4rem 5%; /* Consistent vertical padding for sections */
    /* max-width: 1200px; <-- Removed generic max-width from section */
    /* margin: 0 auto; <-- Removed generic margin from section */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Padding for smaller screens */
}

/* Buttons Base */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

/* --- Header --- */
.site-header-new {
    background-color: #fff;
    padding: 1rem 5%; /* Use rem */
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1001;
    width: 100%;
}

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

.logo-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-new .logo-image {
    height: 32px;
    width: auto;
}

.logo-new .logo-text {
    font-family: 'Questrial', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
}

.main-navigation li {
    margin-left: 2rem; /* Use rem */
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.main-navigation a:hover {
    color: #007bff;
    text-decoration: none; /* No underline for nav links */
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem; /* Use rem */
}

.search-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
    padding: 0;
}

.search-icon:hover { color: #000; }

.lang-button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0.4rem 0.8rem; /* Use rem */
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lang-button:hover {
    background-color: #f8f8f8;
    border-color: #aaa;
}

.get-started-button {
    /* Inherit from .btn */
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1.2rem; /* Use rem */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.get-started-button:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

/* --- Hero Section --- */
.hero-section {
    background-image: url('https://marveltech.id/wp-content/uploads/2025/04/hero_image.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin: 0;
    max-width: none;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 45, 78, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    /* font-size: 3rem; */ /* Already set in base styles */
    margin-bottom: 1rem; /* Standardized margin */
    line-height: 1.2;
    color: #fff; /* Already set in base styles */
    font-weight: bold;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 0; /* Remove margin as buttons are gone */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* --- Our Services Section --- */
.our-services-section {
    background-color: #fff; /* White background */
    max-width: 1200px; /* Center content */
    margin: 0 auto;
}

.our-services-section h2 {
    margin-bottom: 3rem; /* More space after title */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-item {
    background-color: #f8f9fa; /* Light grey background for items */
    padding: 2rem;
    text-align: left; /* Align content left */
    border-radius: 8px;
    border: 1px solid #eee;
}

.service-icon {
    font-size: 2.5rem; /* Icon size */
    margin-bottom: 1rem;
    color: #007bff; /* Use primary blue */
}

.service-item h3 {
    font-size: 1.3rem; /* Adjusted size */
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.95rem;
    margin-bottom: 0; /* Removed link margin */
}

/* --- Trusted Partner Section --- */
.trusted-partner-section {
    background-color: #e3f2fd; /* Changed to a different subtle blue */
    padding: 3rem 5%; /* Slightly reduced padding */
    max-width: none; /* Allow full width */
}

.partner-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 3rem; /* Increased gap */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-partner-section h2 {
    color: #0a2d4e;
    text-align: left; /* Align heading left */
    font-size: 1.8rem; /* Smaller size for this specific H2 */
    margin-bottom: 0; /* Remove default h2 margin */
}

.trusted-partner-section p {
    font-size: 1rem; /* Ensure consistent size */
    margin-bottom: 0; /* Remove default p margin */
    text-align: left;
}

/* --- Innovative Solutions Section --- */
.innovative-solutions-section {
    background-color: #fff;
    max-width: 1200px; /* Center content */
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.solution-item {
    background-color: #fff;
    padding: 1.5rem;
    text-align: left; /* Align content left */
    border-radius: 8px;
    border: 1px solid #eee;
}

.solution-icon {
    font-size: 2rem; /* Icon size */
    margin-bottom: 1rem;
    color: #007bff; /* Use primary blue */
}

.solution-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.solution-item p {
    font-size: 0.95rem;
    margin-bottom: 0; /* Removed link margin */
}

/* --- Unlock Potential Section --- */
.unlock-potential-section {
    background-color: #f8f9fa; /* Light grey */
    /* text-align: center; <-- Removed */
    max-width: none; /* Allow full width */
}

.unlock-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    align-items: center;
    gap: 2rem;
    max-width: 1200px; /* Center content */
    margin: 0 auto;
}

.unlock-text {
    flex: 1;
    text-align: left;
    max-width: 500px; /* Limit text width */
    min-width: 300px; /* Prevent excess squishing */
}

.unlock-text h2 {
    text-align: left; /* Ensure H2 is left aligned here */
}

.unlock-text p {
    margin-bottom: 0;
}

.unlock-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
}

.unlock-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.unlock-image img:hover {
    transform: translateY(-5px);
}

/* --- Footer --- */
.site-footer {
    background-color: #0a2d4e; /* Dark blue background */
    color: #ccc; /* Light grey text */
    padding: 3rem 5%; /* Use rem */
    font-size: 0.9rem;
    margin: 0; /* Remove auto margin */
    max-width: none; /* Allow full width */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem auto; /* Center and add bottom margin */
    gap: 2.5rem; /* Use rem */
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #ccc; /* Explicit color */
    font-size: 0.9rem;
}

.footer-column strong {
    color: #eee;
    font-weight: 600;
}

.footer-hr {
    border: none;
    border-top: 1px solid #2a4d6e;
    margin: 2rem auto; /* Use rem */
    max-width: 1200px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Align bottom text left */
    font-size: 0.85rem;
}

.tagline {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.copyright {
    color: #888;
    margin-bottom: 0;
}

/* --- Responsive Adjustments --- */

/* Medium Screens (Tablets) */
@media (max-width: 992px) {
    html { font-size: 15px; } /* Slightly smaller base font */
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .main-navigation {
        display: none; /* Hide nav */
        /* Add hamburger menu toggle logic here */
    }
    .unlock-content {
         gap: 1.5rem;
    }
    .partner-content-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 1.5rem;
        text-align: center; /* Center stacked content */
    }
    .trusted-partner-section h2 {
        text-align: center; /* Center heading when stacked */
    }
    .trusted-partner-section p {
        text-align: center; /* Center paragraph when stacked */
    }
}

/* Small Screens (Mobiles) */
@media (max-width: 768px) {
    html { font-size: 14px; } /* Even smaller base font */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 3rem 5%; }
    .hero-section { height: auto; min-height: 60vh; padding: 4rem 5%;}
    .header-controls {
         gap: 0.5rem; /* Reduce gap */
     }
     .lang-button {
         padding: 0.3rem 0.6rem;
     }
     .get-started-button {
          padding: 0.4rem 0.8rem;
     }
     .site-header-new {
        padding: 0.8rem 5%;
     }
     .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-bottom {
        text-align: center;
    }
    .unlock-content {
        flex-direction: column;
    }
    .unlock-text { text-align: center; max-width: none; }
    .unlock-text h2 { text-align: center; } /* Center H2 on small screens */
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .services-grid, .solutions-grid {
        grid-template-columns: 1fr; /* Stack grids */
    }
    .partner-content-grid {
         gap: 1rem;
    }
 }/* End custom CSS */