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

body {
  min-height: 100vh;
}

h1 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
}
html {
  scroll-behavior: smooth;
}

h2 {
  display: inline-block; /* Makes the element only as wide as its content */
  position: relative; /* For absolute positioning of the pseudo-element */
  margin-bottom: 20px; /* Space below the heading */
}

h2::after {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  bottom: -5px; /* Position slightly below the text */
  left: 0px; /* Start from the left edge */
  width: 100%; /* Half the width of the h2 */
  height: 3px; /* Border thickness */
  background-color: #ff6b35; /* Border color */
}

h3 {
  display: inline-block; /* Makes the element only as wide as its content */
  position: relative; /* For absolute positioning of the pseudo-element */
  margin-bottom: 20px; /* Space below the heading */
}

h3::after {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  bottom: -5px; /* Position slightly below the text */
  left: 0; /* Start from the left edge */
  width: 50%; /* Half the width of the h2 */
  height: 3px; /* Border thickness */
  background-color: #ff6b35; /* Border color */
}

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

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-right.active {
  opacity: 1;
  transform: translateX(0px);
}

.logo {
  height: 50px;
  width: 50px;
}

nav {
  background-color: white;
  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;
  margin-bottom: 0;
}
nav li {
  height: 50px;
}
nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #1E3A8A;
  font-weight: bold;
}
nav a:hover {
  background-color: #ffa500;
  color: #fff;
}
nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: white;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

@media (max-width: 768px) {
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
}
@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}
.sidenav {
  border-radius: 50px;
  position: fixed;
  left: 0;
  bottom: 25vh;
  width: 35px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #aadcff;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidenav-list {
  list-style: none;
  width: 100%;
  padding: 15px 0;
}

.sidenav-item {
  display: flex;
  justify-content: center;
  margin: 25px 0;
  position: relative;
}

.sidenav-link {
  color: #fff;
  text-decoration: none;
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #42a5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidenav-link i {
  font-size: 24px;
}

.sidenav-link:hover {
  transform: translateY(-3px);
  background-color: #1e88e5;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.sidenav-link:active {
  transform: scale(0.95);
}

/* Tooltip on hover */
.sidenav-item:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    margin-left: 60px;
  }
  .sidenav {
    width: 30px;
  }
  .sidenav-link {
    width: 20px;
    height: 20px;
  }
  .sidenav-link i {
    font-size: 16px;
  }
  .sidenav-item {
    margin: 16px 0;
  }
}
.about-section {
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}
.about-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  background-image: url("../../media/10.jpg");
}

.title h2 {
  color: #ff6b35;
}

.custom-list {
  margin: 0 40px;
}

.about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img1 {
  position: absolute;
  z-index: 2;
}

.logo-img2 {
  position: absolute;
  z-index: 1;
}

.logo-img3 {
  position: absolute;
  z-index: 0;
  opacity: 0.3;
  transform: rotate(30deg);
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90%;
  height: auto;
  margin: auto;
}
.image-section img {
  height: 240px;
  width: 240px;
}

article {
  width: 90%;
}
article a {
  border-radius: 8px;
  color: #fff;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  background-color: #ff6b35;
  border-radius: 5px;
}
article a:hover {
  background-color: #1c1957;
  color: #fff;
}
article h4 {
  font-size: 15px;
  font-weight: 10px;
  color: #1c1957;
}
article p {
  font-size: 17px;
  color: #1c1957;
  margin-top: 25px;
}
article .button {
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  .title h1 {
    font-size: 28px;
  }
  .image-section {
    margin-bottom: 40px;
    height: 240px;
    width: 240px;
  }
  .image-section img {
    height: 200px;
    width: 200px;
  }
  .about {
    flex-direction: column;
    margin-top: 20px;
  }
  .about article {
    margin-top: 30px;
  }
  .about article h4 {
    font-size: 18px;
  }
  .about article p {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .title h1 {
    font-size: 20px;
  }
  .image-section {
    margin-bottom: 20px;
    height: 120px;
    width: 120px;
  }
  .image-section img {
    height: 100px;
    width: 100px;
  }
  .about {
    flex-direction: column;
    margin-top: 10px;
  }
  .about .custom-list h4 {
    font-size: 8px;
  }
  .about .custom-list p {
    font-size: 10px;
  }
  .about .button a {
    margin-bottom: 25px;
    padding: 10px 25px;
    font-size: 10px;
    font-weight: 300;
  }
}
.carousel-indicators button {
  background-color: #ff6b35;
}

.carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel {
  padding: 120px 140px;
}

@media screen and (max-width: 768px) {
  .carousel {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 400px) {
  .carousel {
    padding: 15px 20px;
  }
}
.photo-slider {
  background: #1c1957;
}

.photo-agenda {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-agenda img {
  width: 100%;
  padding: 20px 40px;
}

.agenda-section {
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background-color: #1c1957;
  min-height: 60vh;
}
.agenda-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  background-image: url("../../media/5.jpg");
}
.agenda-section h2 {
  color: #ff6b35;
}

.list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 20px;
  color: white;
}

@media screen and (max-width: 768px) {
  .list-container {
    font-size: 10px;
  }
  .photo-agenda img {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 400px) {
  .list-container {
    font-size: 8px;
  }
  .photo-agenda img {
    padding: 5px 10px;
  }
}
.cards-container {
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}
.cards-container::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  background-image: url("../../media/7.jpg");
}

.h1-card-title {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 100px;
  font-size: 1.5rem;
  font-weight: bold;
}

.cards-title {
  padding: 10px;
  background-color: #ff6b35;
  color: #fff;
  border-radius: 8px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
}

.card {
  opacity: 0;
  transition: all 0.6s ease-out;
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
}

.card:nth-child(1) {
  transition-delay: 0.3s;
}

.card:nth-child(2) {
  transition-delay: 0.5s;
}

.card:nth-child(3) {
  transition-delay: 0.7s;
}

.card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-content {
  padding: 30px;
  background-color: #ff6b35;
  color: white;
}

.card-title {
  margin-bottom: 32px;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  color: #ff6b35;
  background-color: #F1F5F9;
  border-radius: 8px;
}

.card-description {
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .card {
    width: 100%;
    max-width: 240px;
  }
  .card-description {
    font-size: 0.6rem;
    line-height: 1.4;
  }
}
.products-section {
  background-color: #1c1957;
  padding-top: 20px;
  padding-bottom: 50px;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
  color: #f5f5f5;
  font-size: 10px;
  font-weight: 500;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.segment-description {
  margin: 0 10px;
}

.segment-card {
  opacity: 0;
  transition: all 0.6s ease-out;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
}
.segment-card:hover {
  transform: translateY(-5px);
}

.segment-card:nth-child(1) {
  transition-delay: 0.3s;
}

.segment-card:nth-child(2) {
  transition-delay: 0.5s;
}

.segment-card:nth-child(3) {
  transition-delay: 0.7s;
}

.segment-card:nth-child(4) {
  transition-delay: 0.9s;
}

.segment-card:nth-child(5) {
  transition-delay: 1.1s;
}

.segment-card:nth-child(6) {
  transition-delay: 1.3s;
}

.segment-image {
  height: 220px;
  background-color: #f5f5f5;
  position: relative;
}
.segment-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.segment-content {
  padding: 25px;
}

.segment-title {
  font-size: 20px;
  color: #2b2b2b;
  margin-bottom: 15px;
  margin-left: 5px;
}

.segment-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .section-heading {
    font-size: 10px;
  }
}
@media screen and (max-width: 315px) {
  .section-heading {
    font-size: 0.6rem;
  }
  .segments-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 240px;
    margin: 0 auto;
    padding: 0 5px;
  }
}
/* Visit Us Section */
.visit-us {
  padding: 60px 20px;
  text-align: center;
  background: #F1F5F9;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.map {
  height: 450px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  color: #1c1957;
  font-size: 10px;
  font-weight: 500;
}

.connect-section {
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  min-height: 50vh;
  flex-wrap: wrap;
  padding: 100px;
}
.connect-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  background-image: url("../../media/1.jpg");
}

.title {
  color: #ff6b35;
  align-items: center;
  justify-content: center;
}

.connect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0 10px;
  margin-top: 20px;
  color: #1E3A8A;
  font-size: 15px;
  font-weight: 500;
}
.connect ul {
  list-style: none;
}

.image-connect-section img {
  height: 240px;
  width: 240px;
}

@media screen and (max-width: 1000px) {
  .connect {
    display: block;
    flex-wrap: wrap;
    gap: 100px;
    flex-direction: column;
  }
  .connect article {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .image-connect-section {
    margin-bottom: 20px;
  }
  .image-connect-section img {
    height: 200px;
    width: 200px;
  }
  .connect {
    gap: 50px;
    flex-direction: column;
  }
  .connect article {
    font-size: 10px;
  }
}
/* Footer */
.footer {
  background: #1c1957;
  color: #FFFFFF;
  padding: 30px 20px;
  text-align: center;
}

.footer a {
  color: #ff6b35;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer a:hover {
  color: #2DD4BF;
}

.footer p {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  color: white;
}

.social-icons a {
  color: #FDE68A;
  font-size: 24px;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #2DD4BF;
  transform: scale(1.2);
}

/*to top button*/
.to-top {
  background: #ff6b35;
  position: fixed;
  bottom: 16px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1000;
}

.to-top.active {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}

@media screen and (max-width: 400px) {
  .to-top {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.products {
  padding: 120px 40px;
  text-align: center;
  background: #e4e7ea;
  min-height: 100vh;
}

.products h4 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #1E3A8A;
  opacity: 1;
  transition: opacity 0.5s ease;
  font-weight: 600;
  animation: fadeInUp 1s ease forwards 0.9s;
  color: #e36f19;
  margin: 15px 0;
  font-weight: 600;
}

.cards-products {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.card-products {
  width: 300px;
  padding: 20px 10px 0;
  background: #fefeff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.card-products.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-products img {
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.card-products p {
  color: #8ea1b4;
  font-weight: 300;
}

.card-products:hover {
  transform: scale(1.01);
}

.tabs {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs li {
  margin: 2px;
}

.nav-pills .nav-link {
  background-color: #e36f19;
  color: #fff;
}/*# sourceMappingURL=main.css.map */