/* Base Styles */
:root {
  --primary-color: #1e3a8a; /* Deep navy blue */
  --primary-dark: #142a62;
  --primary-light: #2c4ba3;
  --secondary-color: #e2b93b; /* Gold accent */
  --secondary-dark: #c9a22f;
  --secondary-light: #f0cb5c;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --max-width: 1200px;
  --box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(30, 58, 138, 0.1);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(30, 58, 138, 0.15);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary-color);
  box-shadow: 0 4px 6px rgba(226, 185, 59, 0.1);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 18px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Update logo styling */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.logo h1 {
  display: none; /* Hide the text since it's already in the logo */
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 35px;
  }

  .logo h1 {
    font-size: 1rem;
  }
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 25px;
  position: relative;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/hero-bg.jpg") no-repeat center
    center / cover;
  color: #fff;
  padding: 180px 0 100px;
  text-align: center;
  margin-top: 70px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-preview {
  padding: 80px 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: #444;
}

.about-text .btn {
  margin-top: 15px;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: auto;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain */
  position: absolute;
  top: 0;
  left: 0;
}

.service-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(30, 58, 138, 0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 20px 20px 15px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 12px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.service-card ul {
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.service-card .btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Values Section */
.values {
  padding: 80px 0;
  background-color: #fff;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  padding: 15px;
  border-radius: var(--border-radius);
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
}

.value-text {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

.values-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Beliefs Section */
.beliefs {
  padding: 80px 0;
  background-color: #f9fafb;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.belief-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.belief-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.belief-box h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 12px;
}

.belief-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.belief-box ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.belief-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background-color: #fff;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-box,
.vision-box {
  background-color: #f9fafb;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-box h3,
.vision-box h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 12px;
}

.mission-box h3::after,
.vision-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.mission-box ul {
  margin-bottom: 15px;
}

.mission-box li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.mission-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.vision-box p {
  margin-bottom: 20px;
  color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background-color: #f9fafb;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.choose-us-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.choose-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

.choose-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.choose-us-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 12px;
}

.choose-us-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.choose-us-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.choose-us-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Call to Action */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/5.jpg-nzzlbEOd7wB4OWfSRfvUTPf1G4f7IY.jpeg") no-repeat
    center center / cover;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

.cta .btn {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(226, 185, 59, 0.2);
}

.cta .btn:hover {
  background-color: var(--secondary-dark);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 70px 0 20px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 700;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-contact h3,
.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer-contact h3::after,
.footer-links h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  margin-right: 12px;
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 20px;
}

/* Footer Management Team */
.footer-management h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer-management h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.management-contact {
  margin-bottom: 20px;
}

.management-contact:last-child {
  margin-bottom: 0;
}

.management-contact .manager-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

.management-contact .manager-position {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.management-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.management-contact i {
  margin-right: 12px;
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  padding: 0 12px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Page Banner */
.page-banner {
  height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero-bg.jpg") no-repeat center
    center / cover;
  position: relative;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Page */
.services-intro {
  padding: 50px 0;
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.service-detail {
  padding: 70px 0;
}

.service-detail.alt-bg {
  background-color: #f9fafb;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.service-header .service-icon {
  font-size: 2.5rem;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.service-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.service-image {
  height: auto;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain */
  position: absolute;
  top: 0;
  left: 0;
}

.service-list ul li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 30px;
  color: #555;
}

.service-list ul li i {
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 5px;
}

/* Contact Page */
.contact-section {
  padding: 70px 0;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.contact-info h2::after,
.contact-form h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.contact-info p {
  margin-bottom: 25px;
  color: #555;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.info-content p {
  color: #555;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Add styling for social contact section on contact page */
.social-contact {
  margin-top: 40px;
}

.social-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  color: var(--primary-color);
}

.social-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.social-contact .social-icons {
  display: flex;
  gap: 15px;
}

.social-contact .social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-contact .social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.map-section {
  padding-bottom: 70px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .about-content,
  .values-content,
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image,
  .values-image {
    order: -1;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2,
  .service-header h2,
  .cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2,
  .service-header h2,
  .cta h2 {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 12px 25px;
    font-size: 16px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-header .service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Fix image sizing on services page */
.service-detail .service-image {
  height: auto;
  min-height: 300px;
}

.service-detail .service-image img {
  object-fit: contain;
}

/* Add styles for the management team section */

/* Management Team Section */
.management-team {
  margin-top: 60px;
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.management-team h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.management-team h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #f9fafb;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.member-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.member-details h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-details .position {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.member-details p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: #555;
}

.member-details i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 16px;
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .member-details p {
    justify-content: center;
  }
}

/* Add styles for the leadership section on the About page */

/* Leadership Section */
.leadership {
  background-color: #f9fafb;
}

.leadership-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.leader-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.leader-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.leader-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.leader-card .position {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.leader-card .leader-contact {
  margin-bottom: 5px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-card .leader-contact i {
  margin-right: 8px;
  color: var(--primary-color);
}
