
/* ================ Base Styles ================ */
:root {
  --primary-color: #d2b48c;
  --primary-dark: #b8860b;
  --secondary-color: #333;
  --light-color: #f9f9f9;
  --dark-color: #000;
  --text-color: #333;
  --text-light: #777;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--dark-color);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* ================ Header Styles ================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--primary-color);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo img {
  height: 45px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: var(--transition);
}

/* ================ Hero Section ================ */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 80px; 
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%); 
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ================ Philosophy Section ================ */
.philosophy-section {
  padding: 4rem 2rem;
  background-color: white;
}

.philosophy-container, .team-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.philosophy-scroller-container, .team-scroller-container {
  position: relative;
  padding: 0 50px;
}

.philosophy-scroller, .team-scroller {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.philosophy-scroller::-webkit-scrollbar, .team-scroller::-webkit-scrollbar {
  display: none;
}

.philosophy-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: white;
  border: 1px solid rgba(210, 180, 140, 0.3);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.philosophy-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.scroller-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  pointer-events: auto;
}

.scroll-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}



/* ================ About Section ================ */
.about-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  position: relative;
}

.about-container {
  max-width: 1400px;
  padding: 0 30px;
  margin: auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  order: 2;
  grid-column: span 3;
}

/*No use at the moment*/
/* Text Content - Left Side */
/*.about-text {
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(210, 180, 140, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
*/

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #d2b48c;
}

.section-description {
  font-size: 1.1rem;
  color: #777777;
  margin-bottom: 0;
}

.about-subtitle {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem 0;
  color: #000000;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.about-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #d2b48c;
}

.about-text p {
  margin-bottom: 1.8rem;
  line-height: 1.8;
  color: #333333;
  font-size: 1.05rem;
}

/* Image - Right Side */
.about-image {
  grid-column: span 2;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 3/4;
  /* max-width: 400px; */
  max-height: 480px;
  order: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Team Section */
.team-section {
  margin-top: 4rem;
  grid-column: 1 / -1; 
  order: 3;
}

.team-title {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #000000;
  position: relative;
}

.team-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #d2b48c;
}

/* .team-scroller-container {
  position: relative;
  padding: 0 50px;
} */

/* .team-scroller {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.team-scroller::-webkit-scrollbar {
  display: none;
} */

.team-scroller-controls .scroll-btn {
  background-color: transparent;
  color: #d2b48c;
}

.team-scroller-controls .scroll-left {
  padding-right: 1rem;
}

.team-scroller-controls .scroll-right {
  padding-left: 1rem;
}

.team-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: white;
  border: 1px solid rgba(210, 180, 140, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #d2b48c;
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.8rem;
  border: 5px solid #d2b48c;
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.team-card .role {
  color: #b8860b;
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.team-card .message {
  font-style: italic;
  color: #d2b48c;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* .scroller-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d2b48c;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
  background-color: #b8860b;
  transform: scale(1.1);
} */

/* ================ Responsive Styles ================ */
@media (max-width: 1200px) {
  .about-container {
    max-width: 1000px;
  }
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image {
    max-width: 100%;
    aspect-ratio: 16/9;
    justify-self: center;
    order: -1;
  }
  
  .about-text {
    padding: 2.5rem;
    height: auto;
  }
  
  .team-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }
  
  .about-text {
    padding: 2rem;
  }
  
  .team-scroller-container {
    padding: 0 30px;
  }
  
  .team-title {
    font-size: 2rem;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 576px) {
  .about-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-subtitle {
    font-size: 1.6rem;
    margin: 2rem 0 1.2rem 0;
  }
  
  .team-card {
    flex: 0 0 280px;
    padding: 2rem;
  }
  
  .team-card img {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
  }
  
  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .about-text {
    padding: 1.8rem;
  }
  
  .team-card {
    flex: 0 0 260px;
  }
}
/* ================ Contact Section ================ */
.contact-section {
  padding: 4rem 2rem;
  background-color: white;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(210, 180, 140, 0.3);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 0.5rem;
}

.info-card a {
  color: var(--primary-dark);
  font-weight: 500;
}

.contact-form {
  background: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(210, 180, 140, 0.3);
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  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(210, 180, 140, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}



/* ================ Footer ================ */
.main-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-mission {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.link-group {
  margin-bottom: 1.5rem;
}

.link-group h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.link-group ul {
  display: grid;
  gap: 0.8rem;
}

.link-group a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 1rem;
}

.newsletter input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================ Back to Top Button ================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ================ Responsive Styles ================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .team-section {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--dark-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-brand {
    max-width: 100%;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .philosophy-scroller-container {
    padding: 0 20px;
  }
  
  .philosophy-card {
    flex: 0 0 280px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
}


/* Dark Mode Styles for MONK FUSION */
/* Slider Container */
.dark-mode-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

/* Hide the actual checkbox */
.dark-mode-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider Track */
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

/* Slider Circle */
.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Icons inside slider */
.toggle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: 0.4s;
  pointer-events: none;
}

/* Moon on left */
.toggle-icon.moon {
  left: 8px;
  color: #333;
}

/* Sun on right */
.toggle-icon.sun {
  right: 8px;
  color: #f6c2a6;
  opacity: 0;
}

/* When Checked (Dark Mode Active) */
.dark-mode-switch input:checked + .slider {
  background-color: #666;
}

/* Move the Circle */
.dark-mode-switch input:checked + .slider::before {
  transform: translateX(30px);
}

/* Show the Sun, Hide Moon when active */
.dark-mode-switch input:checked + .slider .sun {
  opacity: 1;
}

.dark-mode-switch input:checked + .slider .moon {
  opacity: 0;
}




body.dark-mode .contact-form {
  background: #1e1e1e; 
  color: #f1f1f1; 
  border: 1px solid #333; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

body.dark-mode .form-group label {
  color: #f1f1f1;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
  background: #2c2c2c; 
  color: #f1f1f1;
  border: 1px solid #555;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
  border-color: #8ab4f8; 
  box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.3);
}



.dark-mode .toggle-icon.moon {
  color: #ff9800;
}

.dark-mode .toggle-icon.sun {
  color: #f6c2a6;
}



body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode header,
.dark-mode footer,
.dark-mode .philosophy-section,
.dark-mode .about-section,
.dark-mode .contact-section {
  background-color: #1e1e1e;
}

.dark-mode .nav-link {
  color: #e0e0e0;
}

.dark-mode .nav-link.active {
  color: #ff9800;
}

.dark-mode .hero {
  background: #1e1e1e;
}

.dark-mode .hero-title,
.dark-mode .hero-subtitle {
  color: #ffffff;
}

.dark-mode .btn-primary {
  background-color: #ff9800;
  color: #121212;
}

.dark-mode .btn-secondary {
  background-color: transparent;
  border: 1px solid #ff9800;
  color: #ff9800;
}

.dark-mode .philosophy-card,
.dark-mode .team-card,
.dark-mode .info-card {
  background-color: #2c2c2c;
  border: 1px solid #3d3d3d;
  color: #e0e0e0;
}

.dark-mode .about-text h3,
.dark-mode .about-section p,
.dark-mode .about-section li,
.dark-mode .about-section span {
  color: #f5f5f5; 
}

.dark-mode .about-section h2,
.dark-mode .about-section h3 {
  color: #ffb74d; 
}
.dark-mode .section-title,
.dark-mode .section-description,
.dark-mode .about-subtitle,
.dark-mode .team-title,
.dark-mode .contact-content h3 {
  color: #ffa726;
}

.dark-mode .newsletter-form input {
  background-color: #2c2c2c;
  color: #e0e0e0;
  border: 1px solid #3d3d3d;
}

.dark-mode .newsletter-form button {
  background-color: #ff9800;
  color: #121212;
}

.dark-mode .back-to-top {
  background-color: #ff9800;
  color: #121212;
}

.dark-mode .social-links a {
  color: #ff9800;
}

.dark-mode .menu-bar {
  background-color: #e0e0e0;
}

/* Dark Mode Styles for Philosophy Section Icons */
body.dark-mode .philosophy-card i {
  color: #ffb74d; 
}

body.dark-mode .philosophy-card:hover i {
  color: #ff9800; 
}







