/* Google Fonts imported in HTML */

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  color: #333;
}

a {
  text-decoration: none;
}

/* Custom Buttons */

.text-success{color: #0456d9 !important;}

.btn-primary {
  background-color: #0456d9!important;
  border-color: #0456d9 !important;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-warning {
  background-color: #ffca2c;
  color: #000;
}

.btn-success {
  background-color: #0456d9;
  border-color: #0456d9;
  color: #fff;
}
.btn-success:hover{
    background-color: #ffca2c;
    border-color: #ffca2c;
    color: #000;
}

.btn-danger {
  background-color: #dc3545;
}

.brand-yellow {
  color: #feca00;
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(90deg, #7aff00 0%, #d5bb3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* General Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.btn-hover-effect {
  transition: all 0.3s ease;
}

.btn-hover-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
}

.icon-link-hover {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.icon-link-hover:hover {
  color: #0d6efd !important;
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  background-color: #092905;
}

.hero-bg {
    background: radial-gradient(circle at 80% 20%, rgb(0 15 203 / 54%) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgb(85 184 255 / 15%) 0%, transparent 50%), linear-gradient(135deg, #294491 0%, #a1c3f9 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

/* 3D Shield Graphic */
.hero-shield-wrapper {
  width: 350px;
  height: 350px;
  perspective: 1000px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.shield-icon {
  font-size: 16rem;
  background: linear-gradient(135deg, #fff41e 0%, #08df05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 20px 30px rgba(0, 110, 255, 0.5));
}

.shield-glow {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #0dfd3199 0%, transparent 70%);
  z-index: 0;
  animation: pulse-glow 4s infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.shield-rings {
  width: 320px;
  height: 320px;
  border: 2px solid #00afff33;
  border-radius: 50%;
  box-shadow: 0 0 20px #00e0ff1a inset, 0 0 20px #0089ff1a;
  transform: rotateX(75deg) translate(-50%, 0%);
  z-index: 1;
  top: 85% !important;
}

/* Service Card */
.service-card {
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  background: #ffffff;
}

.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
}

/* Product Card */
.product-card {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
  background: #ffffff;
}

.product-card .btn {
  transition: all 0.3s;
}

.product-card:hover .btn {
  transform: scale(1.02);
}

/* 3D Box for Software */
.software-box {
  box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.2),
    inset 3px 3px 8px rgba(255, 255, 255, 0.3),
    2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 6px !important;
  transform: perspective(200px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.software-box:hover {
  transform: perspective(200px) rotateY(0deg) scale(1.05);
}

.software-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.about-section .about-info ul {
  list-style-type: none;
  margin-bottom: 0px !important;
}

.about-section .about-info ul li {
  list-style-type: none;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 15px;
}

.about-section .about-info ul li:last-child {
  margin-bottom: 0px !important;
}

.about-section .about-info ul li i {
  color: var(--dark-bg);
  font-size: 15px;
  background: #feca00;
  padding: 5px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  text-align: center;
  line-height: normal;
}

.hmod_section{margin: 30px 0px 0px;}
.hmod_section .hmod_inner{background: url('../images/mod_bg.webp') no-repeat center center; background-size: cover;height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center;padding: 15px;}
.hmod_section .hmod_inner .hmod_box{border: 1px solid var(--white);padding: 20px;display: flex;align-items: center;justify-content: space-between;width: 100%;}
.hmod_section .hmod_inner .hmod_box .hmod_text{font-size: 18px;font-weight: 500;line-height: 30px;}
.hmod_section .hmod_inner .hmod_box .hmod_btn a{font-size: 18px;font-weight: 500;line-height: 30px;color: var(--white);border: 2px dotted var(--white);padding: 10px 20px;}
.hmod_section .hmod_inner .hmod_box .hmod_btn :hover{color: var(--white);border: 2px dotted var(--second);background: var(--second);}
/* Home Modul Section End Here */

/* About Module 3 Start Here*/
.about_module3 {
    padding: 80px 0px;
}

.about_module3 .abt_mod3_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 19px;
}

.about_module3 .abt_mod3_info .abt_info_items {
    display: flex;
    margin-left: 0rem;
    gap: 15px
}

.about_module3 .abt_mod3_info .abt_info_items_sec {
    display: flex;
    gap: 15px;
    margin-left: 0rem;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item {
    width: 200px;
    height: 200px;
    border: 1px #065925;
    border-radius: 10px;
    padding: 9px;
    transition: transform 0.4s ease-in-out;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item .abt_item_inner {
    box-shadow: 0px 4.29px 21.44px 0px #00000014;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item .abt_item_inner p {
    font-size: 35px;
    font-weight: 800;
    color: #0456d9;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item .abt_item_inner span {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    display: block;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item:hover {
    transform: translateY(-10px);
    transition: transform 0.4s ease-in-out;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item:hover .abt_item_inner {
    transition: transform 0.4s ease-in-out;
    background: #0456d9;
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item:hover .abt_item_inner p {
    transition: transform 0.4s ease-in-out;
    color: var(--white);
}

.about_module3 .abt_mod3_info .abt_info_items .abt_item:hover .abt_item_inner span {
    transition: transform 0.4s ease-in-out;
    color: var(--white);
}

.about_module3 .abt_mod3_dtl {
    text-align: left;
}

.about_module3 .abt_mod3_dtl span {
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: #0456d9;
}

.about_module3 .abt_mod3_dtl h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 55px;
    color: var(--heading);
    margin: 10px 0;
}

.about_module3 .abt_mod3_dtl p {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    color: var(--footertext);
}

.about_module3 .abt_mod3_dtl a {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    color: var(--white);
    margin: 20px 0 0px;
    display: block;
    background: #0456d9;
    padding: 7px 35px;
    width: fit-content;
    border-radius: 100px;
    transition: scale 0.5s ease-in-out;
}

.about_module3 .abt_mod3_dtl a:hover {
    scale: 1.07;
    transition: scale 0.5s ease-in-out;
}

/* About Module 3 Section End Here */

@media (max-width: 991px) {
.about_module3{padding: 70px 0;}
.about_module3 .abt_mod3_dtl{margin-top: 20px;}
.about_module3 .abt_mod3_dtl span{font-size: 19px;}
.about_module3 .abt_mod3_dtl h2 {font-size: 36px;font-weight: 600;line-height: 35px;}
.about_module3 .abt_mod3_dtl h2 br{display: none;}
}

@media (max-width: 767px) {
.hmod_section .hmod_inner .hmod_box{display: block;}
.hmod_section .hmod_inner .hmod_box .hmod_text{margin-bottom: 20px;}
.about_module3{padding: 60px 0;}
.about_module3 .abt_mod3_dtl{margin-top: 20px;}
.about_module3 .abt_mod3_dtl span{font-size: 19px;}
.about_module3 .abt_mod3_dtl h2 {font-size: 30px;font-weight: 600;line-height: 35px;}
.about_module3 .abt_mod3_dtl h2 br{display: none;}
}

@media (max-width: 576px) {
.about_module3 .abt_mod3_dtl{margin-top: 20px;}
.about_module3 .abt_mod3_dtl span{font-size: 18px;}
.about_module3 .abt_mod3_dtl h2 {font-size: 26px;font-weight: 600;line-height: 35px;}
.about_module3 .abt_mod3_dtl h2 br{display: none;}  
}