*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  background-color:black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
  background-color: rgb(0, 0, 0);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul li.logo{
  margin-right: auto; /* pushes everything else to the right */
}

nav ul li.logo img{
  height: 50px;  /* adjust to your liking */
  width: auto;
  transition: transform 0.3s ease;
}

nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color:white;
}
nav a:hover{
  background-color: #910000;
  color: white;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1000;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}

.features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 2rem;
  text-align: center;
}

.feature {
  max-width: 300px;
}

.icon {
  background: #910000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon img {
  width: 50px;
  height: 50px;
  filter: invert(1); /* makes icons white if they're dark */
}

.feature h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}

.feature p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 📱 Mobile first stacking */
@media (max-width: 900px) {
  .features {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    max-width: 90%;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Banner */

	#banner {
		background-size: cover;
		height: 32em;
		text-align: center;
		position: relative;
	}

		#banner header {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			background: #212121;
			background: rgba(27, 27, 27, 0.75);
			color: #fff;
			padding: 1.5em 0;
		}

			#banner header h2 {
				display: inline-block;
				margin: 0;
				font-size: 1.25em;
				vertical-align: middle;
			}

				#banner header h2 em {
					opacity: 0.75;
				}

				#banner header h2 a {
					border-bottom-color: rgba(255, 255, 255, 0.5);
				}

					#banner header h2 a:hover {
						border-bottom-color: transparent;
					}

			#banner header .button {
				vertical-align: middle;
				margin-left: 1em;
			}

	@media screen and (max-width: 1680px) {

			.banner {
				width: 1200px;
			}

		}

		@media screen and (max-width: 1280px) {

			.banner {
				width: 960px;
			}

		}

		@media screen and (max-width: 980px) {

			.banner  {
				width: 95%;
			}

		}

		@media screen and (max-width: 840px) {

			.banner  {
				width: 95%;
			}

		}

		@media screen and (max-width: 736px) {

			.banner  {
				width: 90%;
			}

		}

		@media screen and (max-width: 480px) {

			.banner  {
				width: 100%;
			}
    }


/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1400px;
	}

		@media screen and (max-width: 1680px) {

			.container {
				width: 1200px;
			}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: 960px;
			}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: 95%;
			}

		}

		@media screen and (max-width: 840px) {

			.container {
				width: 95%;
			}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: 90%;
			}

		}

		@media screen and (max-width: 480px) {

			.container {
				width: 100%;
			}

		}
.btn-red {
  display: inline-block;
  background-color: #910000; /* strong red, used throughout the project */
  color: white; /* Text is white */
  padding: 0.75rem 1.0rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-red:hover {
  background-color: #910000; /* lighter red */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn-red:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* About Us */

.about{
  text-align: center;
  word-spacing: 1px;
}

.learn{
  text-align: center;
}

.learn h3,h2{
  color:#910000;
}

.learnbutton{
  text-align:center;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-story img,
.values-grid img {
  width: 550px;       /* or try % if you want it flexible */
  height: auto;       /* keeps the aspect ratio */
  border-radius: 10px; /* optional, adds softer corners */
  object-fit: cover;   /* helps crop images nicely if they're large */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* subtle depth */
}

/* Services */

.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Service item base */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Reverse layout for alternating rows */
.service-item.reverse {
  flex-direction: row-reverse;
}

/* Image styling */
.service-image {
  flex: 1 1 45%;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Text styling */
.service-text {
  flex: 1 1 45%;
}

.service-text h3 {
  color: #910000;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-text h2 {
  color: #910000;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-list li {
  margin-bottom: 12px;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.service-text p {
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-red {
  background-color: #910000;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-red:hover {
  background-color: #910000;
}

/* Responsive design */
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    flex: 1 1 100%;
  }

  .service-image img {
    max-width: 90%;
  }
}

/* Contact */

.contact{
  text-align: center;
}


/* Contact Section */
.contact-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.contact-container h2 {
  font-size: 2.2rem;
  color: #e50914; /* Red accent */
  margin-bottom: 10px;
}

.contact-container p {
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e50914;
  outline: none;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
button[type="submit"] {
  background-color: #e50914;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #b00610;
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 1.8rem;
  }

  form {
    gap: 15px;
  }
}



/* Footer */
.site-footer {
  background-color: #111;         /* dark background */
  color: #ccc;                    /* light text */
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 3rem 2rem 1rem;        /* top, sides, bottom */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

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

.footer-column h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-column li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.3rem 0;
}



/* Legal */   

.legal {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  color: #f1f1f1;
  background-color: #111;
  border-radius: 8px;
  line-height: 1.6;
}

.legal h1 {
  color: #910000;
  margin-bottom: 1rem;
  text-align: center;
}

.legal h2 {
  color: #910000;
  margin-top: 2rem;
}

.legal ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.legal p {
  margin-bottom: 1rem;
}