/*
* ADAM Consult - Main Stylesheet
* Author: ADAM Consult
* Version: 1.0
*/
/* --------------------------------------------
Base Styles & Variables
-------------------------------------------- */
:root {
/* Color Variables */
--primary-color: #0056b3;
--primary-dark: #004494;
--primary-light: #e6f0ff;
--secondary-color: #f8f9fa;
--accent-color: #ffc107;
--text-dark: #333333;
--text-medium: #666666;
--text-light: #999999;
--white: #ffffff;
--black: #000000;
--success: #28a745;
--danger: #dc3545;
--warning: #ffc107;
--info: #17a2b8;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;
/* Typography */
--font-primary: 'Roboto', sans-serif;
--font-size-base: 1rem;
--font-size-sm: 0.875rem;
--font-size-lg: 1.25rem;
--font-size-xl: 1.5rem;
--font-size-2xl: 2rem;
--font-size-3xl: 2.5rem;
--font-size-4xl: 3rem;
/* Spacing */
--spacing-xs: 0.25rem;
--spacing-sm: 0.5rem;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--spacing-2xl: 3rem;
--spacing-3xl: 4rem;
--spacing-4xl: 5rem;
/* Border Radius */
--border-radius-sm: 0.25rem;
--border-radius-md: 0.5rem;
--border-radius-lg: 1rem;
--border-radius-full: 50%;
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
/* Transitions */
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
/* Container */
--container-max-width: 1200px;
--container-padding: 1rem;
}
/* Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-primary);
font-size: var(--font-size-base);
color: var(--text-dark);
line-height: 1.6;
background-color: var(--white);
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-primary);
font-weight: 700;
margin-bottom: var(--spacing-md);
line-height: 1.2;
color: var(--text-dark);
}
h1 {
font-size: var(--font-size-3xl);
}
h2 {
font-size: var(--font-size-2xl);
}
h3 {
font-size: var(--font-size-xl);
}
h4 {
font-size: var(--font-size-lg);
}
p {
margin-bottom: var(--spacing-md);
}
a {
color: var(--primary-color);
text-decoration: none;
transition: color var(--transition-fast);
}
.values-list {
list-style: none;
padding: 0;
margin: 0;
}
.values-list li {
margin-bottom: var(--spacing-sm);
line-height: 1.5;
}
.values-list li strong {
color: var(--primary-color);
}
a:hover {
color: var(--primary-dark);
}
ul, ol {
margin-bottom: var(--spacing-md);
padding-left: var(--spacing-lg);
}
img {
max-width: 100%;
height: auto;
}
/* Container */
.container {
width: 100%;
max-width: var(--container-max-width);
margin: 0 auto;
padding: 0 var(--container-padding);
}
/* Section Spacing */
section {
padding: var(--spacing-3xl) 0;
}
.section-header {
text-align: center;
margin-bottom: var(--spacing-3xl);
}
.section-header h2 {
position: relative;
display: inline-block;
margin-bottom: var(--spacing-md);
}
.section-header h2::after {
content: '';
display: block;
width: 50px;
height: 3px;
background-color: var(--primary-color);
margin: var(--spacing-sm) auto 0;
}
.section-header p {
max-width: 800px;
margin: 0 auto;
color: var(--text-medium);
}
.section-divider {
border-top: 1px solid var(--gray-300);
margin: var(--spacing-3xl) 0;
}
/* --------------------------------------------
Header & Navigation
-------------------------------------------- */
header {
position: sticky;
top: 0;
width: 100%;
z-index: 1000;
background-color: var(--white);
box-shadow: var(--shadow-sm);
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
padding: var(--spacing-sm) 0;
}
/* ✅ Header Logo */
/* Ensure header & footer logos are clickable */
.logo a,
.footer-logo a {
position: relative;
z-index: 9999;        /* higher than nav, menus, overlays */
pointer-events: auto; /* allow clicks */
display: inline-flex;
align-items: center;
cursor: pointer;
}
.logo img,
.footer-logo img {
height: 45px;
width: auto;
display: block;
}
.logo, .logo a {
z-index: 2147483647 !important; /* max int to be sure */
pointer-events: auto !important;
}
/* Make sure no overlays block clicks */
header::before,
header::after,
footer::before,
footer::after {
pointer-events: none;
}
.logo a {
display: inline-flex;
align-items: center;
cursor: pointer;
text-decoration: none; /* remove underline */
}
.logo-text {
margin-left: 8px;         /* space between image and text */
font-weight: 700;
font-size: 1.2rem;
color: var(--primary-color); /* or your preferred color */
user-select: none;        /* optional: prevent text selection */
}
/* ✅ Footer Logo */
.footer-logo {
display: flex;
align-items: center;
margin: 0;
padding: 0;
background: none;
}
.footer-logo .logo-icon {
width: 30px;
height: 30px;
border-radius: 4px;
background-color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
}
.footer-logo .logo-text {
color: var(--white);
font-weight: 700;
font-size: 1.2rem;
}
/* Navigation */
.main-nav {
display: flex;
}
.nav-links {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
position: relative;
margin: 0 var(--spacing-md);
}
.nav-links a {
display: inline-block;
padding: var(--spacing-sm) 0;
color: var(--text-dark);
font-weight: 500;
text-decoration: none;
transition: color var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
color: var(--primary-color);
}
.nav-links a.active {
position: relative;
}
.nav-links a.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background-color: var(--primary-color);
}
/* Dropdown Menu */
.dropdown {
position: relative;
}
.dropdown-toggle {
display: flex;
align-items: center;
}
.dropdown-toggle i {
margin-left: var(--spacing-xs);
font-size: var(--font-size-sm);
transition: transform var(--transition-fast);
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
min-width: 220px;
padding: var(--spacing-sm) 0;
background-color: var(--white);
border-radius: var(--border-radius-sm);
box-shadow: var(--shadow-md);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all var(--transition-normal);
}
.dropdown-menu li {
margin: 0;
}
.dropdown-menu a {
display: block;
padding: var(--spacing-sm) var(--spacing-md);
color: var(--text-dark);
font-weight: 400;
white-space: nowrap;
}
.dropdown-menu a:hover {
background-color: var(--primary-light);
}
.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown:hover .dropdown-toggle i {
transform: rotate(180deg);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-dark);
}
/* CTA Button */
.cta-button .btn {
padding: var(--spacing-sm) var(--spacing-lg);
}
/* --------------------------------------------
Buttons
-------------------------------------------- */
.btn {
display: inline-block;
font-weight: 500;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
padding: var(--spacing-sm) var(--spacing-xl);
font-size: var(--font-size-base);
line-height: 1.5;
border-radius: var(--border-radius-sm);
transition: all var(--transition-normal);
cursor: pointer;
}
.btn-primary {
background-color: var(--primary-color);
color: var(--white);
border-color: var(--primary-color);
}
.btn-primary:hover {
background-color: var(--primary-dark);
color: var(--white);
border-color: var(--primary-dark);
}
.btn-secondary {
background-color: var(--white);
color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-secondary:hover {
background-color: var(--primary-light);
color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-outline {
background-color: transparent;
color: var(--text-dark);
border-color: var(--gray-300);
}
.btn-outline:hover {
background-color: var(--gray-200);
color: var(--text-dark);
border-color: var(--gray-400);
}
.btn-block {
display: block;
width: 100%;
}
.btn.active {
background-color: var(--primary-dark);
color: var(--white);
border-color: var(--primary-dark);
}
/* Button Groups */
.hero-buttons {
display: flex;
gap: var(--spacing-md);
margin-top: var(--spacing-lg);
flex-wrap: wrap;
}
/* --------------------------------------------
Hero Section
-------------------------------------------- */
.hero {
position: relative;
background-color: #0a2040;
background-image: linear-gradient(rgba(10, 32, 64, 0.85), rgba(10, 32, 64, 0.9)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: var(--white);
overflow: hidden;
padding: var(--spacing-4xl) 0;
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--spacing-2xl);
}
.hero-text {
flex: 1;
}
.hero-subtitle {
display: inline-block;
background-color: rgba(255, 255, 255, 0.1);
color: var(--white);
font-size: var(--font-size-sm);
padding: var(--spacing-xs) var(--spacing-md);
border-radius: var(--border-radius-sm);
margin-bottom: var(--spacing-md);
}
.hero-title {
font-size: var(--font-size-4xl);
color: var(--white);
margin-bottom: var(--spacing-sm);
}
.hero-subtitle-large {
font-size: var(--font-size-xl);
color: var(--white);
font-weight: 500;
margin-bottom: var(--spacing-md);
}
.hero-description {
font-size: var(--font-size-lg);
margin-bottom: var(--spacing-xl);
max-width: 750px;
color: rgba(255, 255, 255, 0.9);
text-align: justify;     /* added to justify the text */
hyphens: auto;           /* optional: breaks long words for smoother justification */
}
.certification-badges {
display: flex;
flex-wrap: wrap;
margin-top: var(--spacing-xl);
gap: var(--spacing-md);
}
.badge {
background-color: rgba(255, 255, 255, 0.1);
padding: var(--spacing-xs) var(--spacing-md);
border-radius: var(--border-radius-sm);
font-size: var(--font-size-sm);
display: flex;
align-items: center;
}
.badge img {
height: 20px;
margin-right: var(--spacing-xs);
}
/* Hero Services */
.hero-services {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
flex: 0 0 400px;
}
.service-card {
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: var(--border-radius-md);
padding: var(--spacing-lg);
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
background-color: rgba(255, 255, 255, 0.15);
}
.service-card i {
font-size: var(--font-size-2xl);
color: var(--white);
margin-bottom: var(--spacing-md);
}
.service-card h3 {
font-size: var(--font-size-lg);
color: var(--white);
margin-bottom: var(--spacing-xs);
}
.service-card p {
font-size: var(--font-size-sm);
color: rgba(255, 255, 255, 0.8);
margin-bottom: 0;
}
/* --------------------------------------------
About Section
-------------------------------------------- */
.about-preview {
background-color: var(--white);
}
.about-content {
display: flex;
align-items: center;
gap: var(--spacing-3xl);
}
.about-text {
flex: 1;
}
.about-image {
flex: 1;
}
.about-image .image-container {
position: relative;
height: 400px;
border-radius: var(--border-radius-md);
overflow: hidden;
background-image: url('../images/industry.png');
background-size: cover;
background-position: center;
box-shadow: var(--shadow-lg);
}
.about-image .overlay-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 0, 0, 0.6);
color: var(--white);
padding: var(--spacing-lg) var(--spacing-2xl);
border-radius: var(--border-radius-sm);
font-size: var(--font-size-lg);
font-weight: 700;
letter-spacing: 2px;
}
.values-container {
display: flex;
gap: var(--spacing-lg);
margin: var(--spacing-xl) 0;
}
.value-box {
flex: 1;
background-color: var(--gray-100);
padding: var(--spacing-lg);
border-radius: var(--border-radius-md);
border-left: 3px solid var(--primary-color);
}
.value-box h3 {
color: var(--primary-color);
margin-bottom: var(--spacing-sm);
}
/* --------------------------------------------
Responsive Fix for Mobile Devices
-------------------------------------------- */
@media (max-width: 768px) {
.about-content {
flex-direction: column;
gap: var(--spacing-lg);
}
.about-image .image-container {
height: 250px;
}
.values-container {
flex-direction: column;
}
}
/* CORRECT INTENTION: Only disable clicks when the menu is open */
body.menu-is-open .mobile-menu-overlay {
pointer-events: auto;
}
body.menu-is-open .header-content {
pointer-events: auto;
}
/* --------------------------------------------
Expertise Section
-------------------------------------------- */
/* ✅ Expertise Section */
.expertise-section {
padding: var(--spacing-xl) var(--spacing-lg);
background: var(--bg-light);
}
.expertise-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.expertise-container h2 {
font-size: 2rem;
margin-bottom: var(--spacing-lg);
color: var(--text-primary);
}
/* ✅ Grid layout for cards */
.expertise-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); /* always 2 cards per row */
gap: var(--spacing-lg);
}
/* ✅ Card styling */
.expertise-card {
background: var(--bg-white);
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
padding: var(--spacing-lg);
text-align: left;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expertise-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.expertise-card h3 {
font-size: 1.25rem;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.expertise-card p {
font-size: 0.95rem;
color: var(--text-secondary);
line-height: 1.5;
}
/* ✅ Mobile view → collapse to 1 card per row */
@media (max-width: 768px) {
.expertise-grid {
grid-template-columns: 1fr;
}
}
/* --------------------------------------------
Services Overview Section
-------------------------------------------- */
.services-overview {
background-color: var(--white);
}
.service-tabs {
margin-top: var(--spacing-2xl);
}
.tab-navigation {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-xl);
border-bottom: 1px solid var(--gray-300);
}
.tab-btn {
padding: var(--spacing-md) var(--spacing-lg);
margin: 0 var(--spacing-sm);
background-color: transparent;
border: none;
cursor: pointer;
color: var(--text-medium);
font-weight: 500;
transition: all var(--transition-normal);
position: relative;
}
.tab-btn:hover {
color: var(--primary-color);
}
.tab-btn.active {
color: var(--primary-color);
}
.tab-btn.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 3px;
background-color: var(--primary-color);
}
.tab-content {
padding: var(--spacing-xl) 0;
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}
.tab-pane h3 {
margin-bottom: var(--spacing-md);
}
.tab-pane p {
margin-bottom: var(--spacing-lg);
max-width: 800px;
}
.service-highlights {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-lg);
margin-bottom: var(--spacing-xl);
}
.service-highlight-item {
background-color: var(--gray-100);
border-radius: var(--border-radius-md);
padding: var(--spacing-lg);
display: flex;
flex-direction: column;
align-items: flex-start;
}
.service-highlight-item .icon {
margin-bottom: var(--spacing-md);
}
.service-highlight-item .icon i {
font-size: var(--font-size-2xl);
color: var(--primary-color);
}
.service-highlight-item h4 {
margin-bottom: var(--spacing-xs);
}
.service-highlight-item p {
font-size: var(--font-size-sm);
margin-bottom: 0;
}
.service-features {
margin-bottom: var(--spacing-xl);
}
.service-features li {
margin-bottom: var(--spacing-sm);
display: flex;
align-items: center;
}
.service-features li i {
color: var(--primary-color);
margin-right: var(--spacing-sm);
}
.service-cta {
display: flex;
gap: var(--spacing-md);
}
/* Service Detail Styles for Individual Service Pages */
.service-header {
background-color: var(--gray-100);
padding: var(--spacing-2xl) 0;
}
.service-header h1 {
margin-bottom: var(--spacing-sm);
}
.service-header p {
max-width: 800px;
margin-bottom: var(--spacing-xl);
}
.service-tabs {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-md);
}
.tab-link {
padding: var(--spacing-sm) var(--spacing-lg);
background-color: var(--white);
border: 1px solid var(--gray-300);
border-radius: var(--border-radius-sm);
color: var(--text-medium);
text-decoration: none;
transition: all var(--transition-normal);
}
.tab-link:hover {
background-color: var(--primary-light);
color: var(--primary-color);
}
.tab-link.active {
background-color: var(--primary-color);
color: var(--white);
border-color: var(--primary-color);
}
.service-detail {
padding: var(--spacing-2xl) 0;
}
.service-detail h2 {
margin-bottom: var(--spacing-md);
}
.service-summary {
font-size: var(--font-size-lg);
color: var(--text-medium);
margin-bottom: var(--spacing-xl);
max-width: 800px;
}
.service-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: var(--spacing-2xl);
margin-bottom: var(--spacing-3xl);
}
.service-grid.two-col {
grid-template-columns: repeat(2, 1fr);
}
.service-item {
display: flex;
gap: var(--spacing-lg);
}
.service-item .icon {
flex: 0 0 60px;
height: 60px;
background-color: var(--primary-light);
border-radius: var(--border-radius-full);
display: flex;
align-items: center;
justify-content: center;
}
.service-item .icon i {
font-size: var(--font-size-xl);
color: var(--primary-color);
}
.service-item .icon.blue-icon {
background-color: var(--primary-color);
}
.service-item .icon.blue-icon i {
color: var(--white);
}
.service-item .service-content {
flex: 1;
}
.service-item h3 {
margin-bottom: var(--spacing-sm);
}
.service-item h4 {
margin-top: var(--spacing-lg);
margin-bottom: var(--spacing-sm);
color: var(--text-medium);
}
.service-item p {
margin-bottom: var(--spacing-md);
}
.service-item .btn {
margin-top: var(--spacing-md);
}
/* Certification Section */
.certification-section {
background-color: var(--gray-100);
padding: var(--spacing-2xl);
border-radius: var(--border-radius-md);
margin-top: var(--spacing-2xl);
}
.certification-section h3 {
margin-bottom: var(--spacing-xl);
text-align: center;
}
.certification-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-lg);
margin-bottom: var(--spacing-xl);
}
.certification-item {
background-color: var(--white);
padding: var(--spacing-lg);
border-radius: var(--border-radius-md);
text-align: center;
box-shadow: var(--shadow-sm);
}
.cert-icon {
margin-bottom: var(--spacing-md);
color: var(--primary-color);
}
.cert-icon i {
font-size: var(--font-size-2xl);
}
.certification-item h4 {
margin-bottom: var(--spacing-xs);
}
.certification-item p {
color: var(--text-medium);
font-size: var(--font-size-sm);
margin-bottom: 0;
}
.certification-section .btn {
display: block;
width: fit-content;
margin: 0 auto;
}
/* Development Approach */
.development-approach {
margin-top: var(--spacing-3xl);
}
.development-approach h3 {
text-align: center;
margin-bottom: var(--spacing-xl);
}
.approach-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-lg);
}
.approach-step {
text-align: center;
padding: var(--spacing-lg);
background-color: var(--gray-100);
border-radius: var(--border-radius-md);
}
.step-icon {
width: 60px;
height: 60px;
background-color: var(--white);
border-radius: var(--border-radius-full);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-md);
box-shadow: var(--shadow-sm);
}
.step-icon i {
font-size: var(--font-size-xl);
color: var(--primary-color);
}
/* Implementation Section */
.implementation-section {
margin-top: var(--spacing-3xl);
}
.implementation-section h3 {
text-align: center;
margin-bottom: var(--spacing-xl);
}
.implementation-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-lg);
}
.implementation-step {
text-align: center;
padding: var(--spacing-lg);
background-color: var(--gray-100);
border-radius: var(--border-radius-md);
}
/* Stats Section */
.stats-section {
margin-top: var(--spacing-3xl);
}
.stats-section h3 {
text-align: center;
margin-bottom: var(--spacing-xl);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-lg);
}
.stat-item {
background-color: var(--gray-100);
padding: var(--spacing-lg);
border-radius: var(--border-radius-md);
text-align: center;
box-shadow: var(--shadow-sm);
transition: transform var(--transition-normal);
}
.stat-item:hover {
transform: translateY(-5px);
}
.stat-value {
font-size: var(--font-size-2xl);
font-weight: 700;
color: var(--primary-color);
margin-bottom: var(--spacing-xs);
}
.stat-label {
color: var(--text-medium);
font-size: var(--font-size-sm);
}
/* --------------------------------------------
Call to Action Section (solid high contrast)
-------------------------------------------- */
.cta-section {
background-color: #2b6777; /* deep teal - soft but clear contrast */
color: var(--white);
padding: var(--spacing-xl) 0; /* reduced height */
}
.cta-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.cta-content h2 {
color: var(--white);
margin-bottom: var(--spacing-md);
}
.cta-content p {
margin-bottom: var(--spacing-lg);
color: rgba(255, 255, 255, 0.9);
}
.cta-content .btn-primary {
background-color: var(--white);
color: #2b6777;
border-color: var(--white);
}
.cta-content .btn-primary:hover {
background-color: transparent;
color: var(--white);
border-color: var(--white);
}
/* --------------------------------------------
Contact Page Styles
-------------------------------------------- */
.contact-banner {
background-color: var(--primary-color);
background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: var(--white);
padding: var(--spacing-4xl) 0;
position: relative;
overflow: hidden;
}
.contact-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2000&q=80');
background-size: cover;
background-position: center;
opacity: 0.1;
z-index: 0;
}
.contact-banner .banner-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.contact-banner h1 {
color: var(--white);
margin-bottom: var(--spacing-md);
font-size: var(--font-size-3xl);
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.contact-banner p {
color: rgba(255, 255, 255, 0.9);
font-size: var(--font-size-lg);
max-width: 700px;
margin: 0 auto;
}
.contact-section {
padding: var(--spacing-3xl) 0;
}
.contact-content {
display: grid;
grid-template-columns: 3fr 2fr;
gap: var(--spacing-3xl);
}
.contact-form-container {
background-color: var(--white);
border-radius: var(--border-radius-md);
padding: var(--spacing-2xl);
box-shadow: var(--shadow-lg);
border-top: 4px solid var(--primary-color);
}
.contact-form-container h2 {
margin-bottom: var(--spacing-sm);
color: var(--primary-color);
font-size: var(--font-size-2xl);
}
.contact-form-container p {
margin-bottom: var(--spacing-xl);
color: var(--text-medium);
font-size: var(--font-size-base);
}
.contact-form {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-xl);
}
.form-group {
margin-bottom: var(--spacing-md);
position: relative;
}
.form-group.full-width {
grid-column: span 2;
}
.form-group label {
display: block;
font-weight: 500;
margin-bottom: var(--spacing-xs);
color: var(--text-dark);
transition: color var(--transition-fast);
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: var(--spacing-md);
border: 1px solid var(--gray-300);
border-radius: var(--border-radius-sm);
font-family: var(--font-primary);
font-size: var(--font-size-base);
background-color: var(--gray-100);
transition: all var(--transition-normal);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
border-color: var(--gray-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
background-color: var(--white);
box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
color: var(--primary-color);
}
.form-group textarea {
min-height: 150px;
resize: vertical;
}
.form-group select {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 10px center;
padding-right: 40px;
}
.checkbox-group {
display: flex;
align-items: flex-start;
margin-top: var(--spacing-md);
}
.checkbox-group input {
width: 18px;
height: 18px;
margin-right: var(--spacing-sm);
margin-top: 3px;
cursor: pointer;
accent-color: var(--primary-color);
}
.checkbox-group label {
font-weight: 400;
font-size: var(--font-size-sm);
color: var(--text-medium);
cursor: pointer;
}
.form-submit {
grid-column: span 2;
text-align: right;
margin-top: var(--spacing-md);
}
.form-submit .btn {
padding: var(--spacing-md) var(--spacing-2xl);
font-size: 1.05rem;
font-weight: 500;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-submit .btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.error-message {
color: var(--danger);
font-size: var(--font-size-sm);
margin-top: var(--spacing-xs);
display: block;
}
.contact-info-container {
display: flex;
flex-direction: column;
gap: var(--spacing-2xl);
}
.contact-info {
background-color: var(--white);
border-radius: var(--border-radius-md);
padding: var(--spacing-xl);
box-shadow: var(--shadow-md);
border-left: 4px solid var(--primary-color);
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.contact-info:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.contact-info h3 {
margin-bottom: var(--spacing-xl);
color: var(--primary-color);
position: relative;
display: inline-block;
}
.contact-info h3::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 40px;
height: 3px;
background-color: var(--primary-color);
}
.info-item {
display: flex;
margin-bottom: var(--spacing-xl);
align-items: flex-start;
}
.info-item:last-child {
margin-bottom: 0;
}
.info-item i {
flex: 0 0 46px;
height: 46px;
background-color: var(--primary-light);
color: var(--primary-color);
border-radius: var(--border-radius-full);
display: flex;
align-items: center;
justify-content: center;
margin-right: var(--spacing-md);
font-size: 1.2rem;
transition: all var(--transition-normal);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.info-item:hover i {
background-color: var(--primary-color);
color: var(--white);
transform: scale(1.1);
}
.info-item h4 {
margin-bottom: var(--spacing-xs);
font-size: 1.1rem;
color: var(--text-dark);
}
.info-item p {
color: var(--text-medium);
margin-bottom: 0;
line-height: 1.6;
}
.business-hours,
.social-connect {
background-color: var(--white);
border-radius: var(--border-radius-md);
padding: var(--spacing-xl);
box-shadow: var(--shadow-md);
border-left: 4px solid var(--primary-color);
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.business-hours:hover,
.social-connect:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.business-hours h3,
.social-connect h3 {
margin-bottom: var(--spacing-xl);
color: var(--primary-color);
position: relative;
display: inline-block;
}
.business-hours h3::after,
.social-connect h3::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 40px;
height: 3px;
background-color: var(--primary-color);
}
.business-hours ul {
list-style: none;
padding: 0;
margin: 0;
}
.business-hours li {
margin-bottom: var(--spacing-md);
display: flex;
justify-content: space-between;
color: var(--text-medium);
padding-bottom: var(--spacing-sm);
border-bottom: 1px dashed var(--gray-300);
}
.business-hours li:last-child {
border-bottom: none;
}
.business-hours li span:first-child {
font-weight: 500;
color: var(--text-dark);
}
.social-connect .social-links {
display: flex;
gap: var(--spacing-md);
flex-wrap: wrap;
}
.social-connect .social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
background-color: var(--primary-light);
color: var(--primary-color);
border-radius: var(--border-radius-full);
transition: all var(--transition-normal);
font-size: 1.2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.social-connect .social-links a:hover {
background-color: var(--primary-color);
color: var(--white);
transform: translateY(-3px) scale(1.1);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
/* --------------------------------------------
Footer
-------------------------------------------- */
footer {
background-color: #212529;
color: var(--white);
padding-top: var(--spacing-3xl);
}
.footer-content {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-3xl);
margin-bottom: var(--spacing-3xl);
}
.footer-brand {
flex: 1 1 300px;
}
.footer-logo {
display: flex;
align-items: center;
margin-bottom: var(--spacing-lg);
}
.footer-logo .logo-icon {
width: 30px;
height: 30px;
}
.footer-logo .logo-text {
color: var(--white);
}
.footer-brand p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: var(--spacing-lg);
}
.social-links {
display: flex;
gap: var(--spacing-md);
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: rgba(255, 255, 255, 0.1);
color: var(--white);
border-radius: var(--border-radius-full);
transition: all var(--transition-normal);
}
.social-links a:hover {
background-color: var(--primary-color);
}
.footer-links {
flex: 1 1 600px;
display: flex;
justify-content: space-between;
gap: var(--spacing-xl);
}
.link-group {
flex: 1;
}
.link-group h3 {
color: var(--white);
margin-bottom: var(--spacing-lg);
font-size: var(--font-size-lg);
}
.link-group ul {
list-style: none;
padding: 0;
margin: 0;
}
.link-group li {
margin-bottom: var(--spacing-sm);
}
.link-group a {
color: rgba(255, 255, 255, 0.7);
transition: color var(--transition-fast);
}
.link-group a:hover {
color: var(--white);
}
.contact-info {
list-style: none;
padding: 0;
margin: 0;
}
.footer-contact-grid {
display: grid;
gap: var(--spacing-md);
}
.contact-item {
display: flex;
align-items: center;
padding: var(--spacing-sm);
color: rgba(255, 255, 255, 0.7);
transition: all var(--transition-fast);
text-decoration: none;
}
.contact-item:hover {
color: var(--white);
background: rgba(255, 255, 255, 0.1);
border-radius: var(--border-radius-sm);
}
.contact-item i {
margin-right: var(--spacing-sm);
font-size: var(--font-size-lg);
}
.contact-item span {
font-size: var(--font-size-sm);
}
.footer-bottom {
padding: var(--spacing-lg) 0;
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
color: rgba(255, 255, 255, 0.5);
margin-bottom: 0;
font-size: var(--font-size-sm);
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f4f6f8;
margin: 0;
padding: 0;
color: #333;
position: relative;
z-index: 0;
}
body.watermarked::before {
content: "ADAM Consult - ADIT Joint LLP";
position: fixed;
bottom: 0;
left: 0;
transform: rotate(60deg) translate(-10%, 50%);
font-size: 1.5rem;
color: rgba(43, 79, 129, 0.07);
white-space: nowrap;
z-index: -1;
pointer-events: none;
user-select: none;
}
.blog {
max-width: 900px;            /* Limits content width for readability */
margin: 0 auto;              /* Centers content horizontally */
padding: 40px 20px;          /* Space around content */
background-color: #ffffff;   /* White background */
border-radius: 10px;         /* Rounded corners */
box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* Subtle shadow for depth */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.8;            /* Readable line spacing */
color: #333333;              /* Dark text */
}
.blog h1 {
font-size: 2.2rem;
margin-bottom: 20px;
color: #1a1a1a;
}
.blog h2 {
font-size: 1.5rem;
margin-top: 30px;
margin-bottom: 15px;
color: #2c3e50;
}
.blog p {
margin-bottom: 15px;
font-size: 1rem;
}
.blog ul {
margin-bottom: 15px;
padding-left: 20px;
}
.blog li {
margin-bottom: 10px;
}
/* Optional: responsive adjustments */
@media (max-width: 768px) {
.blog {
padding: 20px 15px;
}
.blog h1 {
font-size: 1.8rem;
}
.blog h2 {
font-size: 1.3rem;
}
}
@media (max-width: 768px) {
.main-nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: var(--white);
flex-direction: column;
align-items: flex-start;
padding: var(--spacing-md);
box-shadow: var(--shadow-md);
display: none; /* Hidden by default */
}
.main-nav.open {
display: flex; /* Show when toggled */
}
.nav-links {
flex-direction: column;
width: 100%;
}
.nav-links li {
margin: var(--spacing-sm) 0;
width: 100%;
}
.nav-links a {
width: 100%;
}
.mobile-menu-toggle {
display: block; /* Show hamburger icon on small screens */
}
}
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* Even if it's transparent, it blocks clicks */
background-color: transparent;
z-index: 9999; /* Higher than the logo's 2000 */
}
.team-card-holder {
background: #f5f5f5;
padding: 30px;
border-radius: 12px;
max-width: 700px;
margin: 0 auto;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.team-section {
text-align: center;
padding: 20px 0;
}
.team-section h3 {
font-size: 1.4rem;
margin-bottom: 10px;
font-weight: 600;
}
.team-section p {
font-size: 0.95rem;
color: #444;
margin-bottom: 20px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.team-row {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.team-card {
width: 180px;
background-color: #fff;
padding: 15px;
border-radius: 8px;
border: 1px solid #ddd;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.team-card img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ccc;
margin-bottom: 10px;
}
.team-card h4 {
font-size: 1rem;
margin-bottom: 6px;
}
.team-card p {
font-size: 0.8rem;
color: #333;
line-height: 1.3;
}
/* Expand view height only on mobile */
@media only screen and (max-width: 768px) {
:root {
--vh: 1vh;
}
body,
html {
height: calc(var(--vh, 1vh) * 100);
overflow-x: hidden;
}
.mobile-fullscreen {
height: calc(var(--vh, 1vh) * 100);
min-height: 100vh;
}
}
/* Add this to your main stylesheet (e.g., styles.css) */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
/* Background image setup */
background-image: url('../images/sustainability-bg.jpg'); /* Change to your image path */
background-size: cover; /* Fill the screen */
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed; /* Makes it stay still while scrolling */
/* Light overlay for fade effect */
position: relative;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* Adjust transparency and color here */
background-color: rgba(255, 255, 255, 0.85);
pointer-events: none;
z-index: -1;
}
/* =========================================
Experience Overview Section
#ERROR!
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('../images/sustainability-bg.jpg'); /* Change to your image path */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
position: relative;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.85);
pointer-events: none;
z-index: -1;
}
.xp-section {
padding: 80px 20px;
background: transparent; /* no background */
color: #0b0b0b;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.xp-title {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 50px;
background: linear-gradient(90deg, #06b6d4, #3b82f6, #a855f7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 1px;
}
.xp-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
flex-wrap: wrap;
justify-content: center;
}
.xp-card {
position: relative;
background: rgba(255, 255, 255, 0.85);
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 16px;
padding: 30px 40px;
width: 240px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.xp-card:hover {
transform: translateY(-8px);
border-color: #3b82f6;
box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.xp-glow {
position: absolute;
top: -40%;
left: -40%;
width: 180%;
height: 180%;
background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
transform: scale(0);
transition: transform 0.6s ease-out;
border-radius: 50%;
pointer-events: none;
}
.xp-card:hover .xp-glow {
transform: scale(1);
}
.xp-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
background: linear-gradient(90deg, #22d3ee, #3b82f6, #a855f7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.xp-label {
font-size: 1.1rem;
color: #d1d5db;
}
.xp-description,
.xp-desc {
font-size: 0.9rem;
color: #9ca3af;
margin-top: 6px;
}
@media (max-width: 600px) {
.xp-number {
font-size: 2.2rem;
}
.xp-label {
font-size: 1rem;
}
}
/* ====== Small Cards Section ====== */
.small-cards {
padding: 30px 0;
background: #f9f9f9;
}
/* Container for all small cards */
.cards-container {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
align-items: stretch;
}
/* Individual small card */
.small-card {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
padding: 14px 18px;
width: 180px;
text-align: center;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
}
/* Card title */
.small-card h4 {
font-size: 0.95rem;
color: #333;
font-weight: 600;
margin: 0;
transition: color 0.3s ease;
}
/* Hover state */
.small-card:hover {
background: #007bff;
border-color: #007bff;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 123, 255, 0.25);
}
.small-card:hover h4 {
color: #fff;
}
/* Responsive tweaks */
@media (max-width: 600px) {
.small-card {
width: 160px;
padding: 12px 14px;
}
.small-card h4 {
font-size: 0.9rem;
}
}
.catalogue-section {
padding: 2rem;
background: #f9fafc;
}
.catalogue-section h2 {
font-size: 1.8rem;
color: #1a1a1a;
margin-bottom: 0.5rem;
}
.catalogue-subtitle {
font-size: 1rem;
color: #666;
margin-bottom: 1.5rem;
}
.table-responsive {
overflow-x: auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.catalogue-table {
width: 100%;
border-collapse: collapse;
min-width: 900px;
}
.catalogue-table th,
.catalogue-table td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: left;
vertical-align: top;
}
.catalogue-table th {
background-color: #004aad;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.catalogue-table tr:nth-child(even) {
background-color: #f3f6fb;
}
.catalogue-table tr:hover {
background-color: #eaf0ff;
transition: 0.3s;
}
.reference-prices-section {
padding: 2rem;
background-color: #fefefe;
text-align: center; /* centers the section title & subtitle */
}
.reference-prices-section h2 {
font-size: 1.8rem;
color: #1a1a1a;
margin-bottom: 0.5rem;
}
.reference-prices-section .subtitle {
font-size: 1rem;
color: #666;
margin-bottom: 1.5rem;
}
.reference-prices-table {
width: 80%;
margin: 0 auto; /* centers the table horizontally */
border-collapse: collapse;
}
.reference-prices-table th,
.reference-prices-table td {
border: 1px solid #ddd;
padding: 12px 16px;
text-align: center; /* center-align content */
vertical-align: middle;
}
.reference-prices-table th {
background-color: #004aad;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.reference-prices-table tr:nth-child(even) {
background-color: #f3f6fb;
}
.reference-prices-table tr:hover {
background-color: #eaf0ff;
transition: 0.3s;
}
.small-cards { padding: 40px 0; }
.small-cards .cards-container {
display: flex; flex-wrap: wrap; gap: 20px;
justify-content: center; align-items: flex-start;
}
.small-card {
display: block; width: 220px; min-height: 160px;
padding: 16px 18px; border-radius: 12px;
border: 1px solid rgba(0,0,0,0.06);
background: rgba(255,255,255,0.96);
box-shadow: 0 4px 10px rgba(0,0,0,0.12);
text-decoration: none;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.small-card h4 {
font-size: 0.95rem; color: #1a1a1a;
font-weight: 600; margin: 0 0 0.5rem 0;
}
.small-card p {
font-size: 0.8rem; color: #444; margin: 0; line-height: 1.4;
}
.small-card:hover {
background: #0056b3; border-color: #0056b3;
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0,86,179,0.35);
}
.small-card:hover h4, .small-card:hover p { color: #fff; }
@media (max-width: 768px) {
.small-card { width: 45%; min-height: auto; padding: 14px 12px; }
}
/* END STYLE*/
