@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-weight: 400;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: url(../images/header-bg.jpg);
}
@media screen and (max-width: 991px) {
  .header {
    background: #0f8dc0;
  }
}
.header.scrolled {
  background: url(../images/header-bg.jpg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .header.scrolled {
    background: #0f8dc0;
  }
}
.header .navbar {
  padding: 0rem 0;
}
.header .navbar-brand {
  padding: 0;
}
.header .navbar-brand img {
  height: 135px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .header .navbar-brand img {
    height: 100px;
    margin-left: 0px;
  }
}
.scrolled .header .navbar-brand img {
  height: 100px;
}
.header .nav-link {
  position: relative;
  padding: 0.5rem 0.5rem !important;
  margin: 0 0.3rem;
  font-weight: 500;
  color: #666666;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0e5c99;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header .nav-link:hover, .header .nav-link.active {
  color: #0e5c99;
}
.header .nav-link:hover::after, .header .nav-link.active::after {
  width: 100%;
}
.header .nav-link.active {
  font-weight: 600;
  color: #0e5c99;
}
.header .header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header .header-right {
    align-items: flex-start;
  }
}
.header .header-right .social-icons {
  display: flex;
  gap: 12px;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.header .header-right .social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.header .header-right .social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header .header-right .social-icons a i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.header .header-right .social-icons a:hover {
  transform: translateY(-3px);
}
.header .header-right .social-icons a:hover::before {
  opacity: 1;
}
.header .header-right .social-icons a:hover i {
  transform: scale(1.1);
}
.header .header-right .social-icons a.facebook {
  background: linear-gradient(45deg, #3b5998, #4267B2);
  box-shadow: 0 4px 15px rgba(66, 103, 178, 0.2);
}
.header .header-right .social-icons a.facebook:hover {
  box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}
.header .header-right .social-icons a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}
.header .header-right .social-icons a.instagram:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}
.header .header-right .social-icons a.linkedin {
  background: linear-gradient(45deg, #0077B5, #00a0dc);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}
.header .header-right .social-icons a.linkedin:hover {
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}
.header .header-right .social-icons a.whatsapp {
  background: linear-gradient(45deg, #2bb53e, #55cf62);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.header .header-right .social-icons a.whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.header .header-right .social-icons a i {
  font-size: 0.9rem;
  color: white;
}
.header .header-right .header-contact {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.header .header-right .header-contact .contact-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 50px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header .header-right .header-contact .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.header .header-right .header-contact .contact-btn:hover .icon {
  background: rgba(33, 150, 243, 0.1);
}
.header .header-right .header-contact .contact-btn .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.1);
  color: #0e5c99;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.header .header-right .header-contact .contact-btn .icon i {
  font-size: 0.9rem;
  transform: rotate(10deg);
}
.header .header-right .header-contact .contact-btn .contact-info {
  text-align: left;
}
.header .header-right .header-contact .contact-btn .contact-info span {
  display: block;
  font-size: 0.75rem;
  color: rgba(33, 150, 243, 0.8);
  margin-bottom: 2px;
}
.header .header-right .header-contact .contact-btn .contact-info strong {
  display: block;
  color: #0e5c99;
  font-size: 0.9rem;
  font-weight: 600;
}
.header .navbar-toggler {
  border: none;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .header .navbar-toggler {
    margin-right: 15px;
  }
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar-brand img {
  height: 135px;
}
@media screen and (max-width: 991px) {
  .header.scrolled .navbar-brand img {
    height: 100px;
  }
}

.main-titles {
  padding: 40px 0 20px;
  background: #e8fefe;
  position: relative;
  overflow: hidden;
}
.main-titles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 35%, rgba(56, 189, 248, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
  z-index: 0;
}
.main-titles .container {
  position: relative;
  z-index: 2;
}
.main-titles .title-block {
  position: relative;
  padding: 5.5rem 0 3rem;
}
.main-titles .title-block.left-block {
  text-align: right;
}
.main-titles .title-block.left-block .glowing-border {
  right: -30px;
}
.main-titles .title-block.right-block {
  text-align: left;
  margin-top: 70px;
}
.main-titles .title-block.right-block .glowing-border {
  left: -30px;
}
.main-titles .title-block .glowing-border {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 140%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent 0%, #38BDF8 50%, transparent 100%);
  filter: blur(1px);
  animation: borderGlow 3s ease-in-out infinite;
}
.main-titles .title-block .subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: #38BDF8;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.main-titles .title-block .subtitle::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  margin: 0 15px;
  opacity: 0.5;
}
.main-titles .title-block .subtitle::after {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  margin: 0 15px;
  opacity: 0.5;
}
.main-titles .title-block h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  color: #03709c;
  position: relative;
  line-height: 1.1;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.1));
}
.main-titles .title-block h2 .highlight {
  position: relative;
  display: inline-block;
}
.main-titles .title-block h2 .highlight::before {
  content: "";
  position: absolute;
  inset: -10px -20px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 10px;
  transform: skew(-10deg);
  z-index: -1;
}
.main-titles .title-block:hover .glowing-border {
  height: 160%;
  filter: blur(2px);
}
.main-titles .title-block:hover h2 {
  color: #03709c;
}
.main-titles .floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.5;
}
.main-titles .floating-shapes .shape {
  position: absolute;
  background: linear-gradient(45deg, #38BDF8, #818CF8);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
.main-titles .floating-shapes .shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  opacity: 0.1;
  animation: morphing1 15s linear infinite;
}
.main-titles .floating-shapes .shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  opacity: 0.1;
  animation: morphing2 12s linear infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.5;
    height: 140%;
  }
  50% {
    opacity: 1;
    height: 160%;
  }
}
@keyframes morphing1 {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}
@keyframes morphing2 {
  0% {
    border-radius: 53% 47% 34% 66%/63% 46% 54% 37%;
  }
  25% {
    border-radius: 61% 39% 45% 55%/33% 56% 44% 67%;
  }
  50% {
    border-radius: 39% 61% 38% 62%/44% 48% 52% 56%;
  }
  75% {
    border-radius: 40% 60% 70% 30%/47% 62% 38% 53%;
  }
  100% {
    border-radius: 53% 47% 34% 66%/63% 46% 54% 37%;
  }
}
@media (max-width: 991px) {
  .main-titles {
    padding: 120px 0 60px;
  }
  .main-titles .title-block h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .main-titles {
    padding: 100px 0 50px;
  }
  .main-titles .title-block {
    text-align: center !important;
    padding: 2rem 1rem;
  }
  .main-titles .title-block .glowing-border {
    display: none;
  }
  .main-titles .title-block h2 {
    font-size: 2.8rem;
  }
  .main-titles .title-block .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
}
.hero {
  background: #e8fefe;
}
.hero .row .col-md-3:nth-child(1), .hero .row .col-md-3:nth-child(3) {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .hero .row .col-md-3:nth-child(1), .hero .row .col-md-3:nth-child(3) {
    margin-top: 0;
  }
}
.hero .row .col-md-3:nth-child(1) .service-box h3, .hero .row .col-md-3:nth-child(3) .service-box h3 {
  top: 0;
  bottom: auto;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  padding-bottom: 3rem;
  transform: translateY(0);
  padding-top: 100px;
}
.hero .row .col-md-3:nth-child(1) .service-box {
  border-left: 0;
}
.hero .row .col-md-3:nth-child(4) .service-box {
  border-right: 0;
}
.hero .row .col-md-3:nth-child(2) .service-box h3, .hero .row .col-md-3:nth-child(4) .service-box h3 {
  top: auto;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding-top: 3rem;
  transform: translateY(0);
  padding-bottom: 140px;
}
.hero .service-box {
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid white;
  border-top: 0;
  border-bottom: 0;
}
.hero .service-box:hover .overlay {
  background: rgba(33, 150, 243, 0.4);
}
.hero .service-box:hover .service-image {
  transform: scale(1.1);
}
.hero .service-box:hover h3.top-title {
  transform: translateY(10px);
}
.hero .service-box:hover h3.bottom-title {
  transform: translateY(-10px);
}
.hero .service-box .service-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  will-change: transform;
}
.hero .service-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  z-index: 1;
}
.hero .service-box h3 {
  position: absolute;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  z-index: 2;
  transition: all 0.5s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.col-md-3 {
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero .service-box {
    height: 450px;
  }
  .hero .service-box h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .hero .service-box {
    height: 300px;
  }
  .hero .service-box h3 {
    font-size: 1.2rem;
    padding: 1rem;
    top: auto !important;
    bottom: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent) !important;
    padding-top: 2rem !important;
    padding-bottom: 7.5rem !important;
  }
  .hero .service-box h3.top-title, .hero .service-box h3.bottom-title {
    transform: translateY(0) !important;
  }
  .hero .service-box:hover h3 {
    transform: translateY(-5px) !important;
  }
}
.cta-section {
  position: relative;
  padding: 0 0 0rem;
}
.cta-section .cta-wrapper {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}
.cta-section .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(100px, -150px);
}
.cta-section .cta-wrapper h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cta-section .cta-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cta-section .cta-wrapper .btn-primary {
  background: white;
  color: #2196F3;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.cta-section .cta-wrapper .btn-primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.cta-section .cta-wrapper .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.footer {
  position: relative;
  background: #8ae7e5;
}
.footer .cta-section {
  position: relative;
  padding: 0 0 0rem;
  z-index: 2;
}
.footer .cta-section .cta-wrapper {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  padding: 4rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(33, 150, 243, 0.15);
}
.footer .cta-section .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(100px, -150px);
}
.footer .cta-section .cta-wrapper .cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer .cta-section .cta-wrapper h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer .cta-section .cta-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}
.footer .cta-section .cta-wrapper .btn-primary {
  background: white;
  color: #2196F3;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.footer .cta-section .cta-wrapper .btn-primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.footer .cta-section .cta-wrapper .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.footer .cta-section .cta-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}
.footer .main-footer {
  position: relative;
  padding: 2rem 0 0.5rem;
  background-color: #8ae7e5;
  overflow: hidden;
}
.footer .main-footer .footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/footer-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: multiply;
}
.footer .main-footer .footer-about .footer-logo {
  width: 100%;
  filter: brightness(0.4);
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  margin-top: 34px;
}
.footer .main-footer .footer-about p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer .main-footer .footer-about .footer-social-wrap {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:first-child {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child) {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child) i {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child):hover {
  transform: translateY(-3px);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child):hover::before {
  opacity: 1;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn:not(:first-child):hover i {
  color: white;
  transform: scale(1.1);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Facebook] {
  color: #4267B2;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Facebook]::before {
  background: #4267B2;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Facebook]:hover {
  box-shadow: 0 5px 15px rgba(66, 103, 178, 0.3);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Instagram] {
  color: #E1306C;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Instagram]::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Instagram]:hover {
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Linkedin] {
  color: #0077B5;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Linkedin]::before {
  background: #0077B5;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Linkedin]:hover {
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Youtube] {
  color: #FF0000;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Youtube]::before {
  background: #FF0000;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=Youtube]:hover {
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=whatsapp] {
  color: #FF0000;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=whatsapp]::before {
  background: #25d366;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-social .social-btn[title=whatsapp]:hover {
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone:hover {
  background: #2196F3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone:hover .phone-icon {
  background: white;
  color: #2196F3;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone:hover .phone-text span, .footer .main-footer .footer-about .footer-social-wrap .footer-phone:hover .phone-text strong {
  color: white;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone .phone-icon {
  width: 36px;
  height: 36px;
  background: #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #2196F3;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone .phone-icon i {
  font-size: 0.9rem;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone .phone-text {
  display: flex;
  flex-direction: column;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone .phone-text span {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.footer .main-footer .footer-about .footer-social-wrap .footer-phone .phone-text strong {
  color: #666;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer .main-footer .footer-links h4 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}
.footer .main-footer .footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #2196F3;
}
.footer .main-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .main-footer .footer-links ul li {
  margin-bottom: 12px;
}
.footer .main-footer .footer-links ul li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
.footer .main-footer .footer-links ul li a span {
  position: relative;
}
.footer .main-footer .footer-links ul li a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #2196F3;
  transition: width 0.3s ease;
}
.footer .main-footer .footer-links ul li a:hover {
  color: #2196F3;
  padding-left: 10px;
}
.footer .main-footer .footer-links ul li a:hover span::before {
  width: 100%;
}
.footer .main-footer .footer-contact {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.footer .main-footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.footer .main-footer .footer-contact .contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.footer .main-footer .footer-contact .contact-item:hover .icon-wrapper {
  background: #0e5c99;
}
.footer .main-footer .footer-contact .contact-item:hover .icon-wrapper i {
  transform: scale(1.1);
}
.footer .main-footer .footer-contact .contact-item:hover .contact-info .value {
  color: #0e5c99;
}
.footer .main-footer .footer-contact .contact-item .icon-wrapper {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-contact .contact-item .icon-wrapper i {
  font-size: 1.2rem;
  color: #0e5c99;
  transition: all 0.3s ease;
}
.footer .main-footer .footer-contact .contact-item .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .main-footer .footer-contact .contact-item .contact-info .label {
  font-size: 0.85rem;
  color: #0e5c99;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .main-footer .footer-contact .contact-item .contact-info .value {
  font-size: 0.8rem;
  color: #0e5c99;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.6;
}
.footer .main-footer .footer-contact .contact-item .contact-info .value:hover {
  color: #0e5c99;
  text-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}
.footer .copyright {
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.6rem 0;
  position: relative;
  z-index: 1;
}
.footer .copyright p {
  margin: 0;
  color: #666;
}
.footer .copyright p i {
  color: #ff4b4b;
  margin: 0 3px;
}
.footer .copyright p a {
  color: #2196F3;
  text-decoration: none;
  font-weight: 500;
}
.footer .copyright p a:hover {
  text-decoration: underline;
}
.footer .social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 25px 0;
}
.footer .social-icons a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: all 0.4s ease;
}
.footer .social-icons a i {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.footer .social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
}
.footer .social-icons a:hover::before {
  opacity: 1;
}
.footer .social-icons a:hover i {
  transform: scale(1.1);
}
.footer .social-icons a.facebook {
  color: #4267B2;
  box-shadow: 0 4px 15px rgba(66, 103, 178, 0.2);
}
.footer .social-icons a.facebook:hover {
  background: #4267B2;
  color: white;
  box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}
.footer .social-icons a.instagram {
  color: #E1306C;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}
.footer .social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}
.footer .social-icons a.linkedin {
  color: #0077B5;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}
.footer .social-icons a.linkedin:hover {
  background: #0077B5;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}
.footer .social-icons a.whatsapp {
  color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.footer .social-icons a.whatsapp:hover {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.footer .social-icons a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  z-index: 1;
  transition: all 0.6s ease;
  opacity: 0;
}
.footer .social-icons a:hover::after {
  animation: shine 1.5s ease forwards;
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(45deg) translateY(100%);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .footer-social {
    flex-direction: column;
    gap: 15px;
  }
  .footer-social .connect-text {
    font-size: 0.9rem;
    padding: 6px 15px;
  }
  .footer-social .social-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
@media (max-width: 991.98px) {
  .header .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #0e5c99;
    z-index: 1000;
    padding: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .header .navbar-collapse.show {
    left: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .header .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .mobile-menu-header img {
    height: 65px;
  }
  .header .mobile-menu-header .btn-close {
    padding: 0.5rem;
    filter: invert(1) brightness(200%);
    opacity: 1;
  }
  .header .mobile-menu-header .btn-close:hover {
    opacity: 0.8;
  }
  .header .navbar-nav {
    padding: 1rem;
  }
  .header .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
  .header .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    display: block;
    color: white;
  }
  .header .navbar-nav .nav-link::after {
    display: none;
  }
  .header .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }
  .header .header-right {
    margin: 1rem 0;
    flex-direction: column;
    width: 100%;
  }
  .header .header-right .social-icons {
    padding-right: 0;
    border-right: none;
    margin-bottom: 1rem;
    justify-content: center;
    margin-left: 20px;
  }
  .header .header-right .header-contact {
    margin-left: 20px;
    width: 80%;
  }
  .header .header-right .header-contact .contact-btn {
    justify-content: center;
    padding: 12px 20px;
  }
  .navbar-collapse.show::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  .header .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-titles {
    padding: 120px 0 20px;
  }
  .main-titles .title-block {
    text-align: left !important;
    padding: 1.5rem !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .main-titles .title-block {
    padding: 0.5rem !important;
  }
}
@media (max-width: 768px) {
  .main-titles .title-block.left-block::after {
    display: none;
  }
  .main-titles .title-block.left-block h2::after, .main-titles .title-block.right-block h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #0e5c99, transparent);
  }
  .main-titles .title-block h2 {
    font-size: 1.5rem;
  }
  .main-titles .title-block .subtitle {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  .main-titles .right-block {
    margin-top: 2rem;
    margin-left: 0px !important;
    text-align: right !important;
  }
  .hero .hero-titles {
    text-align: center;
  }
  .hero .hero-titles .title-left, .hero .hero-titles .title-right {
    position: static;
    font-size: 2rem;
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
  .hero .hero-column {
    height: 300px;
  }
  .hero .service-box {
    height: 300px;
    margin-bottom: 5px;
  }
  .hero .service-box h3 {
    font-size: 1.2rem;
    padding: 1rem;
  }
  .footer .main-footer {
    padding: 3rem 0 1rem;
  }
  .footer .main-footer .footer-links,
  .footer .main-footer .footer-contact {
    margin-top: 0rem;
    gap: 0;
    margin: 0px 0;
  }
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .hero .hero-titles .title-left, .hero .hero-titles .title-right {
    font-size: 2.5rem;
  }
  .hero .hero-column {
    height: 450px;
  }
}
@media (max-width: 576px) {
  .footer .main-footer .footer-about .footer-social-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .main-footer .footer-about .footer-social-wrap .footer-phone {
    width: 100%;
    justify-content: center;
  }
}
@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 0.9;
  }
}
.contact-info .connect-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0e5c99;
}
.contact-info p {
  color: #0e5c99;
  font-size: 0.8rem;
}

.footer-social {
  align-items: center;
  gap: 20px;
}
.footer-social .connect-text {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0px;
  color: #0e5c99;
}
.footer-social .social-links {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer-social .social-links {
    padding: 0 0px;
  }
}
.footer-social .social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.footer-social .social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-social .social-btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.footer-social .social-btn:hover {
  transform: translateY(-3px);
}
.footer-social .social-btn:hover::before {
  opacity: 1;
}
.footer-social .social-btn:hover i {
  transform: scale(1.1);
}
.footer-social .social-btn.facebook {
  background: linear-gradient(45deg, #3b5998, #4267B2);
  box-shadow: 0 4px 15px rgba(66, 103, 178, 0.2);
}
.footer-social .social-btn.facebook:hover {
  box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}
.footer-social .social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}
.footer-social .social-btn.instagram:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}
.footer-social .social-btn.linkedin {
  background: linear-gradient(45deg, #0077B5, #00a0dc);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}
.footer-social .social-btn.linkedin:hover {
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}
.footer-social .social-btn.youtube {
  background: linear-gradient(45deg, #FF0000, #FF4444);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}
.footer-social .social-btn.youtube:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
.footer-social .social-btn.whatsapp {
  background: linear-gradient(45deg, #2bb53e, #55cf62);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}
.footer-social .social-btn.whatsapp:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

@keyframes shine {
  from {
    transform: translateX(-100%) rotate(45deg);
  }
  to {
    transform: translateX(100%) rotate(45deg);
  }
}
@media (max-width: 768px) {
  .footer-social {
    flex-direction: column;
    gap: 15px;
  }
  .footer-social .connect-text {
    font-size: 0.9rem;
    padding: 6px 0px;
  }
  .footer-social .social-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
a {
  text-decoration: none;
}/*# sourceMappingURL=styles.css.map */