body {
  font-family: 'Roboto', sans-serif;
  background-color: #F5FFFA;
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  background-color: #ffffff !important;
}

.navbar .navbar-brand {
  color: #333333 !important;
}

.navbar .nav-link {
  color: #333333 !important;
}

.navbar .nav-link:hover {
  color: #FF6F00 !important;
}

/* Hero Section */
.hero-image-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/hero1.jpg') no-repeat center center/cover;
}

.hero-image-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.25rem;
}

.btn-primary {
  background-color: #FF6F00;
  border-color: #FF6F00;
}

.btn-primary:hover {
  background-color: #FFA040;
  border-color: #FFA040;
}

.section-title {
  color: #FF6F00;
  font-size: 2.5rem;
}

.full-height-section {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-body {
  padding: 1.5rem;
}

.card-body i {
  color: #FF6F00;
}

.card-body h5 {
  margin-top: 0.5rem;
}

.card-body p {
  color: #555;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
}

.footer p {
  color: #333333;
}

.footer .small {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  background-color: #fdf7f1;
}

.about-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon i {
  color: #FF6F00;
  opacity: 0.9;
}

.blockquote {
  font-size: 1.25rem;
  border-left: 5px solid #FF6F00;
  padding-left: 1rem;
}

ul li i {
  color: #FF6F00;
}

/* Text colors */
.text-orange {
  color: #FF6F00 !important;
}

.text-orange:hover {
  color: #FFA040 !important;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Variables */
:root {
  --about-bg-color: #fdf7f1; /* Matches your about section */
  --card-height: 220px;
  --icon-color: #FF6F00;
}

/* Flip Cards */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: var(--card-height);
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.flip-card-front {
  background-color: #ffffff;
}

.flip-card-back {
  background-color: var(--about-bg-color);
  transform: rotateY(180deg);
}

/* Flip Card Content */
.flip-card-front i,
.flip-card-back i {
  color: var(--icon-color);
  font-size: 48px;
  margin-bottom: 20px;
}

.flip-card-front h5,
.flip-card-back h5 {
  margin-bottom: 10px;
  color: #333333;
}

.flip-card-front p,
.flip-card-back p {
  font-size: 0.95rem;
  color: #555555;
  padding: 0 10px;
}

/* Row and column tweaks for flip cards */
.row-cols-1 .col,
.row-cols-md-2 .col,
.row-cols-lg-4 .col {
  display: flex;
  align-items: stretch;
}

.row-cols-1 .col > .flip-card,
.row-cols-md-2 .col > .flip-card,
.row-cols-lg-4 .col > .flip-card {
  width: 100%;
}

/* Flip Card Hover for Desktop */
@media (min-width: 768px) {
  .flip-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}

/* Responsive Flip Card Height */
@media (max-width: 767px) {
  :root {
    --card-height: 250px;
  }
}

.about-image {
  max-width: 100%;
  height: auto;
  /* Optional styles for effect */
  background-color: transparent; /* Ensure no background */
}
