﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f7f7f7;
  color: #222;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 999;
}

.navbar .logo {
  color: #fff;
  font-size: 1.8em;
  font-weight: 800;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #00c3a1;
}

.hero {
  background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn {
  background: #00c3a1;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #00a98f;
}

.content-section {
  padding: 80px 30px;
  text-align: center;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

.content-section.dark {
  background: #111;
  color: #eee;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.dark .card {
  background: #222;
  color: #fff;
}

.card:hover {
  transform: translateY(-5px);
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
/* Contact Form Styles */
#contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

#contact-form input,
#contact-form textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#contact-form button {
  padding: 12px;
  background-color: #0c75ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #0956c7;
}

.form-status {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

/* ===== Placeholder Pages Styling ===== */

header {
  background-color: #0077b6;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 4px solid #90e0ef;
}

header a {
  color: #90e0ef;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

header a:hover {
  text-decoration: underline;
}

main .placeholder {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #e0f7fa;
  border: 2px dashed #00b4d8;
  border-radius: 12px;
  text-align: center;
  color: #023e8a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

main .placeholder h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #0077b6;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #03045e;
  color: white;
  font-size: 0.9rem;
}
.about-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1504198453319-5ce911bafcde?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

section {
  background-color: #f1f5f9; /* light background for content */
  padding: 40px 20px;
  color: #1e293b; /* dark text for readability */
  border-bottom: 1px solid #e2e8f0;
}
section h2 {
  color: #0f172a;
  font-size: 28px;
  margin-bottom: 15px;
}


.about-overview, .ceo-profile, .mission-vision, .core-values, .cta {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.ceo-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.ceo-img {
  width: 200px;
  border-radius: 15px;
}

.ceo-text {
  flex: 1;
}

.mission-vision {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.core-values ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.core-values ul li {
  background-color: #e8f5f1;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.cta {
  text-align: center;
  background: #f9f9f9;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00a86b;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
}
/* General Page Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6; /* light gray background for the page */
    color: #333; /* Dark text color for readability */
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
}

/* About Us Header */
.about-header {
    text-align: center;
    margin-bottom: 10px;
}

.about-header h1 {
    font-size: 16px;
    color: #2d3e50; /* white */
    font-weight: bold;
    text-transform: uppercase;
}

.about-header p {
    font-size: 16px;
    margin-top: 10px;
    color: #1e2a38; /* white */
}

/* CEO Section */
.ceo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.ceo-section img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
}

.ceo-content {
    flex: 1;
    max-width: 60%;
}

.ceo-content h2 {
    font-size: 28px;
    color: #2d3e50;
}

.ceo-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-top: 20px;
}

/* Social Media Links */
.ceo-social {
    margin-top: 20px;
}

.ceo-social a {
    margin-right: 15px;
    color: #1e76cc;
    text-decoration: none;
    font-size: 18px;
}

.ceo-social a:hover {
    color: #f28500;
}

/* Footer */
.footer {
    background-color: #2d3e50;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.footer p {
    font-size: 14px;
    color: #fff;
}
/* Additional Info Sections */
.info-section {
    margin-top: 50px;
}

.info-section h2 {
    font-size: 26px;
    color: #2d3e50;
    margin-bottom: 10px;
    border-left: 5px solid #f28500;
    padding-left: 10px;
}

.info-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.info-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
}
.about-hero {
  background-image: url('https://images.unsplash.com/photo-1523966211575-eb4a017f3e36?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

.about-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
  padding: 20px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.about-hero-content p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e2e8f0;
}

/* Main About Content Styling */
.about-container {
  max-width: 960px;
  margin: 3rem auto;
  padding: 1rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  border-left: 5px solid #38bdf8;
  padding-left: 10px;
}

.about-section p,
.about-section ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1e293b;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  margin: 0.5rem 0;
}
/* === Services Section Styling === */
.services-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.service-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: scale(1.02);
  background-color: #f4f4f4;
}
/* Style for the main navigation bar */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white;
  background-color: #333;
}

nav ul li a:hover {
  background-color: #444;
}

/* Style for the main navigation bar */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

nav ul li {
  float: left;
  position: relative; /* Make dropdown content position relative to this li */
}

nav ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white;
  background-color: #333;
}

nav ul li a:hover {
  background-color: #444;
}

/* Position dropdown container */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 180px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub dropdown inside Useful Links */
.sub-dropdown {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #333;
  min-width: 180px;
  z-index: 1000;
}

.sub-dropdown:hover .sub-menu {
  display: block;
}

/* Menu link styles */
.dropdown-content a, .sub-menu a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover, .sub-menu a:hover {
  background-color: #444;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

.resources-section {
  margin-bottom: 40px;
}

.resources-section h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.link-list {
  list-style: none;
  padding-left: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a {
  color: #007bff;
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}
