:root {
  --primary-color: #0c5c8a;
  --secondary-color: #0c1c2c;
  --accent-color: #ff9c2a;
  --light-color: #f8f9fa;
  --dark-color: #0c1c2c;
  --text-color: #333;
  --white-color: #fff;
}

* {
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--light-color);
}

/* Navigation */
.navbar {
  background-color: rgba(12, 28, 44, 0.9);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
}

.navbar-brand {
  color: var(--white-color) !important;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--accent-color);
}

.nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 15px !important;
  margin: 0 5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  height: 100vh;
  background: linear-gradient(rgba(12, 28, 44, 0.7), rgba(12, 28, 44, 0.7)),
    url("../img/log1.jpg"),
      no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-section p.lead {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-btn {
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: #e0882d;
  border-color: #e0882d;
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #777;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  padding-right: 30px;
}

.about-image {
  padding: 20px;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  background-color: #f9f9f9;
}

.service-card {
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(12, 92, 138, 0.1);
  border-radius: 50%;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: #777;
  margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
  overflow: hidden;
}

.gallery-carousel .carousel-item {
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-carousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 5s ease;
}

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

.gallery-carousel .carousel-caption {
  background: rgba(12, 28, 44, 0.7);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  width: auto;
}

.gallery-carousel .carousel-indicators {
  bottom: -50px;
}

.gallery-carousel .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--dark-color);
  opacity: 0.5;
  margin: 0 5px;
}

.gallery-carousel .carousel-indicators button.active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: var(--dark-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.gallery-carousel .carousel-control-prev {
  left: 20px;
}

.gallery-carousel .carousel-control-next {
  right: 20px;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  background-color: #f9f9f9;
}

.contact-info {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 30px 30px 30px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-form {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 30px 30px 30px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  margin-bottom: 30px;
  justify-content: start;
}

.contact-icon {
  
  width: 60px;
  height: 60px;
  background-color: rgba(12, 92, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-text h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-text p {
  margin-bottom: 0;
  color: #777;
}

.form-control {
  height: 55px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 1rem;
  color: #777;
  margin-bottom: 20px;
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  padding: 20px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(12, 92, 138, 0.1);
}

.submit-btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  border: none;
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #ccc;
  padding: 60px 0 20px;
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-text {
  margin-bottom: 30px;
  color: #aaa;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links li a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  color: var(--white-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #aaa;
}

.footer-menu {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-menu a {
  color: #aaa;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--dark-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .nav-link {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 80px 0;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .contact-info {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p.lead {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .gallery-carousel .carousel-item {
    height: 300px;
  }

  .gallery-carousel .carousel-control-prev,
  .gallery-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 70px;
  height: 70px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  margin: 10px;
}
.card-body {
  max-width: 315px;
  height: 300px;
  width: 250px; 
  box-shadow: #0c1c2c 0px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  animation-duration: 0.5s;
  padding: 5px 10px;
  animation-direction: reverse;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.card-body img {
  padding: 5px;
  align-items: center;
  width: 25%;
  height: auto;
  transition: transform 0.5s ease;
}

@keyframes hover {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.8);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-vertical-center {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}



.holographic-card {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
  padding: 5px;
  width: 315px;
  height: auto;
}

.holographic-card h2 {
  color: #e0882d;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, #e0882d);
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e0882d;
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;


}
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .holographic-card h2 {
    font-size: 1.3rem;
  }
}
#menu-btn{
  color: black; 
}

#social-link-whatsapp {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

#social-link-whatsapp:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  color: var(--white-color);
}