/* ---------------------------------
   GLOBAL RESET
---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sticky footer layout */
html, body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000;
    display: flex;
    flex-direction: column;
}

/* ---------------------------------
   NAVBAR
---------------------------------- */
/* NAVBAR */
nav {
    width: 100%;
    background: #201e1e;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Flex container for logo + menu */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE LOGO */
.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
.logo img {
    height: 50px;    /* Adjust size */
    width: auto;
}


/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: rgb(255, 250, 250);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00c3ff;
}

/* HAMBURGER MENU */
.hamburger {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    nav ul {
        display: none;
        flex-direction: column;
        background: #201e1e;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}


/* ---------------------------------
   HERO SECTION (HOME PAGE)
---------------------------------- */
.hero {
    background: url("https://images.pexels.com/photos/8111815/pexels-photo-8111815.jpeg") center/cover no-repeat;
    padding: 250px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    max-width: 750px;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
}

/* ---------------------------------
   ABOUT SECTION
---------------------------------- */
.about {
    padding: 50px 50px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-box {
    text-align: center;
    flex: 1;
}

.about-image-box img {
    width: 320px;
    border-radius: 6px;
    margin: 0 auto;
}

/* NAME BOX */
.image-caption {
    background: #002b5c;
    color: white;
    font-size: 18px;
    padding: 12px;
}
.governance-model {
    background: #ffffff;
    padding: 70px 20px;
}

.gov-container {
    max-width: 1100px;
    margin: auto;
}

.gov-header {
    text-align: center;
    margin-bottom: 50px;
}

.gov-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.gov-header p {
    font-size: 16px;
    color: #555;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.gov-card {
     background: #1f1f1f;
    color: white;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gov-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.gov-card p {
    font-size: 15px;
    line-height: 1.6;
}

.gov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gov-card.highlight {
     background: #1f1f1f;
    color: #fff;
}

.gov-card.highlight p {
    color: #ddd;
}

/* SOCIAL ICONS */
.social-icons {
    background: #f3f3f3;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons img {
    width: 28px !important;
    height: 28px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* ABOUT TEXT */
.about-text {
    text-align: justify;
    flex: 1.5;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* ---------------------------------
   WHY CHOOSE US SECTION
---------------------------------- */
.why-section {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

.why-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.why-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.why-card {
    width: 300px;
    height: 260px;
    border-radius: 12px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* Overlay */
.why-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.why-card h3,
.why-card p {
    z-index: 2;
    position: relative;
}

/* ---------------------------------
   SERVICE PAGE HEADER – REDUCED HEIGHT
---------------------------------- */
.service-header {
    text-align: center;
    padding: 70px 20px;   /* Reduced from 100px */
    background-image: url("https://images.pexels.com/photos/7875842/pexels-photo-7875842.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    min-height: 180px;    /* NEW: make the top banner smaller */
}

.service-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.service-header h1 {
    position: relative;
    z-index: 2;
    font-size: 30px;      /* Reduced from 38px */
    font-weight: bold;
}

/* ---------------------------------
   SERVICES GRID
---------------------------------- */
.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px;
}

/* SERVICE CARD */
.service-card {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    font-weight: 600;
}

.service-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #555;
}

/* ---------------------------------
   SERVICE DETAILS PAGE
---------------------------------- */
.service-details {
    padding: 40px 20px 120px; /* Space above footer */
    background: #fff;
    flex: 1; /* Makes content push footer down */
}

.service-details .container {
    max-width: 1100px;
    margin: auto;
    line-height: 1.7;
    color: #222;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}
/* ============================
   BLOG PAGE STYLES (paste this)
   ============================ */

/* Container used across your pages */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Blog listing section */
.blog-list {
  padding: 40px 0 60px;
}

/* Blog card (single card in list) */
.blog-card {
  display: block;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  text-decoration: none;
  color: inherit;
}

/* image area for card */
.blog-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Title inside card */
.blog-card h3 {
  font-size: 22px;
  margin: 18px 20px 6px;
  font-weight: 700;
}

/* Excerpt paragraph inside card */
.blog-card p {
  margin: 0 20px 16px;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}

/* read more */
.blog-card .read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: #007acc;
  font-weight: 600;
  text-decoration: none;
}

/* Blog full post page image */
.blog-full-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  margin: 20px 0;
}

/* Blog meta text (author, date) */
.blog-meta {
  color: #eee;
  font-size: 14px;
  margin-top: 8px;
}

/* Make sure headings & body spacing look good */
.service-details .container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px 80px;
  line-height: 1.8;
  color: #222;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .blog-img { height: 160px; }
  .blog-card h3 { font-size: 18px; }
}

/* ---------------------------------
   FOOTER (STICKY BOTTOM)
---------------------------------- */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: auto; /* Sticky footer */
}
/* NAVBAR SAME STYLE */
.navbar {
    background: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.navbar ul li a.active {
    color: #00aaff;
}

/* CAREER HERO SECTION */
.career-hero {
    background: url("https://images.pexels.com/photos/12885861/pexels-photo-12885861.jpeg") center/cover no-repeat;
    min-height: 180px;      /* SAME AS SERVICE PAGE */
    padding: 70px 20px;      /* SAME TOP + BOTTOM SPACE */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* DARK OVERLAY */
.career-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* TEXT */
.career-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 750px;
}

.career-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.career-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}
/* NEWSLETTER SECTION */
.newsletter-section {
    background: #111;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.newsletter-container {
    max-width: 600px;
    margin: auto;
}

.newsletter-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    width: 70%;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #d4a762;
    border: none;
    color: #000;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.newsletter-form button:hover {
    background: #b4894f;
}
.knowledge-hub {
    padding: 60px 20px;
    background: #f6ebeb;
}

.knowledge-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.knowledge-hub h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.knowledge-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.knowledge-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.knowledge-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}
.knowledge-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
}
@media (max-width: 850px) {
    .about-container {
        display: block;
        gap: 20px; 
    }
}
@media (max-width: 417px) {
  .about-image-box img {
    width: 220px;
  }
}
