/* resources/css/app.css */

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary: #2E7D32;
  --primary-light: #4CAF50;
  --primary-dark: #0d4811;
  --secondary: #FFC107;
  --text-dark: #212121;
  --text-light: #757575;
  --background: #F5F7FA;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 2rem 0;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 5%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  margin-left: 20px;
  height: auto;
  margin-right: 1rem;
}

.logo-text {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  position: relative;
  margin: 0 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.8rem 1rem;
  display: block;
  transition: var(--transition);
}

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

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  width: 220px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
  padding: 0.5rem 0;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 0.8rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown a:hover {
  background: rgba(76, 175, 80, 0.1);
}

/* Particles */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url('fti1.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* News Section */
.news-announcements {
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.news-announcements h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.news-announcements marquee {
  font-weight: 500;
}

.news-announcements ul {
  list-style: none;
  display: inline-block;
  white-space: nowrap;
}

.news-announcements li {
  display: inline-block;
  margin-right: 3rem;
  position: relative;
  padding-left: 25px;
}

.news-announcements li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Card Design */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Dress Code Section */
.dress-code {
  background: var(--white);
  padding: 4rem 0;
}

.dress-code-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dress-code-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.dress-code-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.dress-code-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.dress-code-item h3 i {
  margin-right: 0.5rem;
}

/* Director Message */
.director-message {
  background: var(--white);
  padding: 5rem 0;
}

.director-message .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.director-message .image-container {
  flex: 1;
}

.director-message .text-container {
  flex: 1;
}

.director-message img {
  width: 80%;
  margin-left: 10%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Trainer's Day */
.trainer-day-schedule {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trainer-day-schedule th,
.trainer-day-schedule td {
  padding: 1rem;
  text-align: left;
}

.trainer-day-schedule th {
  background: var(--primary);
  color: var(--white);
}

.trainer-day-schedule tr:nth-child(even) {
  background: rgba(76, 175, 80, 0.05);
}

/* Facilities */
.facilities {
  background: var(--background);
}

/* Contact */
/* Contact Section */
/* Contact Section */
.contact {
background: var(--white);
}

.contact .container {
max-width: 1200px; /* Adjust as needed */
}

.contact-grid {
display: grid;
/* grid-template-columns: 1fr 1fr; Two columns by default */
gap: 3rem;
}

.contact-subtitle {
margin-bottom: 1.5rem;
color: var(--primary-dark);
}

.contact-info p {
margin-bottom: 0.75rem;
display: flex;
align-items: center;
}

.contact-icon {
color: var(--primary);
margin-right: 10px;
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(76, 175, 80, 0.1); /* Use rgba for transparency */
color: var(--primary);
border-radius: 50%;
transition: all 0.3s ease;
text-decoration: none;
}

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

.contact-form input,
.contact-form textarea {
padding: 1rem;
margin-bottom: 1rem;
border: 1px solid #ddd;
border-radius: var(--border-radius);
font-family: inherit;
font-size: 1rem; /* Match size with other sections */
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--primary);
}

.contact-form textarea {
min-height: 150px;
}

.btn-contact {
/* Inherits styling from .btn but can have specific modifications */
background: var(--primary);
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: var(--border-radius);
font-weight: 600;
transition: var(--transition);
cursor: pointer;
}

.btn-contact:hover {
background: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Mobile Responsive Styling */
@media (min-width: 769px) {
.contact-grid {
  grid-template-columns: 1fr 2fr; /* 1/3 for info, 2/3 for form */
}
}

@media (max-width: 768px) {
.contact-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
}

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

.social-links {
    justify-content: center; /* Center social links on mobile */
}

.contact form {
  max-width: 90%;
}
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
.contact-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
}

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

.social-links {
    justify-content: center; /* Center social links on mobile */
}

.contact form {
  max-width: 90%;
}
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

.copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 1rem 0;
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.8rem;
}

.mobile-nav a i {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.hero-parallax {
position: relative;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.parallax-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
}

.layer-bg {
background-image: url('fti.jpg');
z-index: 1;
}

.layer-mid {
background-image: url('fti1.jpg');
background-size: cover;
z-index: 2;
}

.layer-fore {
background-image: url('forest-fore.png');
background-size: cover;
z-index: 3;
}

.hero-content {
position: relative;
z-index: 4;
text-align: center;
color: white;
padding: 2rem;
background: rgba(0,0,0,0.4);
border-radius: 15px;
backdrop-filter: blur(5px);
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.1);
}

.btn-glow {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
background: var(--primary);
}

.btn-glow:before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
transform: rotate(45deg);
animation: glow 3s infinite;
}

@keyframes glow {
0% { left: -50%; }
100% { left: 100%; }
}



.gallery-section {
background-color: #f9f9f9;
padding: 5rem 0;
}

.gallery-filters {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}

.filter-btn {
background: none;
border: 2px solid var(--primary);
color: var(--primary);
padding: 0.5rem 1.5rem;
border-radius: 30px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
background-color: var(--primary);
color: white;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-auto-rows: 250px;
grid-auto-flow: dense;
gap: 1.5rem;
}

.gallery-item {
overflow: hidden;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item.large {
grid-row: span 2;
grid-column: span 2;
}

.gallery-image {
height: 100%;
position: relative;
overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
transform: scale(1.1);
}

.image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
opacity: 0;
display: flex;
align-items: flex-end;
padding: 1.5rem;
transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
opacity: 1;
}

.overlay-content {
color: white;
}

.overlay-content h3 {
margin: 0 0 0.5rem 0;
font-size: 1.2rem;
}

.overlay-content p {
margin: 0;
font-size: 0.9rem;
opacity: 0.8;
}

.gallery-zoom {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary);
color: white;
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-top: 1rem;
transition: all 0.3s ease;
}

.gallery-zoom:hover {
background: white;
color: var(--primary);
transform: scale(1.1);
}

.btn-outline {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
padding: 0.8rem 2rem;
font-weight: 500;
border-radius: 50px;
transition: all 0.3s ease;
}

.btn-outline:hover {
background: var(--primary);
color: white;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-section {
background: linear-gradient(to bottom, #f9f9f9, #ffffff);
padding: 6rem 0;
position: relative;
}

.section-subtitle {
text-align: center;
color: var(--text-muted);
margin-bottom: 3rem;
font-size: 1.1rem;
}

.timeline {
position: relative;
max-width: 1200px;
margin: 4rem auto;
padding: 20px 0;
}

.timeline-line {
content: '';
position: absolute;
width: 4px;
background-color: var(--primary);
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0, 128, 0, 0.3);
}

.timeline-line:before,
.timeline-line:after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 20px;
background: var(--primary);
border-radius: 50%;
}

.timeline-line:before {
top: -10px;
}

.timeline-line:after {
bottom: -10px;
}

.timeline-item {
padding: 10px 40px;
position: relative;
width: 50%;
box-sizing: border-box;
margin-bottom: 60px;
}

.timeline-item:last-child {
margin-bottom: 0;
}

.timeline-item:before {
content: attr(data-month);
position: absolute;
width: 50px;
height: 50px;
background: var(--primary);
border-radius: 50%;
top: 15px;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.8rem;
z-index: 2;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timeline-item:after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -17px;
top: 28px;
background: white;
border: 4px solid var(--primary);
border-radius: 50%;
z-index: 1;
}

.timeline-item.right {
left: 50%;
}

.timeline-item:not(.right) {
left: 0;
}

.timeline-item:not(.right):before {
right: -25px;
}

.timeline-item.right:before {
left: -25px;
}

.timeline-item.right:after {
left: -17px;
}

.timeline-content {
padding: 25px;
background: white;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border-left: 5px solid var(--primary);
}

.timeline-item.right .timeline-content {
border-left: none;
border-right: 5px solid var(--primary);
}

.timeline-content:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(to right, var(--primary), transparent);
opacity: 0.3;
}

.timeline-item.right .timeline-content:before {
background: linear-gradient(to left, var(--primary), transparent);
}

.timeline-content:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-date {
color: white;
background: var(--primary);
display: inline-block;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 15px;
}

.timeline-title {
margin: 0 0 10px 0;
font-size: 1.4rem;
color: var(--primary-dark);
}

.timeline-details {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 15px;
}

.timeline-tag {
background: rgba(0, 128, 0, 0.1);
color: var(--primary-dark);
padding: 3px 10px;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 500;
}

.timeline-desc {
margin-bottom: 20px;
color: var(--text);
line-height: 1.6;
}

.timeline-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto;
}

.timeline-btn {
display: inline-block;
padding: 8px 20px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s;
}

.timeline-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

.timeline-participants {
font-size: 0.9rem;
color: var(--text-muted);
}

.timeline-participants i {
margin-right: 5px;
color: var(--primary);
}

/* Animation for timeline items */
.timeline-item {
opacity: 0;
transition: all 0.5s ease;
}

.timeline-item.animate {
opacity: 1;
}

/* Timeline tree effect */
.timeline-line {
background: linear-gradient(to bottom, 
    var(--primary) 5%, 
    rgba(0, 128, 0, 0.8) 20%,
    rgba(0, 160, 0, 0.6) 40%,  
    rgba(0, 192, 0, 0.5) 60%,
    rgba(0, 222, 0, 0.4) 80%,
    rgba(0, 255, 0, 0.3) 100%);
}

/* Special markers for seasonal changes */
.timeline-item[data-month="MAR"]:after,
.timeline-item[data-month="JUN"]:after,
.timeline-item[data-month="SEP"]:after,
.timeline-item[data-month="DEC"]:after {
background: #f8f8f8;
border: 4px solid #ff8800;
}

/* Responsive styling */
@media screen and (max-width: 992px) {
.timeline-line {
    left: 50px;
}

.timeline-item {
    width: 100%;
    padding-left: 100px;
    padding-right: 20px;
}

.timeline-item.right {
    left: 0;
}

.timeline-item:before {
    left: 25px !important;
    right: auto !important;
}

.timeline-item:after {
    left: 34px !important;
    right: auto !important;
}

.timeline-item .timeline-content,
.timeline-item.right .timeline-content {
    border-left: 5px solid var(--primary);
    border-right: none;
}

.timeline-item .timeline-content:before,
.timeline-item.right .timeline-content:before {
    background: linear-gradient(to right, var(--primary), transparent);
}
}
/* Dress Code Section Styling */
.dress-code {
background-color: #f9f9f9;
padding: 5rem 0;
}

/* Tabs Navigation */
.dress-code-tabs {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.tabs-header {
display: flex;
background: #044a16;
overflow-x: auto;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
}

.tabs-header::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}

.tab-btn {
flex: 1;
min-width: fit-content;
padding: 15px;
background: transparent;
border: none;
color: white;
font-weight: 500;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
opacity: 0.7;
transition: all 0.3s ease;
position: relative;
}

.tab-btn i {
font-size: 1.5rem;
margin-bottom: 5px;
}

.tab-btn:hover {
opacity: 1;
background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
opacity: 1;
background: rgba(255, 255, 255, 0.2);
}

.tab-btn.active::after {
content: '';
position: absolute;
bottom: 0;
left: 25%;
width: 50%;
height: 3px;
background: white;
border-radius: 3px 3px 0 0;
}

/* Tab Content */
.tabs-content {
padding: 30px;
min-height: 400px;
}

.tab-content {
display: none;
animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
display: block;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

/* Uniform Display */
.uniform-display {
display: flex;
align-items: stretch;
gap: 30px;
}

.uniform-illustration {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}

.uniform-svg {
max-width: 300px;
height: auto;
}

.uniform-details {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.uniform-details h3 {
color: #044a16;
margin-bottom: 20px;
font-size: 1.5rem;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 10px;
}

.uniform-checklist {
list-style: none;
padding: 0;
}

.uniform-checklist li {
margin-bottom: 10px;
display: flex;
align-items: center;
}

.uniform-checklist li i {
color: #044a16;
margin-right: 10px;
font-size: 1.1rem;
}

/* Mess Tab Specific Styling */
.mess-uniform {
flex-wrap: wrap;
justify-content: space-around;
}

.uniform-section {
text-align: center;
padding: 20px;
background: #f5f5f5;
border-radius: 10px;
flex: 1;
min-width: 200px;
margin: 10px;
}

.uniform-section h4 {
color: #044a16;
margin-bottom: 15px;
}

.uniform-svg-small {
max-width: 150px;
height: auto;
margin: 0 auto 15px;
display: block;
}

.uniform-svg-tiny {
width: 80px;
height: auto;
margin: 0 auto;
}

.uniform-svg-medium {
width: 120px;
height: auto;
margin: 0 auto;
}

.small-list {
list-style: none;
padding: 0;
text-align: left;
font-size: 0.9rem;
}

.small-list li {
margin-bottom: 5px;
}

.option-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.option {
display: flex;
align-items: center;
gap: 10px;
}

/* Two Columns Layout for PT Tab */
.two-columns {
flex-direction: row;
flex-wrap: wrap;
}

.column {
flex: 1;
min-width: 300px;
}

.gender-options {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}

.gender-option {
flex: 1;
min-width: 120px;
text-align: center;
padding: 15px;
background: #f5f5f5;
border-radius: 10px;
}

.gender-option h5 {
color: #044a16;
margin-bottom: 10px;
}

/* Notes and Warnings */
.dress-code-notes {
margin-top: 30px;
}

.dress-note {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 15px;
background: #f0f7f0;
border-left: 4px solid #044a16;
border-radius: 0 5px 5px 0;
margin-bottom: 15px;
}

.dress-note i {
color: #044a16;
font-size: 1.2rem;
margin-top: 3px;
}

.dress-note.warning {
background: #fff0f0;
border-left-color: #d32f2f;
}

.dress-note.warning i {
color: #d32f2f;
}

/* Key Points Section */
.key-points-section {
margin-top: 60px;
padding: 30px;
background: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.key-points-title {
text-align: center;
color: #044a16;
margin-bottom: 30px;
font-size: 1.8rem;
}

.key-points-title i {
margin-right: 10px;
color: #f39c12;
}

.key-points-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}

.key-point {
flex: 1;
min-width: 200px;
max-width: 300px;
display: flex;
align-items: flex-start;
background: #f9f9f9;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-point:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.key-point-icon {
background: #044a16;
color: white;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
margin-right: 15px;
flex-shrink: 0;
}

.key-point-icon i {
font-size: 1.5rem;
}

.key-point-text h4 {
color: #044a16;
margin: 0 0 10px;
}

.key-point-text p {
margin: 0;
font-size: 0.95rem;
line-height: 1.5;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
.uniform-display {
    flex-direction: column;
}

.uniform-svg {
    max-width: 200px;
}

.tabs-header {
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px;
}

.key-point {
    min-width: 100%;
}
}

/* Animation for AOS library */
[data-aos] {
transition-duration: 800ms;
transition-timing-function: ease-out;
}

/* Print Styles */
@media print {
.dress-code-tabs {
    box-shadow: none;
}

.tab-content {
    display: block !important;
    page-break-after: always;
}

.tab-btn {
    display: none;
}

.key-points-section {
    box-shadow: none;
    page-break-inside: avoid;
}
}
@media screen and (max-width: 576px) {
.timeline-line {
    left: 30px;
}

.timeline-item {
    padding-left: 70px;
    padding-right: 10px;
}

.timeline-item:before {
    width: 40px;
    height: 40px;
    left: 10px !important;
    top: 20px;
    font-size: 0.7rem;
}

.timeline-item:after {
    width: 20px;
    height: 20px;
    left: 20px !important;
    top: 30px;
}

.timeline-title {
    font-size: 1.2rem;
}

.timeline-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
}
/* For smaller screens */
@media (max-width: 768px) {
.gallery-item.large {
    grid-row: span 1;
    grid-column: span 1;
}
}
/* Responsive */
@media (max-width: 992px) {
  .section-title {
      font-size: 2rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
      padding: 1rem 5%;
  }
  
  .nav-links {
      display: none;
  }
  
  .mobile-nav {
      display: flex;
      justify-content: space-around;
  }
  
  .director-message .container {
      flex-direction: column;
  }
  
  .hero {
      height: 70vh;
  }
  
  body {
      padding-bottom: 70px;
  }
}



.about-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('{{ asset("leaf.png") }}');
    opacity: 0.05;
    pointer-events: none;
}

.about-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-image-container {
    flex: 1 1 400px;
    position: relative;
}

.about-feature-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.about-text {
    flex: 1 1 400px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c5d2d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.mission-vision-card {
    flex: 1 1 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: #f0f7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: #2c5d2d;
}

.sub-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c5d2d;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f0f7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #2c5d2d;
}

.feature-text h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c5d2d;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.approach-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: #f0f7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.approach-icon i {
    font-size: 1.8rem;
    color: #2c5d2d;
}

.about-cta {
    background: #2c5d2d;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}
.read-more-btn {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1b5e20;
  text-decoration: none;
}
.about-cta h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .about-overview {
        flex-direction: column;
    }
    
    .mission-vision {
        flex-direction: column;
    }
    
    .about-cta {
        padding: 2rem 1rem;
    }
}
/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 14, 1, 0.6), rgba(1, 34, 6, 0.6));
  background-size: cover;
  background-position: center;
  color: white;
  padding-top: 100px;
  /* padding-bottom: 0px 40px ;  */
  text-align: center;
}

.page-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: #a5d6a7;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mission-values-grid,
  .team-grid {
      grid-template-columns: 1fr;
  }
  
  .image-gallery {
      flex-direction: column;
  }
  
  .about-page {
      padding: 40px 0;
  }
  
  .page-banner {
      padding: 50px 0;
  }
  
  .page-banner h1 {
      font-size: 32px;
  }
}
.timeline {
            list-style: none;
            padding-left: 0;
            margin: 25px 0;
        }
        
        .timeline li {
            padding: 10px 15px;
            margin-bottom: 10px;
            background-color: #f5f5f5;
            border-left: 4px solid #4CAF50;
            border-radius: 0 4px 4px 0;
        }
        
        .year {
            font-weight: bold;
            color: #2c5e2e;
        }
        
        .mission-points {
            margin-top: 30px;
        }
        
        .mission-item {
            background: #f9f9f9;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .mission-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        
        .mission-item i {
            font-size: 2rem;
            color: #4CAF50;
            margin-bottom: 15px;
        }
        
        .program-card {
            background: white;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .program-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        
        .program-card h4 {
            color: #2c5e2e;
            margin-bottom: 15px;
        }
        
        .cta-box {
            background-color: #e8f5e9;
            padding: 40px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .cta-box h3 {
            color: #2c5e2e;
            margin-bottom: 15px;
        }
        
        .cta-box .btn-primary {
            background-color: #4CAF50;
            border-color: #4CAF50;
            padding: 10px 25px;
            margin-top: 15px;
        }
        
        .cta-box .btn-primary:hover {
            background-color: #2c5e2e;
            border-color: #2c5e2e;
        }
        
        .testimonials-section {
            background-color: #f9f9f9;
        }
        
        .testimonial-card {
            background: white;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-content:before {
            content: '"';
            font-size: 50px;
            color: #e0e0e0;
            position: absolute;
            top: -20px;
            left: -10px;
            z-index: 0;
        }
        
        .testimonial-author h5 {
            margin-bottom: 5px;
            color: #2c5e2e;
        }
        
        .testimonial-author p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        
        /*--------------------------------------------------------------
# Documents & Downloads Section
--------------------------------------------------------------*/
.documents-section {
  background-color: #f8f9fa; /* A light background to separate it from other sections */
  padding: 60px 0;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr; /* One column on small screens */
  gap: 20px;
  margin-top: 40px;
}

.document-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-left: 5px solid #007bff; /* Accent color */
}

.document-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.document-icon {
  font-size: 2.5rem;
  color: #dc3545; /* PDF icon color */
  margin-right: 20px;
}

.document-info {
  flex-grow: 1;
}

.document-title {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.document-category {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: #28a745; /* A green download button */
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-download:hover {
  background-color: #218838;
}

.btn-download i {
  margin-right: 8px;
}

/* Responsive layout for the grid */
@media (min-width: 768px) {
  .document-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
  }
}

@media (min-width: 992px) {
  .document-grid {
    grid-template-columns: repeat(3, 1fr); /* Three columns on large screens */
  }
}
        
        /* Training Videos Section Styles */
.training-videos {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.video-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

* Continuation of video-card styles */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(40, 167, 69, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    color: #333;
}

.video-info .speaker {
    font-size: 14px;
    color: #28a745;
    margin-bottom: 10px;
}

.video-info .description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.duration {
    font-size: 14px;
    color: #6c757d;
}

.watch-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.watch-link:hover {
    background-color: #218838;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #28a745;
    border-radius: 30px;
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #28a745;
    color: white;
}


/* public/css/your-style.css */

/* --- Styles for Video Gallery with Modal --- */
.video-thumbnail-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px; /* Space between image and text */
}

.video-thumbnail {
    height: 200px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .video-thumbnail {
    transform: scale(1.05); /* Zoom effect on hover */
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button-overlay .fa-play {
    color: #fff;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay .fa-play {
    transform: scale(1.2);
}

/* Modal styling to ensure video fits */
.modal-body iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Ensure the modal content doesn't have an ugly background color if your theme is dark */
.modal-content {
    background-color: #fff;
    border: none;
}
.modal-header {
    border-bottom: 1px solid #dee2e6;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .video-filter-container {
        flex-direction: column;
    }
    
    .search-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}

/* JavaScript for the training videos section */
