* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 20px;
}
h2{
    font-size: 1.5rem;
}
h3{
    font-size: 1.3rem;
}
p {
    margin-bottom: 10px;
}

.hero {
    height: 97vh;
    background-image: url(/assets/images/home-bg.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    margin: 0px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}

.hero .navbar {
    position: relative;
    z-index: 2; /* Ensure navbar appears above the overlay */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.hero .hero-content {
    z-index: 2; 
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.offcanvas-menu {
    z-index: 1000; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #f7cc7f;
}
.logo img{
    width: 25%;
    margin-right: 1%;
}
.logo h2{
  font-size: 3rem;
}
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 5rem;
    cursor: pointer;;
}
.search-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    color: white; 
    margin: 0 15px; 
    cursor: pointer;
    margin-left: auto;
    margin-top: 2%;
}
.search-icon i{
    color: white;
}
.search-icon p{
    font-size: .7rem;
    width: max-content;
}
.search-icon a{
  text-decoration: none;
}
.search-icon a:visited{
  color: white;
}
/* Off-Canvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #303030; 
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
}

.offcanvas-menu.active {
    right: 0;
}

.close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition-property: transform;
    transition-duration: 0.8s;
}
.close-btn:hover{
    transform: rotate(180deg);
}

.offcanvas-menu nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.offcanvas-menu nav ul li {
    margin: 20px 0;
}
.offcanvas-menu nav ul li .active{
    color: #f7cc7f;
}
.offcanvas-menu nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.offcanvas-menu nav ul li a:hover {
    color: #f7cc7f; 
}
.btn-cta {
    position: relative;
    display: inline-block;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    background: #f7cc7f;
    border: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}

.btn-cta::before,
.btn-cta::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: white;
    z-index: 0;
    transition: transform 0.4s ease-in-out;
}

.btn-cta::before {
    top: -100%;
    left: -100%;
    transform: translate(0, 0);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.btn-cta::after {
    bottom: -100%;
    right: -100%;
    transform: translate(0, 0);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.btn-cta:hover::before {
    transform: translate(100%, 100%);
}

.btn-cta:hover::after {
    transform: translate(-100%, -100%);
}
.btn-cta:hover {
    color: white;
    background-color: #730505;
}

.why-choose-us, .services, .testimonials, .contact-us {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
    margin: 20px 0;
}

.features, .service-list, .testimonial-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.testimonial-list{
    overflow-x: auto;
    justify-content: space-around;
    padding: 20px 0px;
}
.feature, .testimonial {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.testimonial{
    min-width: 48.5%;
    overflow: hidden;
}
.services{
    background-color: #383838;
}
.services h2{
    color: white;
}
.service{
    background-color: black;
    color: #f9f9f9;
    padding: 20px;
}


[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="slide-left"] {
    transform: translateX(-30px);
}

[data-animate="slide-right"] {
    transform: translateX(30px);
}

[data-animate="slide-up"] {
    transform: translateY(30px);
}
/* Footer */
.footer {
  background-color: #303030;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 calc(33.33% - 20px);
  margin: 10px;
  min-width: 200px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fa9038;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f7cc7f;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f7cc7f;
}
.policy-content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
  color: #730505;
  margin-bottom: 10px;
}

.policy-content p,
.policy-content ul {
  margin: 10px 0;
}

.policy-content ul {
  padding-left: 20px;
}

.terms-content {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  background: #ffffff; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.terms-content div {
  margin-bottom: 30px;
}

.terms-content h2 {
  color: #730505; 
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #fa9038; 
  display: inline-block;
  padding-bottom: 5px;
}

.terms-content p,
.terms-content ul {
  margin: 10px 0;
  font-size: 1rem;
  color: #555; 
}

.terms-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.terms-content ul li {
  margin-bottom: 10px;
}

/* Links */
.terms-content a {
  color: #fa9038; 
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}
.intro{
    padding: 4%;
    display: flex;
    gap: 5%;
}
.intro h2{
    color: #730505;
    width: 100%;
    font-size: 1.5rem;
}
/* Opportunities Section */
.opportunities {
    padding: 40px;
    background-color: black;
  }
.opportunities h2{
    color: #fa9038;
    text-align: center;
}
.cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
  
.card {
    background: #383838;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.opportunities .card h3{
    font-size: 1.2rem;
    color: whitesmoke;
}
/* Our Approach Section */
.our-approach {
    padding: 40px;
}

.steps {
    display: flex;
    justify-content: space-around;
}
  
.step {
    max-width: 300px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
  
.section.why-us {
    padding: 50px 20px;
  }
  
  .section.why-us h2 {
    text-align: center;
    color: #730505;
    margin-bottom: 50px;
    font-size: 2.2rem;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #730505;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-item .timeline-content {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #730505;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 45%;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    left: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    left: 55%;
  }
  
  .timeline-content h3 {
    font-size: 1.5rem;
    color: #fa9038;
    margin-bottom: 10px;
  }
  
  .timeline-content p {
    color: #383838;
    line-height: 1.6;
  }
  
  .timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  /* Why Join Us Section */
.why-join {
  padding: 40px;
}
.why-join ul{
  list-style: none;
}
.why-join ul li i{
  color: #28a745;
  font-size: 1.2rem;
  margin-right: 1rem;
}

  /* Our Services */
  .service-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .service-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 2px solid #730505;
    background-color: #f7cc7f;
  }
  
  .service-card i {
    font-size: 2rem;
    color: #730505;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: #000;
    padding: 50px;
    text-align: center;
  }
  .testimonials h2{
    color: #f9f9f9;
  }
  .testimonial {
    flex: 1;
    padding: 20px;
    background-color: #730505;
    color: white;
  }

  /* About Section */
.about {
  background-color: #ffffff;
  padding: 50px 20px;
}
.about h2{
  font-size: 2.5rem;
}
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-text {
  width: 60%;
}

.about-image {
  width: 35%;
  margin-top: 5rem;
}

.about-image img {
  width: 70%;
  object-fit: cover;
}

.hidden {
  display: none ;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

#form-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 50%;
}
#form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form group styling for labels and inputs */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #fa9038; 
  outline: none;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

/* Textarea styling */
.form-group textarea {
  resize:none;
  height: 100px;
}
/* File Upload Section */
.form-group .file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  display: none; /* Hide the default file input */
}

.file-upload .file-label {
  display: inline-block;
  background-color: #fa9038; /* Brand color */
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.file-upload .file-label:hover {
  background-color: #e88a2c; /* Slightly darker shade */
}

/* When a file is selected, show the file name next to the button */
.file-upload input[type="file"]:valid + .file-label {
  background-color: #028b07; 
  color: #fff;
}

/* Mission Section */
.mission {
  padding: 40px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.mission h2 {
  font-size: 2.5rem;
  color: #730505;
  margin-bottom: 20px;
}

.mission blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin: 0 auto;
  padding: 20px 40px;
  max-width: 800px;
  background: #ffffff;
  border-left: 5px solid #f7cc7f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mission blockquote::before {
  content: "“";
  font-size: 4rem;
  color: #730505;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.7;
}

.mission blockquote::after {
  content: "”";
  font-size: 4rem;
  color: #730505;
  position: absolute;
  bottom: -10px;
  right: 20px;
  opacity: 0.7;
}

/* Values Section */
.values {
  padding: 40px 20px;
  margin: 0 40%;
}

.values h2 {
  font-size: 2.5rem;
  color: #730505;
}

.values ul {
  list-style: none;
  padding: 0;
}
.values li{
  font-size: 1.5rem;
}

.value-icon {
  font-size: 1.5rem;
  color: #fa9038;
  margin-right: 10px;
}

/* Process Section */
.process {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.process-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.process-item {
  background: #f7cd7f60;
  padding: 20px;
  width: 30%;
}

.process-item h3 {
  font-size: 1.8rem;
  color: #730505;
}

[data-animate="diagonal-up"] {
  transform: translate(-30px, -30px);
}
[data-animate="diagonal-down"] {
  transform: translate(30px, 30px);
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-form, .contact-info {
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 400px;
}

.contact-form h3, .contact-info h3 {
  color: #730505;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

textarea {
  resize: none; 
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}

/* Benefits Section */
.benefits-section {
  padding: 40px 20px;
  background: white;
}

.benefits-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.benefits-section li {
  background: #f7cc7f;
  padding: 20px;
  text-align: center;
  flex: 1;
}

.benefits-section h3 {
  margin-bottom: 10px;
}

/* Roles Section */
.roles-section {
  padding: 40px 20px;
  background: #383838;
  color: white;
}

.roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.role {
  background: white;
  color: #383838;
  padding: 20px;
  flex: 1 1 30%;
  text-align: center;
}
.role img{
  width: 10%;
}

/* FAQ Section Styles */
.faq-section {
  padding: 40px 20px;
  background: #f4f4f4;
  max-width: 800px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-title {
  cursor: pointer;
  padding: 15px;
  background: #730505;
  color: white;
  font-size: 1.2rem;
  margin: 0;
}

.faq-title:hover {
  background: #f7cc7f;
  color: #730505;
}
.faq-title {
  color: white;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
}

.faq-content {
  padding: 15px;
  background-color: #f1f1f1;
  display: none;
  margin-bottom: 0.5rem;
}
.faq-content p {
  margin: 15px 0;
}

.faq-item.open .faq-content {
  max-height: 150px;
  padding: 15px;
}
.blog-section {
  padding: 30px;
  margin-top: 5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #505050;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card img{
  width: 100%;
}
.blog-card h3 {
  font-size: 1.5em;
  color: #f7cc7f;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #eaeaea;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 767px) {
  .logo img{
    width: 50%;
  }
  .logo h2{
    display: none;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  .why-choose-us .features{
    flex-direction: column;
  }
  .service-list{
    flex-direction: column;
  }
  .testimonial-list .testimonial{
    min-width: 100%;
  }
  .values{
    margin: 0 5%;
  }
  .about-container{
    flex-direction: column-reverse;
  }
  .process-container{
    flex-direction: column;
  }
  .process-item{
    width: 100%;
  }
  .about-text{
    width: 90%;
  }
  .about-image{
    width: 50%;
  }
  .about-image img{
    width: 100%;
  }
  .hero-content{
    padding: 0 5%;
  }
  .cards, .steps{
    flex-direction: column;
  }
  .steps .step{
    max-width: max-content;
  }
  
}
  @media (max-width: 480px) {
    .logo img{
      width: 40%;
    }
    .menu-toggle{
      font-size: 3.5rem;
    }
    .hero .hero-content h1{
      font-size: 2rem;
    }
    /* .hero .overlay{
      height: 97vh;
    } */
    .service-cards{
      flex-direction: column;
    }
    .timeline-item .timeline-content{
      width: 48%;
    }
    .timeline-content h3{
      font-size: 1.3rem;
    }
    .intro{
      flex-direction: column;
    }
    .why-join{
      padding: 5%;
    }
    .why-join ul li i {
      font-size: .8rem;
    }
    .why-join ul li{
      font-size: .8rem;
    }
}
