/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #0a3d62;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

header h1 {
  font-size: 1.4rem;
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffd32a;
}

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1535223289827-42f1e9919769?w=1600&h=900&fit=crop") no-repeat center center/cover;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffd32a;
  color: #0a3d62;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #ffb400;
  color: #fff;
}

/* Services Section */
.services {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0a3d62;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
  color: #0a3d62;
}

.card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 20px 10%;
  margin-top: 40px;
  font-size: 0.9rem;
}
/* Sub Hero for inner pages */
.sub-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.sub-hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 8px;
}

/* About Section */
.about-section {
  padding: 60px 10%;
  display: flex;
  justify-content: center;
}
.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  color: #0a3d62;
  margin-bottom: 15px;
}
.about-text p {
  margin-bottom: 15px;
  font-size: 1rem;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Values Section */
.values {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 10%;
}
.values h2 {
  margin-bottom: 30px;
  color: #0a3d62;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.value {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.value:hover {
  transform: translateY(-5px);
}
.value h3 {
  margin-bottom: 10px;
  color: #0a3d62;
}
/* Services Page List */
.services-list {
  padding: 60px 10%;
  background: #fff;
}
.services-list .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: center;
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-text {
  padding: 20px;
}
.service-text h3 {
  margin-bottom: 10px;
  color: #0a3d62;
}
.service-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.team {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #2c3e50;
}

.team-member p {
  font-size: 0.9em;
  color: #555;
}
.services {
  padding: 50px 20px;
  text-align: center;
  background: #f4f6f8;
}

.services h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.services .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 10px;
  color: #2c3e50;
}

.service-card p {
  padding: 0 15px 20px;
  font-size: 0.95em;
  color: #555;
}
.contact {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact h1 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact .intro-text {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1em;
  color: #333;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #1a242f;
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Contact Page Styling */
.contact-hero {
  background: url('https://images.unsplash.com/photo-1521790361543-f645cf042ec4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1a237e;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1a237e;
  outline: none;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #1a237e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0d1650;
}

.contact-details {
  text-align: center;
  margin: 40px 20px;
}

.contact-details h2 {
  margin-bottom: 15px;
  color: #1a237e;
}

.contact-details p {
  font-size: 1rem;
  margin: 8px 0;
}
/* Contact Map Section */
.contact-map {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.contact-map h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #003366;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Hero Section */
.contact-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: white;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1521790361543-f645cf042ec4') no-repeat center center/cover;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contact-hero p {
  font-size: 18px;
  position: relative;
  z-index: 1;
}
/* Hero Section */
.contact-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: white;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1521790361543-f645cf042ec4') no-repeat center center/cover;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contact-hero p {
  font-size: 18px;
  position: relative;
  z-index: 1;
}
/* Fixed: blurred background for contact hero */
.contact-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

/* background placed in ::before and blurred */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;                                /* top:0; right:0; bottom:0; left:0; */
  background: url('https://images.unsplash.com/photo-1521790361543-f645cf042ec4') center/cover no-repeat;
  filter: blur(3px) brightness(0.45);     /* adjust blur & darkness as needed */
  transform: scale(1.06);                 /* avoids visible edge artefacts from blur */
  z-index: 0;
  pointer-events: none;
}

/* ensure the hero content is above the blurred bg */
.contact-hero > * {
  position: relative;
  z-index: 1;
}
/* Home Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* background blur for home page */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') center/cover no-repeat;
  filter: blur(3px) brightness(0.45);
  transform: scale(1.06);
  z-index: 0;
  pointer-events: none;
}

/* bring hero content above blurred background */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffcc00;
  color: #003366;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}
/* About Preview */
.about-preview {
  background: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}

.about-preview h2 {
  color: #003366;
  margin-bottom: 15px;
}

.about-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
}

.link-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #003366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.link-btn:hover {
  background: #0055a5;
}

/* Services Section */
.services-home {
  padding: 60px 20px;
  text-align: center;
}

.services-home h2 {
  color: #003366;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 10px;
  color: #003366;
}

.service-card p {
  padding: 0 15px 20px;
}

/* Why Choose Us */
.why-choose {
  background: #003366;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

/* CTA Banner */
.cta-banner {
  background: #ffcc00;
  text-align: center;
  padding: 50px 20px;
}

.cta-banner h2 {
  margin-bottom: 20px;
  color: #003366;
}

.cta-banner .cta-btn {
  background: #003366;
  color: #fff;
}

.cta-banner .cta-btn:hover {
  background: #0055a5;
}

/* Secondary CTA Button */
.cta-btn.secondary {
  background: #fff;
  color: #003366;
  margin-left: 15px;
  border: 2px solid #fff;
}

.cta-btn.secondary:hover {
  background: #003366;
  color: #fff;
}
/* News & Insights Section */
.news {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.news h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #003366;
}

.news .intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h2 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.news-content .date {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.news-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.news-content a {
  display: inline-block;
  padding: 10px 15px;
  background: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.news-content a:hover {
  background: #00509e;
}
/* Reset some browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body */
body {
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #002147; /* Deep blue for professionalism */
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 50px;
  margin-right: 10px;
}

header .logo h1 {
  font-size: 20px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f4a261; /* Accent orange */
}

/* Hero Section */
.hero {
  background: url("https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849825_1280.jpg") center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 33, 71, 0.7); /* Dark overlay */
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #f4a261;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e76f51;
}

/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #002147;
}

/* About Preview */
.about-preview {
  padding: 60px 20px;
  text-align: center;
  background: #eef2f7;
}

.about-preview h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-preview p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

/* Call to Action */
.cta {
  background: #002147;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #f4a261;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }
body { line-height: 1.6; background-color: #f9f9f9; color: #333; }

/* Header */
header { background: #002147; color: #fff; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
header .logo { display: flex; align-items: center; }
header .logo img { width: 50px; margin-right: 10px; }
header .logo h1 { font-size: 20px; font-weight: bold; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #f4a261; }

/* Hero */
.hero { background: url("https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849825_1280.jpg") center/cover no-repeat; height: 80vh; display: flex; justify-content: center; align-items: center; text-align: center; color: white; position: relative; }
.hero::after { content: ""; position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,33,71,0.7); }
.hero-text { position: relative; z-index: 1; max-width: 700px; }
.hero-text h2 { font-size: 3rem; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 20px; }
.btn { background: #f4a261; color: #fff; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background 0.3s; }
.btn:hover { background: #e76f51; }

/* Services */
.services { padding: 60px 20px; text-align: center; background: #fff; }
.services h2 { font-size: 2rem; margin-bottom: 40px; }
.service-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: #f9f9f9; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; color: #002147; }

/* About Preview */
.about-preview { padding: 60px 20px; text-align: center; background: #eef2f7; }
.about-preview h2 { font-size: 2rem; margin-bottom: 20px; }
.about-preview p { max-width: 700px; margin: 0 auto 20px; font-size: 1.1rem; }

/* Latest News */
.latest-news { padding: 60px 20px; text-align: center; background: #fff; }
.latest-news h2 { font-size: 2rem; margin-bottom: 30px; color: #002147; }
.news-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 20px; }
.news-preview article { background: #f9f9f9; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); text-align: left; }
.news-preview h3 { font-size: 20px; color: #003366; margin-bottom: 10px; }
.news-preview p { font-size: 16px; margin-bottom: 10px; }
.news-preview a { font-size: 14px; color: #00509e; text-decoration: none; }
.news-preview a:hover { text-decoration: underline; }

/* Call to Action */
.cta { background: #002147; color: white; padding: 60px 20px; text-align: center; }
.cta h2 { font-size: 2rem; margin-bottom: 20px; }
.cta p { font-size: 1.2rem; margin-bottom: 20px; }

/* Footer */
footer { background: #111; color: #aaa; text-align: center; padding: 20px; }
footer a { color: #f4a261; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width:768px){
  .hero-text h2 { font-size: 2.2rem; }
  .hero-text p { font-size: 1rem; }
}
/* News Hero Banner */
.news-hero {
  background: url("https://images.unsplash.com/photo-1581090700227-4c4b69f1d46f") center/cover no-repeat;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}
.news-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,33,71,0.6);
}
.news-hero-text {
  position: relative;
  z-index: 1;
}
.news-hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.news-hero-text p {
  font-size: 1.2rem;
}

/* News Articles Section */
.news-articles {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-content h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 8px;
}
.news-content .date {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}
.news-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
.news-content a {
  display: inline-block;
  padding: 8px 15px;
  background: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}
.news-content a:hover {
  background: #00509e;
}
/* Projects Hero Banner */
.projects-hero {
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f") center/cover no-repeat;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}
.projects-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,33,71,0.6);
}
.projects-hero-text {
  position: relative;
  z-index: 1;
}
.projects-hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.projects-hero-text p {
  font-size: 1.1rem;
}

/* Projects Section */
.projects-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-content {
  padding: 20px;
}
.project-content h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}
.project-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
}
/* Featured Projects Section */
.featured-projects {
  padding: 60px 20px;
  text-align: center;
  background: #eef2f7;
}
.featured-projects h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002147;
}
.featured-projects .projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}
.featured-projects .project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.featured-projects .project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.featured-projects .project-content {
  padding: 15px;
}
.featured-projects .project-content h3 {
  font-size: 18px;
  color: #003366;
  margin-bottom: 8px;
}
.featured-projects .project-content p {
  font-size: 14px;
  color: #333;
}
footer {
  background: #222;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.social-links {
  margin: 10px 0;
}

.social-links img {
  width: 24px;
  height: 24px;
  margin: 0 5px;
  vertical-align: middle;
}

.policy-links {
  font-size: 0.9em;
  margin-top: 5px;
}
/* Hero Section */
.mission-hero {
  background: url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.mission-hero-text h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.mission-hero-text p {
  font-size: 1.2em;
}

/* Mission Statement */
.mission-statement {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.mission-statement h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.mission-statement p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Mission Goals */
.mission-goals {
  padding: 50px 20px;
  text-align: center;
}

.mission-goals h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.goals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.goal-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.goal-card:hover {
  transform: translateY(-5px);
}

.goal-card h3 {
  margin-bottom: 10px;
  color: #007BFF;
}

/* CEO Quote */
.ceo-quote {
  background-color: #007BFF;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-style: italic;
}

.ceo-quote blockquote {
  max-width: 800px;
  margin: auto;
  font-size: 1.2em;
}

.ceo-quote span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}
/* Hero Section */
.mission-hero {
  background: url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* Ensure text is white */
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* Add shadow for readability */
}

.mission-hero-text h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.mission-hero-text p {
  font-size: 1.2em;
}

/* Mission Statement */
.mission-statement {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
  color: #333333; /* Dark text for readability */
}

/* Mission Goals */
.mission-goals {
  padding: 50px 20px;
  text-align: center;
  color: #333333; /* Dark text */
}

.goal-card {
  background: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.goal-card:hover {
  transform: translateY(-5px);
}

.goal-card h3 {
  margin-bottom: 10px;
  color: #007BFF; /* Blue headings */
}

/* CEO Quote */
.ceo-quote {
  background-color: #007BFF;
  color: #ffffff; /* White text on blue */
  padding: 50px 20px;
  text-align: center;
  font-style: italic;
}

.ceo-quote blockquote {
  max-width: 800px;
  margin: auto;
  font-size: 1.2em;
}

.ceo-quote span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}
/* Mission Statement - Home Page Style */
.mission-statement {
  background: linear-gradient(rgba(0,123,255,0.8), rgba(0,123,255,0.8)), url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  color: #ffffff; /* White text */
  padding: 80px 20px;
  text-align: center;
}

.mission-statement h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* Add shadow for readability */
}

.mission-statement p {
  font-size: 1.2em;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
/* Hero Section (Home Page Style) */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.6); /* Blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.hero-btn {
  background-color: #ffffff;
  color: #007BFF;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  background-color: #007BFF;
  color: #ffffff;
}
/* Hero Section (Home Page Colors) */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.6); /* Same blue as Home page */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #ffffff; /* White text like Home page */
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.3em;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
/* Hero Section */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1526378723405-3d104d0da17d?crop=entropy&cs=tinysrgb&fit=crop&w=1400&h=400&q=80') center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.6); /* Blue like Home page */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.3em;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Mission Statement */
.mission-statement {
  background-color: #007BFF; /* Blue same as Home page */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.mission-statement h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.mission-statement p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Mission Goals */
.mission-goals {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9; /* Light grey for contrast */
  color: #333333;
}

.goal-card {
  background: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.goal-card:hover {
  transform: translateY(-5px);
}

.goal-card h3 {
  margin-bottom: 10px;
  color: #007BFF;
}

/* CEO Quote */
.ceo-quote {
  background-color: #007BFF; /* Blue like Home page */
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-style: italic;
}

.ceo-quote blockquote {
  max-width: 800px;
  margin: auto;
  font-size: 1.2em;
}

.ceo-quote span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}
/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #ffffff; /* White background */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Subtle shadow */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo h1 {
  font-size: 1.8em;
  color: #007BFF; /* Blue branding */
  margin: 0;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1em;
  color: #333333; /* Dark text for contrast */
  padding: 8px 12px;
  transition: color 0.3s, border-bottom 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #007BFF; /* Blue on hover */
  border-bottom: 2px solid #007BFF;
}
/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: -100px; /* For slide-down animation */
  z-index: 1000;
  animation: slideDown 1s forwards;
  transition: background-color 0.3s, padding 0.3s;
}

/* Slide down animation on page load */
@keyframes slideDown {
  to { top: 0; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: logoFade 1.5s ease-in-out;
}

.logo img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: rotate(10deg) scale(1.1); /* subtle hover animation */
}

.logo h1 {
  font-size: 1.8em;
  color: #007BFF;
  margin: 0;
  font-weight: bold;
  opacity: 0;
  animation: fadeInText 2s forwards 0.5s;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1em;
  color: #333333;
  padding: 8px 12px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #007BFF;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover {
  color: #007BFF;
  transform: scale(1.1);
}

/* Animations for logo and text */
@keyframes logoFade {
  0% { opacity: 0; transform: translateX(-20px);}
  100% { opacity: 1; transform: translateX(0);}
}

@keyframes fadeInText {
  to { opacity: 1; }
}

/* Sticky header effect on scroll (optional) */
.main-header.scrolled {
  background-color: #ffffff;
  padding: 10px 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: -100px;
  z-index: 1000;
  animation: slideDown 1s forwards;
  transition: background-color 0.3s, padding 0.3s;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: logoFade 1.5s ease-in-out;
}

.logo img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: rotate(10deg) scale(1.1);
}

.logo h1 {
  font-size: 1.8em;
  color: #007BFF;
  margin: 0;
  font-weight: bold;
  opacity: 0;
  animation: fadeInText 2s forwards 0.5s;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1em;
  color: #333333;
  padding: 8px 12px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #007BFF;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover {
  color: #007BFF;
  transform: scale(1.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #007BFF;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes slideDown { to { top: 0; } }
@keyframes logoFade { 0% { opacity: 0; transform: translateX(-20px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes fadeInText { to { opacity: 1; } }

/* Responsive */
@media screen and (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -2px 0 6px rgba(0,0,0,0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}
.terms {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  color: #333333;
}

.terms h1 {
  text-align: center;
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 30px;
}

.terms h2 {
  color: #007BFF;
  margin-top: 25px;
  margin-bottom: 10px;
}

.terms p {
  line-height: 1.8;
  margin-bottom: 15px;
}
.terms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.terms-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  animation: fadeIn 0.5s ease forwards;
}

.terms-modal-content h2 {
  margin-bottom: 15px;
  color: #007BFF;
}

.terms-modal-content p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.terms-modal-content button {
  padding: 10px 25px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#accept-btn {
  background-color: #007BFF;
  color: white;
}

#accept-btn:hover {
  background-color: #0056b3;
}

#decline-btn {
  background-color: #ccc;
  color: #333;
}

#decline-btn:hover {
  background-color: #999;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
.terms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.terms-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  animation: fadeIn 0.5s ease forwards;
}

.terms-modal-content h2 {
  margin-bottom: 15px;
  color: #007BFF;
}

.terms-modal-content p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.terms-modal-content button {
  padding: 10px 25px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#accept-btn {
  background-color: #007BFF;
  color: white;
}

#accept-btn:hover {
  background-color: #0056b3;
}

#decline-btn {
  background-color: #ccc;
  color: #333;
}

#decline-btn:hover {
  background-color: #999;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
.news-updates {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #f9f9f9;
}

.news-updates h2 {
  text-align: center;
  color: #007BFF;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.news-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.news-card h3 {
  color: #007BFF;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.news-card p {
  color: #333333;
  line-height: 1.6;
}

.news-card a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.news-card a:hover {
  text-decoration: underline;
}
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
/* === News Section Styling === */
.news {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.news h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2c3e50;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-item h2 {
  font-size: 1.3em;
  margin: 15px;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.news-item h2:hover {
  color: #e63946;
}

.news-item p {
  font-size: 1em;
  margin: 0 15px 15px;
  color: #555;
  line-height: 1.5;
}

.news-item a {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 10px 16px;
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.news-item a:hover {
  background: #e63946;
}
/* === News Section Styling with Animations === */
.news {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.news h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2c3e50;
  animation: fadeInDown 1s ease forwards;
}

/* News container grid */
.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Each news card */
.news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInCard 0.8s ease forwards;
}

.news-item:nth-child(1) { animation-delay: 0.3s; }
.news-item:nth-child(2) { animation-delay: 0.5s; }
.news-item:nth-child(3) { animation-delay: 0.7s; }
.news-item:nth-child(4) { animation-delay: 0.9s; }
.news-item:nth-child(5) { animation-delay: 1.1s; }
.news-item:nth-child(6) { animation-delay: 1.3s; }
.news-item:nth-child(7) { animation-delay: 1.5s; }
.news-item:nth-child(8) { animation-delay: 1.7s; }

.news-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover img {
  transform: scale(1.05);
}

.news-item h2 {
  font-size: 1.3em;
  margin: 15px;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.news-item h2:hover {
  color: #e63946;
}

.news-item p {
  font-size: 1em;
  margin: 0 15px 15px;
  color: #555;
  line-height: 1.5;
}

.news-item a {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 10px 16px;
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-item a:hover {
  background: #e63946;
  transform: translateY(-2px);
}

/* === Animations === */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInCard {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* Spinner Styling */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #0077b6; /* Primary color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
  display: none; /* Hidden by default */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.news-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 20px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;               /* Start hidden */
  transform: translateY(30px); /* Start shifted down */
  animation: fadeUp 0.8s forwards; /* Trigger animation */
}

.news-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Hover effect */
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Fade-in + Slide-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* News Container */
#news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px;
  background: #f9f9fb;
}

/* News Card */
.news-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 360px;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

/* Card hover effect */
.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* News Image */
.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Title */
.news-item h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Date */
.news-item p:first-of-type {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

/* Description */
.news-item p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

/* Read More button */
.news-item a {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.news-item a:hover {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spinner */
#spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

#spinner div {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #1a237e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* News Section Layout */
#news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 50px;
  background: #f9f9fb;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  #news-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #news-container {
    grid-template-columns: 1fr;
  }
}

/* News Card */
.news-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

/* Hover Effect */
.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* News Image */
.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Title */
.news-item h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Date */
.news-item p:first-of-type {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

/* Description */
.news-item p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Read More Button */
.news-item a {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.news-item a:hover {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spinner Loader */
#spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

#spinner div {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #1a237e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Update Feed Button */
#refresh-news {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#refresh-news:hover {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  transform: scale(1.05);
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a237e;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 90%;
  max-width: 500px;
  z-index: 1000;
  animation: slideUp 0.6s ease;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

.cookie-banner a {
  color: #ffeb3b;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: #43a047;
  color: white;
}

#accept-cookies:hover {
  background: #2e7d32;
}

#decline-cookies {
  background: #e53935;
  color: white;
}

#decline-cookies:hover {
  background: #b71c1c;
}

/* Animation */
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 50px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
/* Fullscreen Cookie Overlay */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 30, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.cookie-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeInScale 0.6s ease;
}

.cookie-box h2 {
  margin-bottom: 15px;
  color: #1a237e;
}

.cookie-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

.cookie-box a {
  color: #1a237e;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: #43a047;
  color: white;
}

#accept-cookies:hover {
  background: #2e7d32;
}

#decline-cookies {
  background: #e53935;
  color: white;
}

#decline-cookies:hover {
  background: #b71c1c;
}

/* Animation */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.cookie-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  animation: fadeIn 0.5s ease-in-out;
}

.cookie-box h2 {
  margin-bottom: 15px;
  color: #222;
}

.cookie-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
}

.cookie-box a {
  color: #007BFF;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: space-around;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.accept {
  background: #28a745;
  color: #fff;
}

.decline {
  background: #dc3545;
  color: #fff;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* Terms Hero Section */
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.terms-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: bold;
  animation: fadeInDown 1.2s ease-in-out;
}

.terms-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hide nav links by default on mobile */
@media screen and (max-width: 768px) {
  nav#nav-menu {
    display: none;
    position: absolute;
    top: 70px; /* below header */
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav#nav-menu.active {
    display: flex;
  }

  nav#nav-menu ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  nav#nav-menu ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #333;
    transition: 0.3s;
  }
}

/* Desktop */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
  nav#nav-menu {
    display: flex !important;
  }
  nav#nav-menu ul {
    flex-direction: row;
  }
  nav#nav-menu ul li {
    margin: 0 15px;
  }
}
/* Header Styling */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff; /* White background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header .logo {
  display: flex;
  align-items: center;
}

.main-header .logo img {
  height: 50px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.main-header .logo img:hover {
  transform: scale(1.1);
}

.main-header .logo h1 {
  font-size: 22px;
  color: #333;
  margin: 0;
}

/* Desktop Navigation */
nav#nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav#nav-menu ul li {
  margin-left: 20px;
}

nav#nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

nav#nav-menu ul li a:hover {
  color: #007BFF; /* Home page primary color */
  transform: scale(1.05);
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s;
}

/* Mobile & Tablet */
@media screen and (max-width: 768px) {
  nav#nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideDown 0.4s ease forwards;
  }

  nav#nav-menu.active {
    display: flex;
  }

  nav#nav-menu ul {
    flex-direction: column;
  }

  nav#nav-menu ul li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger animation when clicked */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Slide-down animation */
@keyframes slideDown {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.dropbtn {
  background: #007BFF;
  color: white;
  padding: 12px 16px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.dropbtn:hover {
  background: #0056b3;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown when active */
.dropdown.show .dropdown-content {
  display: block;
}
/* Dropdown Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #004080;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.dropbtn:hover {
  background-color: #0066cc;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content.show {
  display: block;
}
.about-text {
  text-align: center;
  max-width: 800px;  /* keeps it neat */
  margin: 0 auto;    /* centers the block itself */
  line-height: 1.6;  /* improves readability */
  font-size: 1.1rem; /* slightly larger text */
}
.about-text p {
  margin-bottom: 15px;
}
/* About Section Styling */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-text {
  text-align: center;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #333;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}
/* About Section Styling */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;   /* take full screen height */
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-section .container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 20px;
  }

  .about-section .container {
    padding: 20px 15px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}
/* About Section Styling */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;   /* Full screen height on desktop */
  padding: 40px 20px;
  background: #f9f9f9;
}

.about-section .container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  /* Center text vertically inside */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Desktop card height */
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Tablet */
@media (max-width: 768px) {
  .about-section {
    padding: 20px;
  }

  .about-section .container {
    padding: 25px 15px;
    min-height: 400px; /* Smaller height for tablets */
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-section .container {
    min-height: 350px; /* Even smaller height for phones */
    padding: 20px 15px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}




