        
html {
  scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	background-color: #f4f6f8;
	color: #222;
}

.container {
	max-width: 1100px;
	margin: auto;
	padding: 40px 20px;
}

header {
  background: linear-gradient(135deg, #002147, #0b3c5d);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}


header h1 {
	margin: 0;
	font-size: 40px;
}

header p {
	margin-top: 10px;
	font-size: 20px;
	opacity: 0.9;
}

.badge {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 16px;
	background: #ff2d20;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
}

section {
  background: #fff;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


section h2 {
	margin: 0;
	padding: 20px;
	border-bottom: 1px solid #eee;
	color: #0b3c5d;
}

section .content {
	padding: 20px;
}

.timeline h3 {
	margin-bottom: 5px;
}

.timeline p {
	margin-top: 0;
	color: #555;
}

.skills span {
	display: inline-block;
	margin: 6px;
	padding: 8px 12px;
	background: #e8eef5;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

a {
	color: #0b3c5d;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

footer {
	text-align: center;
	padding: 30px;
	font-size: 14px;
	color: #777;
}
.profile-photo {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 4px solid #ffffff;
	object-fit: cover;
	margin-top: 20px;
}



.logo a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}



/* LARGE MAP SECTION */
.map-large {
    margin-top: 60px;
}

.map-large h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: #0b3c5d;
}

.map-wrapper {
    width: 100%;
    height: 55vh; /* half page height */
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .map-wrapper {
        height: 45vh;
        min-height: 300px;
    }
}


.contact-form {
    margin-top: 60px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0b3c5d;
}

.contact-form form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form button {
    background: #0b3c5d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ff2d20;
}


/* ===== Blog Card Clickable ===== */
.blog-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ===== Image Wrapper ===== */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ===== Category Badge ===== */
.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 60, 93, 0.9);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ===== Content ===== */
.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    margin: 0 0 10px 0;
    color: #0b3c5d;
}

.blog-card-content p {
    color: #555;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff2d20;
    font-weight: bold;
}

/* ===== Hover Effects ===== */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
    .blog-image-wrapper img {
        height: 180px;
    }
}




/* blog categories*/

.blog-categories {
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.blog-categories h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0b3c5d;
}

.blog-categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-categories li a {
    background: #e6eef5;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    color: #0b3c5d;
    font-weight: 500;
    font-size: 14px;
}

.blog-categories li a:hover {
    background: #0b3c5d;
    color: #fff;
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 14px;
    background: #0b3c5d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ff2d20;
}

.oracle-facebook-post {
    background: #fff;
    margin: 60px auto;
    padding: 30px 20px;
    max-width: 1100px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.oracle-facebook-post h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0b3c5d;
}

/* Responsive Facebook iframe */
.fb-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}

.fb-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Facebook Preview */
.facebook-preview {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.facebook-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* keeps whole card clickable */
}

/* Badge */
.blog-badge.oracle {
    background: #f80000;
}

/* Mobile fix */
@media (max-width: 768px) {
    .facebook-preview {
        height: 200px;
    }
}

/* ===== Blog Header ===== */

header h1 {
  margin: 0;
  font-size: 36px;
}

header p {
  font-size: 18px;
  opacity: 0.9;
}

.oracle-x-post {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.oracle-x-post h2 {
  text-align: center;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.x-embed {
  display: flex;
  justify-content: center;
}


.content.timeline h3 a {
  color: #0b3c5d;
  font-weight: bold;
  text-decoration: none;
}

.content.timeline h3 a:hover {
  text-decoration: underline;
  color: #ff2d20;
}


h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

p, li {
  line-height: 1.7;
  font-size: 1rem;
}

ul {
  padding-left: 20px;
}

.oracle-highlight {
  background: #f7f9fc;
  border-left: 4px solid #f80000;
  padding: 20px;
}

.oracle-links a {
  font-weight: bold;
  text-decoration: none;
}

/* Section reveal base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.experience-highlights ul {
  list-style: none;
  padding-left: 0;
}

.experience-highlights li {
  margin-bottom: 18px;
  line-height: 1.6;
}

.experience-highlights li a {
  display: inline-block;
  margin-right: 12px;
  font-weight: 500;
}
.experience-highlights li strong {
  font-size: 1.02rem;
}
.cert-intro {
  max-width: 720px;
  margin-bottom: 20px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.cert-item img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.cert-item a {
  font-weight: 500;
}

/* Mobile */
@media (max-width: 600px) {
  .cert-item {
    align-items: flex-start;
  }

  .cert-item img {
    width: 70px;
    height: 70px;
  }
}
.snippet-answer {
  font-size: 0.95rem;
  color: #333;
  max-width: 760px;
  margin-bottom: 16px;
}
