:root {
  --white--: #fff;
  --black--: #000;
  --blue--: #1b4174;
  --orange--: #FF8C42;
}
















/* Navbar Starts */
.navbar {
  padding: 20px 0;
}

.heading {
  height: 40px;
  color: var(--blue--);
  font-family: 700;
}

li.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: var(--blue--);
  margin: 0 10px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--orange--) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--orange--);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


/* Navbar Ends  */




/* Banner Section Starts  */
.banner {
  position: relative;
  height: 580px;
  background: url('https://img.freepik.com/free-photo/colleagues-giving-fist-bump_53876-15018.jpg?t=st=1733132543~exp=1733136143~hmac=fae2864a762e958c9bab560eef90140180c7461b21fbf05ca6a5867b43c6a9b0&w=740') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  /* Gradient overlay is below the text */
}

.banner .container {
  position: relative;
  /* Ensure text is above gradient */
  z-index: 2;
  /* Content is above the overlay */
  color: #1E1E19;
  /* Text color */
}


.banner-heading {
  font-size: 5rem;
  font-weight: 600;
  line-height: 85px;
  color: var(--white--);
  margin-bottom: 1rem;
}



@media (max-width: 767px) {

  .banner-heading {
    font-size: 2rem;
    line-height: 40px;

  }

  .banner {
    height: 400px;
  }

}

/* Banner Section Ends  */



/* About Us Starts */

.about-us {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.about-us-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #21538b;
  /* Blue color for heading */
  margin-bottom: 20px;
  text-align: left;
}

.about-us-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Image gallery container */
.image-gallery .card-img {
  border-radius: 8px;
  /* Optional rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  /* Ensures the images cover the container */
  width: 100% !important;
  /* Ensures consistent width */
}

/* Margin management */
.image-gallery .mb-2 {
  margin-bottom: 15px;
  /* Adjust margin between images */
}

/* Hover effect */
.image-gallery .hover-effect:hover {
  transform: scale(1.05);
  /* Slight zoom effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* Shadow on hover */
}



@media screen and (max-width: 768px) {
  .about-us {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .about-us h2 {
    font-size: 1.5rem !important;
  }

  .about-us-text {
    font-size: 14px;
    text-align: center;
  }

  .image-gallery {
    margin-bottom: 20px;
  }

  .image-gallery .card-img {
    height: 150px;
  }

  .image-gallery .col-md-12 {
    margin-bottom: 10px;
  }

}


/* About Us End  */




/* Work Wit Us Started */

.work-with-us .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--blue--);
  /* Use your color theme variables */
}

.work-with-us .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-with-us .card .card-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}


.work-with-us .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.work-with-us .btn-primary {
  background-color: var(--red);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .work-with-us .section-title {
    font-size: 1.5rem;
  }

  .card-img,
  .card-img-top {
    height: 175px;
    width: 100%;
    object-fit: cover;
  }

  .work-with-us .card .card-text {
    font-size: 13px;
  }

  .work-with-us .card .card-title {
    font-size: 1rem;
  }

  .work-with-us .card small {
    font-size: 12px;
  }
}

/* Work With Us End */


/* Text and Image Section  */
.text-image-section {
  background-color: var(--light-black);
  color: var(--white);
}

.text-image-section .section-heading {
  font-size: 2.5rem !important;
  font-weight: bold;
  color: var(--blue--);
}


.text-image-section .section-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey);
}

.text-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-image-section .section-heading {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  color: var(--blue--);
}

@media screen and (max-width: 768px) {
  .text-image-section .section-heading {
    font-size: 1.5rem !important;
    text-align: center !important;
  }
  

  .text-image-section .section-text {
    font-size: 12px;
    text-align: center;
  }

}

/* Text and Image Ends  */



/* Our Recipe Section Starts  */
.our-recipe-section {
  background-color: var(--light-black);
  color: var(--white);
}

.our-recipe-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--blue--);
}

.card {
  background-color: var(--grey);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: #FF8C42;
  color: var(--black);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue--);
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
}

.card-hover:hover .card-title,
.card-hover:hover .card-text {
  color: var(--white--);
}


@media screen and (max-width: 768px) {
  .our-recipe-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem !important;
  }

  .our-recipe-section .card-title {
    font-size: 1.2rem;
  }

  .our-recipe-section .card-text {
    font-size: 13px;
  }
}


/* Our Recipe Section Ends  */


/* Our Team Section  */
.our-team-section {
  background-color: var(--light-black);
  color: var(--white);
}

.our-team-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--blue--);
  margin-bottom: 30px;
}

.team-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 4px solid var(--white--);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-image:hover {
  transform: scale(1.1);
  border-color: #FF8C42;
}

.team-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 15px;
  color: var(--orange--);
}

.team-role {
  font-size: 1rem;
  color: #333;
  opacity: 0.8;
}


@media screen and (max-width: 768px) {
  .our-team-section h2 {
    margin-bottom: 2rem !important;
    font-size: 1.5rem;
  }

  .team-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }

  .team-name {
    font-size: 16px;
  }

  .team-name {
    font-size: 16px;
  }
}

/* Our Team Section End  */



/* Image Gallery Section Starts  */

.image-gallery {
  margin-top: 2rem;
}

.image-gallery h2 {
  color: var(--blue--);
  font-size: 2.5rem;
  font-weight: bold;
}

.main-image {
  text-align: center;
  position: relative;
}


/* Main Image */
.main-image {
  text-align: center;
  position: relative;
}

.main-image img {
  width: 80%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--orange--);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.btn-prev:hover,
.btn-next:hover {
  background-color: rgba(219, 218, 218, 0.514);
  color: var(--red--);
}

.btn-prev {
  left: 10px;
}

.btn-next {
  right: 10px;
}

/* Thumbnail Section */
.thumbnails-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.thumbnails {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  scroll-behavior: smooth;
}

.thumbnail {
  width: 120px;
  height: 80px;
  margin-right: 5px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-radius: 5px;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.1);
  border-color: var(--orange--);
}

.thumbnail.active {
  border-color: var(--orange--);
}

/* .btn-thumbnail-prev, .btn-thumbnail-next {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    background-color: rgba(243, 34, 34, 0.5);
    color: #fff;
    border: none;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-thumbnail-prev:hover,
.btn-thumbnail-next:hover {
    background-color: rgba(255, 253, 253, 0.7);
    color: var(--red--);
}

.btn-thumbnail-prev {
    left: 30px;
}
.btn-thumbnail-next {
    right: 30px;
} */

@media screen and (max-width: 768px) {
  .image-gallery h2 {
    font-size: 1.5rem;
  }
}

/* Image Gallery Section Ends  */





/* Footer Starts  */

.footer-section {
  max-width: 1300px;
  background-color: #111;
  color: var(--grey);
  border-radius: 20px;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--orange--);
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a8a8a8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #a8a8a8;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--blue--);
}

.footer-bottom {
  border-top: 1px solid var(--grey);
  margin-top: 20px;
  padding-top: 15px;
}

.footer-heart {
  color: #FF8C42;
  animation: pulse 1.5s infinite;
}

.xhr {
  color: #a8a8a8;
}

/* Responsive adjustments for screens up to 768px */
@media screen and (max-width: 768px) {
  .footer-section {
    padding: 15px;
  }

  .container {
    width: 96%;
  }

  .footer-heading {
    font-size: 1.2rem;
    text-align: center;
    /* Center-align headings for better readability */
  }

  .footer-text {
    font-size: 0.9rem;
    text-align: center;
    /* Center-align text */
  }

  .footer-links {
    text-align: center;
  }

  .footer-links li {
    display: inline-block;
    /* Display links horizontally */
    margin: 0 5px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 10px;
    font-size: 0.85rem;
  }
}


@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}


/* Footer ends  */





/* Team Page Started  */
.team-banner {
  position: relative;
  height: 270px;
  background: url('https://img.freepik.com/free-photo/corporate-business-handshake-business-partners_53876-104764.jpg?t=st=1733376141~exp=1733379741~hmac=2153ebd6eed553dd9b0d8e1935066bfc1d8ac88916c2e0963224cfa888a7c482&w=740') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.team-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white--);
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .team-banner-content h1 {
    font-size: 2rem;
  }
}


/* Team Page Ends  */

/* Team Page About Us Section  */


.about-us h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--blue--);
}


.about-us ul {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 0;
}


.image-row {
  display: flex;
  justify-content: space-between;
}

.image-row img {
  margin-top: 20px;
  width: 48%;
  /* Makes the images take half the width of their container */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

/* Create the staggered vertical effect */
.img-1 {
  top: -20px;
}

.img-2 {
  top: 20px;
  /* Shift image 2 slightly down */
}

.img-3 {
  top: -20px;
  /* Shift image 3 slightly up */
}

.img-4 {
  top: 20px;
  /* Shift image 4 slightly down */
}

/* Hover Effect: Make images scale up on hover */
.image-row img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-us {
    padding: 40px 20px;
  }

  .about-us-heading {
    margin-top: 3rem;
    font-size: 1.5rem;
  }

  .about-us p {
    font-size: 14px;
  }

  .about-us ul {
    font-size: 0.8rem;
  }

  .image-container {
    flex-direction: row;
    /* Display images in a row for small screens */
    gap: 10px;
  }
}

/* Media Query for Mobile (screens < 768px) */
@media (max-width: 767px) {

  .image-row img {
    width: 48%;
    /* Each image takes approximately half the width */
    top: 0;
    /* Remove staggered vertical positioning on mobile */
  }

  .img-1,
  .img-2,
  .img-3,
  .img-4 {
    top: 0;
    /* Reset any staggered positions for consistency */
  }

  .image-container {
    flex-direction: column;
  }
}




/* Team Page About Us Ends  */

/* Team Page Job Section Starts  */
/* Banner Starts  */
.job-banner {
  position: relative;
  height: 270px;
  background: url('https://img.freepik.com/premium-photo/diverse-people-hands-reach-out-hiring-newspaper-announcement_53876-79720.jpg?w=740') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.job-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white--);
  letter-spacing: 1px;
}


@media screen and (max-width: 768px) {

  .job-banner-content h1 {
    font-size: 2rem;
  }
}

/* Banner Ends  */


/* Open Positions Section */
.apply h2 {
  font-size: 2.5rem;
  color: var(--blue--);
  font-weight: bold;
  letter-spacing: 1px;
}

.job-card {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card h5 {
  color: var(--blue--);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.job-card p {
  color: #555;
  margin-bottom: 15px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Location Section */
.Visit h3 {
  font-size: 2rem;
  color: var(--blue--);
  font-weight: bold;
}

.location-section p {
  font-size: 1rem;
  color: #555;
}

.location-section .form-select {
  border-radius: 5px;
  padding: 1rem;
}

@media screen and (max-width: 768px) {

  .apply h2 {
    font-size: 1.5rem;
  }

  .job-card h5 {
    font-size: 1rem;
  }

  .job-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .Visit h3 {
    font-size: 1.5rem;
    /* Reduce heading size for smaller screens */
    text-align: center;
    /* Center-align heading for aesthetics */
  }

  .Visit p {
    text-align: center;
    /* Center-align text */
  }

  .form-select {
    margin: 0 auto 1rem;
    /* Center dropdown with margin below */
    display: block;
  }

  .row {
    flex-direction: column;
    /* Stack columns vertically */
  }

  .col-md-6 {
    margin-bottom: 1.5rem;
    /* Add space between stacked sections */
  }

  iframe {
    height: 250px;
    /* Reduce map height for smaller screens */
  }
}

/* Team Page Job Section Ends  */


/* Contact Us page  */
/* Banner Starts  */
.contact-banner {
  position: relative;
  height: 270px;
  background: url('https://img.freepik.com/premium-photo/hand-woman-holding-mobile-smartphone-with-contact-us_52701-804.jpg?w=740') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.contact-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white--);
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .contact-banner-content h1 {
    font-size: 2rem;
  }
}

/* Banner Ends  */


/* Contact Us section  */
.contact-us-section h2 {
  font-size: 2.5rem;
  color: var(--blue--);
  font-weight: bold;
}

.contact-us-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-us-section ul {
  padding: 0;
}

.contact-us-section ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  display: flex;
  align-items: center;
}

.contact-us-section ul li i {
  font-size: 1.5rem;
  color: var(--orange--);
}

.contact-form {
  padding: 60px 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
  font-weight: bold;
  color: #555;
}

.contact-form .form-control {
  border-radius: 5px;
  padding: 0.8rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-us-section h2 {
    font-size: 1.5rem;
  }

  .contact-us-section p {
    font-size: 14px;
  }

  .contact-us-section ul li {
    font-size: 12px;
  }

  .contact-us-section ul li i {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .contact-form {
    padding: 40px 20px;
  }
  
  button.btn-orange {
    width: 100% !important;
  }

  .contact-form .form-control {
    padding: 9px;
    font-size: 12px;
  }
}

/* Contact Us section End  */



/* FAQ page Starts  */

.faq-container {
  margin: 0 auto;
  width: 80%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 3rem auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-header h1 {
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--blue--);
  font-size: 2.5em;
}

.faq-list .faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
  color: #333;
}

.faq-question h3 {
  margin: 0;
}

.toggle-icon {
  font-size: 1.5em;
  color: var(--orange--);
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 1em;
  color: #555;
  padding-left: 20px;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 1.5em;
  }

  .faq-question h5 {
    font-size: 13px;
  }

  .faq-answer p {
    font-size: 12px;
  }
}


/* FAQ Page End  */
/* Contact Us page  */

















/* Utilities  */
.btn-orange {
  background-color: #FF8C42;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #E67630;
  color: var(--white--);
}

/* Responsive styling for screens up to 768px */
@media screen and (max-width: 768px) {
  .btn-orange {
    width: 100%;
    /* Full width for smaller screens */
    font-size: 14px;
    /* Slightly larger font for readability */
    padding: 12px;
    /* Adjust padding for better touch interaction */
  }

  .mt-5 {
    margin-top: 2rem;
    /* Adjust spacing for better visual hierarchy */
  }

  .me-3 {
    margin-right: 0;
    /* Remove horizontal margins */
    margin-bottom: 10px;
    /* Add spacing between buttons */
  }

  .btn-orange:last-child {
    margin-bottom: 0;
    /* Remove bottom margin for the last button */
  }
}

.img-cover {
  object-fit: cover;
}

.txt-orange {
  color: #FF8C42;
}

.txt-blue {
  color: var(--blue--);
}