* {
box-sizing: border-box;
}
html, body {
width: 100%;
max-width: 100%;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
font-size: 17px;
overflow-x: hidden !important;
position: relative;
}
a {
text-decoration: none;
transition: 0.3s;
color: #006097;
}
a:hover {
color: #003d5e;
}
img {
max-width: 100%;
height: auto;
display: block;
}
h1, h2, h3, h4, h5, h6 {
color: #102a52;
margin-top: 0;
font-weight: 700;
} .site-header {
background: linear-gradient(90deg, #102a52 0%, #1e457e 100%);
padding: 10px 0;
color: #fff;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
.site-branding {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 2px;
}
.site-title {
font-size: 24px;
font-weight: 700;
margin: 0;
color: #fff;
line-height: 1.1;
white-space: nowrap;
}
.site-title a {
color: #fff;
}
.desktop-only-description {
display: block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.8;
color: #eee;
margin-top: 0;
line-height: 1.2;
}
.header-separator {
display: none; 
}
.site-description {
display: block;
} .main-navigation ul {
display: flex;
gap: 25px;
list-style: none;
margin: 0;
padding: 0;
}
.main-navigation a {
color: #fff;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
padding: 5px 0;
position: relative;
}
.main-navigation a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #fff;
transition: .3s;
}
.main-navigation a:hover::after {
width: 100%;
} .menu-toggle {
display: none;
background: rgba(255, 255, 255, .15);
border: 1px solid rgba(255, 255, 255, .3);
color: #fff;
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
}
.hamburger-icon {
font-size: 18px;
line-height: 1;
} .hero-wrapper {
background: #fff;
padding: 80px 0;
border-bottom: 1px solid #e1e1e1;
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
gap: 50px;
}
.hero-text-area {
flex: 1;
}
.welcome-badge {
background: #e3f2fd;
color: #004060;
padding: 8px 16px;
border-radius: 50px;
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
display: inline-block;
margin-bottom: 20px;
}
.hero-text-area h1 {
font-size: 48px;
color: #111;
margin: 0 0 20px 0;
line-height: 1.1;
}
.highlight {
color: #006097;
}
.hero-text-area p {
font-size: 19px;
color: #555;
margin-bottom: 30px;
max-width: 90%;
}
.btn {
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
display: inline-block;
font-size: 15px;
border: none;
cursor: pointer;
text-align: center;
}
.btn-primary {
background: #102a52;
color: #fff;
margin-right: 15px;
}
.btn-linkedin {
background: #0077b5;
color: #fff;
}
.hero-image-area {
flex: 0 0 300px;
display: flex;
justify-content: center;
}
.profile-photo {
width: 280px;
height: 280px;
object-fit: cover;
border-radius: 50%;
border: 8px solid #fff;
box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
} .blog-slider-wrapper {
position: relative;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
.blog-slider-container {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
gap: 25px;
padding: 10px 5px 30px 5px;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
align-items: stretch;
}
.blog-slider-container::-webkit-scrollbar {
display: none;
}
.blog-slider-container .blog-card {
min-width: 320px;
max-width: 320px;
flex-shrink: 0;
scroll-snap-align: center;
height: auto;
}
.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #fff;
border: 1px solid #eee;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
font-size: 18px;
color: #102a52;
z-index: 20;
display: flex;
align-items: center;
justify-content: center;
transition: .3s;
}
.slider-nav:hover {
background: #102a52;
color: #fff;
}
.slider-nav.prev {
left: -15px;
}
.slider-nav.next {
right: -15px;
}
.blog-card {
background: #fff;
border-radius: 12px;
border: 1px solid #eee;
overflow: hidden;
display: flex;
flex-direction: column;
height: 100%;
transition: .3s;
}
.blog-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}
.card-image img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
}
.card-content {
padding: 25px;
display: flex;
flex-direction: column;
flex: 1; 
text-align: left;
}
.entry-title {
font-size: 19px;
margin: 10px 0;
line-height: 1.4;
font-weight: 700;
}
.read-more-link {
margin-top: auto; 
font-weight: 700;
color: #006097;
} .services-section {
padding: 60px 0;
background: #fafafa;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
.service-box {
background: #fff;
padding: 35px;
border-radius: 12px;
border: 1px solid #eee;
text-align: center;
transition: .3s;
}
.service-box:hover {
transform: translateY(-5px);
border-color: #006097;
}
.service-box .icon {
font-size: 40px;
margin-bottom: 20px;
}
.section-header {
text-align: center !important;
margin-bottom: 40px;
width: 100%;
}
.section-header h3 {
font-size: 28px;
margin-bottom: 10px;
display: inline-block;
}
.line {
width: 60px;
height: 4px;
background: #006097;
margin: 0 auto 10px auto;
display: block;
}
#blog-feed .blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
padding: 0 20px;
} .single-post-template {
padding: 60px 0;
}
.single-post-template article {
background: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
width: 100%;
overflow: hidden; 
}
.single-header h1 {
font-size: 38px;
color: #111;
text-align: center;
margin-bottom: 20px;
}
.single-header .line {
margin-bottom: 35px;
}
.single-featured-image-container {
margin-bottom: 20px;
text-align: center;
}
.single-featured-img {
margin: 0 auto;
display: block;
}
.post-meta-bar {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
color: #666;
font-size: 15px;
}
.entry-content {
line-height: 1.8;
color: #444;
overflow-wrap: break-word; 
word-wrap: break-word; 
word-break: break-word;
}
.entry-content p {
margin-bottom: 1.5em;
} .eb-timeline {
position: relative;
max-width: 1200px;
margin: 50px auto;
} .eb-timeline::after {
content: '';
position: absolute;
width: 4px;
background-color: #006097;
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
} .eb-timeline-item {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
box-sizing: border-box; display: flex;
align-items: center;
} .eb-timeline-item.left {
left: 0;
justify-content: flex-end; text-align: right;
} .eb-timeline-item.right {
left: 50%;
justify-content: flex-start; text-align: left;
} .eb-content {
padding: 20px 30px;
background-color: white;
position: relative;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border: 1px solid #eee;
transition: 0.3s; width: 90%; 
}
.eb-content:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-color: #006097;
} .eb-dot {
height: 20px;
width: 20px;
background-color: #fff;
border: 4px solid #102a52;
border-radius: 50%;
position: absolute; top: 50%;
transform: translateY(-50%);
z-index: 1;
} .eb-timeline-item.left .eb-dot { right: -10px; }
.eb-timeline-item.right .eb-dot { left: -10px; } .eb-date {
font-size: 14px;
font-weight: 700;
color: #006097;
margin-bottom: 5px;
display: block;
text-transform: uppercase;
letter-spacing: 0.5px;
} .eb-content h2 {
font-size: 20px;
margin-bottom: 5px;
color: #102a52;
}
.eb-content h4 {
font-size: 15px;
color: #666;
margin-bottom: 15px;
font-weight: 600;
} .eb-share-section {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
text-align: center;
}
.share-title {
display: block;
font-size: 16px;
font-weight: 700;
margin-bottom: 15px;
color: #102a52;
}
.share-buttons {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
.share-btn {
padding: 8px 16px;
border-radius: 5px;
color: #fff;
font-weight: 600;
font-size: 13px;
transition: 0.3s;
display: inline-block;
border: none;
cursor: pointer;
}
.share-btn:hover {
opacity: 0.9;
transform: translateY(-2px);
color: #fff;
}
.share-btn.linkedin { background-color: #0077b5; }
.share-btn.twitter { background-color: #000; }
.share-btn.facebook { background-color: #1877F2; }
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.copy-link { background-color: #666; }
.eb-author-box {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 12px;
padding: 30px;
margin-top: 40px;
display: flex;
align-items: center;
gap: 25px;
}
.author-img img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #fff;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.author-info h3 {
margin: 0;
font-size: 20px;
color: #102a52;
}
.author-role {
font-size: 13px;
color: #006097;
font-weight: 700;
text-transform: uppercase;
display: block;
margin-bottom: 10px;
}
.author-info p {
font-size: 15px;
color: #555;
margin-bottom: 10px;
line-height: 1.5;
}
.author-social-link {
font-size: 14px;
font-weight: 700;
color: #0077b5;
}
@media (max-width: 768px) {
.eb-author-box {
flex-direction: column;
text-align: center;
padding: 20px;
}
.author-img img { margin: 0 auto; }
} .eb-about-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
.eb-about-header {
text-align: center;
margin-bottom: 60px;
}
.eb-profile-img {
width: 180px;
height: 180px;
border-radius: 50%;
border: 6px solid #fff;
box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
object-fit: cover;
margin: 0 auto 20px auto !important;
display: block;
}
.eb-intro-text {
font-size: 18px;
color: #555;
line-height: 1.8;
max-width: 700px;
margin: 20px auto;
}
.eb-contact-container {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
padding: 40px 20px;
}
.eb-info-card {
background: #fff;
padding: 25px;
border-radius: 12px;
border: 1px solid #eee;
text-align: center;
margin-bottom: 20px;
}
.eb-form-box {
background: #fff;
padding: 40px;
border-radius: 16px;
border: 1px solid #eee;
}
.eb-input, .eb-textarea {
width: 100%;
padding: 14px;
border: 2px solid #f0f0f0;
border-radius: 8px;
margin-bottom: 20px;
display: block;
}
.eb-btn-submit {
width: 100%;
background: #102a52;
color: #fff;
border: none;
padding: 16px;
border-radius: 8px;
font-weight: 700;
cursor: pointer;
}
.eb-alert-success {
background: #d1e7dd;
color: #0f5132;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
display: none;
text-align: center;
}
.eb-alert-success.show {
display: block;
}
.site-footer {
text-align: center;
padding: 20px 0;
background: #111;
color: #888;
font-size: 14px;
margin-top: auto;
}
.footer-links a {
color: #fff;
margin: 0 10px;
} @media(min-width: 901px) {
.related-slider .blog-card {
min-width: 32%;
max-width: 32%;
margin-right: 1.33%;
}
}
@media(max-width: 900px) { .eb-timeline::after {
left: 31px; }
.eb-timeline-item {
width: 100%;
padding-left: 70px;
padding-right: 25px; display: block; 
}
.eb-timeline-item.left, .eb-timeline-item.right {
left: 0;
text-align: left; } .eb-content {
width: 100%;
}
.eb-timeline-item.left .eb-dot, 
.eb-timeline-item.right .eb-dot {
left: 21px; right: auto; top: 25px; 
transform: none;
} .site-header .container {
justify-content: space-between;
}
.site-branding {
max-width: 70%;
flex-shrink: 0;
}
.site-title {
font-size: 18px; 
}
.desktop-only-description {
font-size: 9px;
} .menu-toggle {
display: flex;
margin-left: auto;
}
.main-navigation {
display: none;
width: 100%;
order: 3;
margin-top: 15px;
background: #102a52;
border-radius: 8px;
padding: 10px;
position: absolute; 
top: 65px;
left: 0;
z-index: 9999;
box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}
.main-navigation.toggled {
display: block !important;
}
.main-navigation ul {
flex-direction: column !important;
gap: 0;
}
.main-navigation a {
display: block;
border-bottom: 1px solid rgba(255, 255, 255, .1);
padding: 12px 15px;
text-align: left;
width: 100%;
}
.main-navigation a::after {
display: none;
} .blog-slider-wrapper {
padding: 0;
margin-bottom: 30px;
}
.blog-slider-container {
justify-content: flex-start;
padding: 10px 4vw; 
}
.blog-slider-container .blog-card,
.related-slider .blog-card {
min-width: 92vw; max-width: 92vw;
margin-right: 15px;
} .slider-nav {
display: flex !important; 
width: 35px;
height: 35px;
font-size: 16px;
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 99;
}
.slider-nav.prev {
left: 5px; 
}
.slider-nav.next {
right: 5px; 
} .hero-content {
flex-direction: column-reverse;
text-align: center;
gap: 30px;
}
.hero-text-area h1 {
font-size: 32px;
}
.hero-text-area p {
margin-left: auto;
margin-right: auto;
}
.hero-buttons .btn {
width: 100%;
margin-bottom: 15px;
margin-right: 0;
display: block;
} .eb-contact-container {
grid-template-columns: 1fr;
padding: 20px;
gap: 30px;
}
#blog-feed .blog-grid {
grid-template-columns: 1fr;
}
.single-post-template article {
padding: 20px;
width: 100%;
overflow: hidden;
}
.single-header h1 {
font-size: 28px;
}
} .comments-area-wrapper {
max-width: 100%;
}
.comments-title, 
.comment-reply-title {
font-size: 22px;
color: #102a52;
margin-bottom: 25px;
font-weight: 700;
display: block;
} .comment-list {
list-style: none;
padding: 0;
margin: 0;
}
.comment-body {
background: #fcfcfc;
padding: 20px;
border: 1px solid #eee;
border-radius: 8px;
margin-bottom: 20px;
position: relative;
}
.comment-author .avatar {
width: 50px;
height: 50px;
border-radius: 50%;
float: left;
margin-right: 15px;
border: 2px solid #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.comment-meta {
font-size: 13px;
color: #888;
margin-bottom: 10px;
}
.comment-content p {
font-size: 15px;
margin-bottom: 10px;
color: #444;
}
.reply a {
font-size: 12px;
font-weight: 700;
color: #006097;
text-transform: uppercase;
} .comment-form {
background: #fff;
padding: 30px;
border: 1px solid #eee;
border-radius: 12px;
margin-top: 30px;
}
.comment-form label {
display: block;
margin-bottom: 5px;
font-weight: 600;
font-size: 14px;
color: #333;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
margin-bottom: 15px;
font-size: 15px;
background: #fafafa;
}
.comment-form input:focus,
.comment-form textarea:focus {
border-color: #102a52;
outline: none;
background: #fff;
}
.comment-form .submit {
background: #102a52;
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 6px;
font-weight: 700;
cursor: pointer;
transition: 0.3s;
text-transform: uppercase;
font-size: 14px;
}
.comment-form .submit:hover {
background: #006097;
}
.comment-notes {
font-size: 13px;
color: #777;
margin-bottom: 20px;
}  .single-post-template .entry-content {
max-width: 800px; margin-left: auto; margin-right: auto; } .single-post-template .single-header,
.single-post-template .post-meta-bar,
.single-post-template .single-featured-image-container {
max-width: 800px;
margin-left: auto;
margin-right: auto;
} @media (max-width: 900px) {
.single-post-template .entry-content,
.single-post-template .single-header,
.single-post-template .post-meta-bar,
.single-post-template .single-featured-image-container {
max-width: 100%; padding-left: 0; padding-right: 0;
}
}