@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&amp;family=Open+Sans:wght@300;400;600;700&amp;display=swap");
body {
  font-family: "Open Sans", sans-serif;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 20px auto;
}

.tool-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(45deg, #00bbf0, #0056b3);
  color: white;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.tool-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 187, 240, 0.2);
  color: white;
}



.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  margin-left:20%;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: white;
  border-radius: 100px;
  font-weight: 600;
  color: #1f387e;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #1f387e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #c5e5e4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #1f387e;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(130deg, #231a6f, #0f054c);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  margin: 0;
  transition: all 0.3s ease;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 25px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center;
  text-transform: uppercase;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom_nav-container .navbar-nav .nav-item .nav-link i {
  font-size: 1.1rem;
  color: #00bbf0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(0, 187, 240, 0.3));
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 187, 240, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link i {
  transform: translateY(-1px) scale(1.1);
  color: #ffffff;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background: linear-gradient(45deg, #00bbf0, #0056b3);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 187, 240, 0.3);
  border-color: transparent;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link i {
  color: #ffffff;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 28px;
  font-weight: bold;
}

.navbar-brand span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00bbf0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-brand span i {
  color: #00bbf0;
  filter: drop-shadow(0 0 8px rgba(0, 187, 240, 0.5));
}

.custom_nav-container .navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  width: 45px;
  height: 45px;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 187, 240, 0.2);
}

.custom_nav-container .navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.custom_nav-container .navbar-toggler span {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 2px;
  background: #00bbf0;
  transition: all 0.3s ease;
  display: block;
  margin: 5px auto;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #00bbf0;
  transition: all 0.3s ease;
  left: 0;
}

.custom_nav-container .navbar-toggler span::before {
  top: -8px;
}

.custom_nav-container .navbar-toggler span::after {
  bottom: -8px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  background: transparent;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before {
  transform: rotate(45deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 991px) {
  .custom_nav-container .navbar-collapse {
    background: rgba(26, 35, 126, 0.98);
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .custom_nav-container .navbar-nav {
    gap: 8px;
  }

  .custom_nav-container .navbar-nav .nav-item {
    width: 100%;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    border-radius: 12px;
    padding: 12px 20px !important;
    margin: 5px 0;
  }

  .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
    transform: translateX(5px);
  }

  .navbar-brand span {
    font-size: 1.5rem;
  }
}

/* Add scroll effect */
.header_section.scrolled {
  padding: 5px 0;
  background: rgba(26, 35, 126, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header_section.scrolled::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00bbf0, transparent);
  opacity: 0.5;
}

/* Add margin to main content */
.hero_area {
  margin-top: 0;
  padding-top: 0;
}

.hero_section {
  padding-top: 80px;
  min-height: 100vh;
  margin: 0;
}

/* For announcement banner pages */
.announcement-banner + .hero_area .hero_section {
  padding-top: 120px;
}

/* Fix sub-pages */
.sub_page .hero_area {
  min-height: auto;
  margin: 0;
  padding: 0;
}

.sub_page .service_section,
.sub_page .pricing_section,
.sub_page .about_section {
  padding-top: 80px;
}

/* Fix mobile spacing */
@media (max-width: 768px) {
  .hero_section {
    padding-top: 70px;
  }
  
  .announcement-banner + .hero_area .hero_section {
    padding-top: 100px;
  }
}

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #00204a;
}
.slider_section .detail-box img{
  position: absolute;
  margin-top: -170px;
  margin-left: 50px;
  pointer-events: none;
}
.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top:150px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.slider_section .detail-box .btn-box .btn1 {
  font-weight: 600;
  display: inline-block;
  margin: 10px;
  padding: 10px 15px;
  background-color: #c000f0;
  color: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #0026ff;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
          animation: upDown 5s infinite;
          pointer-events: none;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #00bbf0;
}

.about_section {
  background-color: #00204a;
  color: #ffffff;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box img {
  max-width: 100%;
  pointer-events: none;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF5733;
  color: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
  text-align:center;
}

.about_section .detail-box a:hover {
  background-color: #00bbf0;
}
.about_section .detail-box a img{
    width:40px;
}
.info_section {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.info_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.info_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.info_box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.info_box:hover {
  transform: translateY(-5px);
  border-color: #00bbf0;
  box-shadow: 0 10px 30px rgba(0, 187, 240, 0.1);
}

.info_title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_title i {
  color: #00bbf0;
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(0, 187, 240, 0.5));
}

/* Contact Links */
.contact_links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.link_icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 187, 240, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact_link:hover .link_icon {
  background: #00bbf0;
}

.contact_link i {
  font-size: 1.4rem;
  color: #00bbf0;
  transition: all 0.3s ease;
}

.contact_link:hover i {
  color: white;
}

.link_details {
  flex: 1;
}

.link_title {
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.link_desc {
  font-size: 0.85rem;
  opacity: 0.7;
  display: block;
}

.link_arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact_link:hover {
  background: rgba(0, 187, 240, 0.15);
  transform: translateX(5px);
}

.contact_link:hover .link_arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Quick Links */
.quick_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.group_title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.links_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.link_item:hover {
  background: rgba(0, 187, 240, 0.15);
  transform: translateX(5px);
  color: white;
}

.link_item i {
  font-size: 1.1rem;
  color: #00bbf0;
}

.badge {
  background: #00bbf0;
  color: white;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: auto;
}
.quick_links {
  display: grid;
  gap: 20px;
}

.group_title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.link_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.link_item:hover {
  background: rgba(0, 187, 240, 0.15);
  transform: translateX(5px);
}

.badge {
  background: #00bbf0;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
}

/* Stats Box */
.counter_wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.counter_wrapper:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.12);
}

.flag_counter {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Important Links */
.important_links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.link_item:hover {
  background: rgba(0, 187, 240, 0.2);
  transform: translateX(5px);
  color: white;
}

.link_item i {
  font-size: 1.2rem;
  color: #00bbf0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info_section {
    padding: 60px 0;
  }

  .info_content {
    gap: 20px;
  }

  .info_box {
    padding: 20px;
  }

  .info_title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.footer_section{
    text-align:center;
}

/* Enhanced Image Container Styles */
.hero_image {
    position: relative;
    perspective: 1000px;
}

.image_container {
    position: relative;
    height: 400px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image_container::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 20px;
    background: linear-gradient(45deg, 
        rgba(0, 187, 240, 0.1),
        rgba(0, 86, 179, 0.1)
    );
    filter: blur(20px);
    z-index: -1;
    transition: all 0.6s ease;
}

.image_container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateZ(0) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image_container img.active {
    opacity: 1;
    visibility: visible;
    transform: translateZ(50px) scale(1);
}

/* Hover Effects */
.hero_image:hover .image_container {
    transform: rotateX(5deg) rotateY(-5deg);
}

.hero_image:hover .image_container::after {
    inset: -25px;
    filter: blur(30px);
}

.hero_image:hover img.active {
    transform: translateZ(75px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Image Transition Animations */
@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateZ(-100px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateZ(50px) scale(1);
        filter: blur(0);
    }
}

@keyframes imageSlideOut {
    from {
        opacity: 1;
        transform: translateZ(50px) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateZ(-100px) scale(0.9);
        filter: blur(10px);
    }
}

/* Active Image States */
.image_container img.slide-in {
    animation: imageSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.image_container img.slide-out {
    animation: imageSlideOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Floating Elements */
.image_container::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #00bbf0, transparent);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.5;
    animation: floatElement 6s infinite;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, -50px);
    }
    50% {
        transform: translate(100px, 0);
    }
    75% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero_image {
        perspective: 600px;
    }
    
    .image_container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .image_container {
        height: 250px;
    }
    
    .hero_image:hover .image_container {
        transform: rotateX(3deg) rotateY(-3deg);
    }
}

/* Navbar active state styles */
.nav-item.active .nav-link {
    color: #00bbf0 !important;
    font-weight: 600;
}

.nav-item.active .nav-link i {
    color: #00bbf0;
    transform: scale(1.1);
}

/* Hover effects */
.nav-item .nav-link {
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
    color: #00bbf0 !important;
}

.nav-item .nav-link:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/*# sourceMappingURL=style.css.map */