/* ===============================
   Global Styles
================================= */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

/* Custom Green Theme */
.bg-green {
  background-color: #008000 !important; /* pure green */
}

/* ===============================
   Header & Logo
================================= */
.logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}

/* ===============================
   Navbar
================================= */
.navbar {
  font-size: 1rem;
}

.navbar .nav-link {
  color: #fff !important;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ffd700 !important; /* gold hover */
}

/* ===============================
   Carousel
================================= */
.carousel-inner img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-inner img {
    height: 250px;
  }
}

/* ===============================
   Contact Banner
================================= */
.contact-banner {
  background-color: #008000;
  padding: 2rem;
  border-radius: 12px;
}

/* ===============================
   Mentor Section
================================= */
.mentor-section {
  background-size: cover;
  background-position: center;
  padding: 2rem;
  color: #fff;
}

.mentor-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
}

.mentor-bio {
  flex: 2;
}

.mentor-profile {
  flex: 1;
  text-align: center;
}

.mentor-image {
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* ===============================
   CMD Section
================================= */
.cmd-section {
  padding: 2rem;
}

.cmd-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.cmd-image {
  flex: 1;
  text-align: center;
}

.cmd-image img {
  max-width: 200px;
  border-radius: 12px;
}

.cmd-details {
  margin-top: 1rem;
}

.cmd-message {
  flex: 2;
}

/* ===============================
   News Ticker
================================= */
.news-ticker {
  background: black;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: bold;
}

.news-text {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===============================
   Footer
================================= */
.footer-section {
  background: #008000;
  color: #fff;
  padding: 2rem 1rem;
}

.footer-section a {
  color: #ffd700;
}

.footer-section .social-icon ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.footer-section .social-icon ul li {
  display: inline-block;
  margin: 0 8px;
}

.footer-section .social-icon ul li a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-section .social-icon ul li a:hover {
  color: #ffd700;
}

.footer-section .seperator-in-footer {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 1rem 0;
}

.footer-section .copyright {
  font-size: 0.9rem;
}

/* ===============================
   Responsive Fixes
================================= */
@media (max-width: 768px) {
  .company-name {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0.5rem;
  }

  .mentor-container,
  .cmd-container {
    flex-direction: column;
    text-align: center;
  }

  .cmd-message {
    text-align: justify;
  }
}
