/* --- Global Theme Colors --- */
:root {
    --adimech-blue: #0e2b5c;
    --adimech-orange: #ff5e14;
    --text-gray: #666666;
    --border-light: #eeeeee;
}

section{
    padding: 50px 0px 0px 50px;
}

/* --- Page Header --- */
.page-header-banner {
    background-color: var(--adimech-blue);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}
.page-header-banner h1 { font-size: 42px; margin: 0; text-transform: uppercase; font-weight: 800; }
.breadcrumb .sep { color: var(--adimech-orange); padding: 0 10px; }
.breadcrumb .current { opacity: 0.7; }

/* --- Layout Grid --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 80px 0; }

.section-subtitle { color: var(--adimech-orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.section-title { color: var(--adimech-blue); font-size: 32px; margin-bottom: 30px; }

/* --- Square Box Optimization --- */
.elementskit-infobox { margin-bottom: 20px; }
.elementskit-infobox .box-body {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 30px;
    height: 180px; /* Maintains square shape */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
    overflow: hidden;
}
.elementskit-infobox .box-body h3 { color: var(--adimech-blue); font-size: 20px; margin-bottom: 10px; }
.elementskit-infobox .box-body p { color: var(--text-gray); line-height: 1.6; margin: 0; }

.elementskit-infobox:hover .box-body {
    border-color: var(--adimech-orange);
    box-shadow: 0 10px 25px rgba(14, 43, 92, 0.1);
    height: auto; /* Expands on hover */
    min-height: 180px;
}

/* --- Form Styles --- */
.contact-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-top: 4px solid var(--adimech-orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 4px; background: #fcfcfc; }
.theme-btn { background: var(--adimech-orange); color: #fff; border: none; padding: 16px; width: 100%; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.theme-btn:hover { background: var(--adimech-blue); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .page-header-banner { padding: 60px 20px; }
    .page-header-banner h1 { font-size: 32px; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-card { padding: 25px; }
    .elementskit-infobox .box-body { height: auto; min-height: 150px; } /* Less restrictive on small screens */
}

/* --- Modern Page Banner Styles --- */
.modern-page-banner {
    position: relative;
    background-color: #0e2b5c; /* Adimech Blue */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Subtle industrial texture */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Subtle overlay for depth */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(14, 43, 92, 0.9) 0%, rgba(255, 94, 20, 0.1) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* .page-title {
    font-size: 52px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    line-height: 1.2 !important;
} */

.page-title {
    font-size: 56px; 
    font-weight: 900;
    /* color: #ffffff !important;  */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3); 
}

/* Modern Breadcrumb */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.8;
}

.breadcrumb-nav a:hover {
    color: #ff5e14; /* Adimech Orange */
    opacity: 1;
}

.breadcrumb-nav .separator {
    margin: 0 15px;
    font-size: 12px;
    color: #ff5e14;
}

.breadcrumb-nav .current-page {
    color: #ff5e14;
    font-weight: 700;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .modern-page-banner {
        padding: 70px 0;
    }
    .page-title {
        font-size: 36px;
    }
    .breadcrumb-nav {
        font-size: 14px;
    }
}

