.card {
  position: relative;
  width: 100%;
  height: 532px;
  border: none !important;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}


.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  background-color: #0066FF !important;
}

.icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url("../../assets/images/data-security/star-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 15px 0 0;
  transition: all 0.6s ease, background-image 0.3s ease 0.6s;
  z-index: 2;
}

.icon-wrapper img {
  width: 150px;
  height: 150px;
}

.security-features-bg {
  background-color: #F6F8FA;
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: opacity 0.4s ease;
}

.card-content h2 {
  margin: 15px 0 10px;
  font-size: 34px;
  font-weight: bold;
}

.card-content p {
  font-size: 18px;
  color: #9b9b9b;
}

.card:hover {
  background: #007bff;
  color: #fff;
}

.card:hover .icon-wrapper {
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: none;
  transition: all 0.4s ease;
}

.card:hover .card-content {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .icon-wrapper img {
  width: 100px;
  height: 100px;
  transition: all 0.4s ease;
}

.hover-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: left;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
}

.hover-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.hover-content ul {
  padding-left: 20px;
}

.hover-content li {
  margin: 8px 0;
  font-size: 14px;
}

.card:hover .hover-content {
  opacity: 1;
}

.data-cover {
  height: 86vh;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
  background-image: url('../../assets/images/data-security/data-secuity-cover.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 32px;
  /* margin: 10px; */
  background-repeat: no-repeat;
  /* box-sizing: border-box; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-bold {
  font-weight: 600;
}



.secondary-data-text {
  color: #686262
}

/* ========== RESPONSIVE DESIGN FOR ALL DEVICES ========== */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
  .data-cover {
    height: 60vh;
    min-height: 400px;
    margin: 3px;
    border-radius: 15px;
    background-attachment: scroll;
    padding: 20px 10px;
  }

  .data-cover .container {
    padding: 0 10px;
  }

  #data-security-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem;
  }

  #data-security-subtitle {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 10px;
  }

  #data-security-cta {
    margin-top: 2rem !important;
  }

  #data-security-cta button {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

/* Small Devices (phones, 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .data-cover {
    height: 65vh;
    min-height: 450px;
    margin: 5px;
    border-radius: 18px;
    background-attachment: scroll;
    padding: 25px 15px;
  }

  #data-security-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  #data-security-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }
}

/* Medium Devices (tablets, 769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .data-cover {
    height: 75vh;
    min-height: 500px;
    margin: 8px;
    border-radius: 25px;
    background-attachment: scroll;
  }

  #data-security-title {
    font-size: 3rem !important;
    line-height: 1.3 !important;
  }

  #data-security-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 1920px) {
  .data-cover {
    height: 85vh;
    min-height: 700px;
    max-width: calc(100vw - 20px);
  }
}

/* Large Devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .data-cover {
    height: 80vh;
    min-height: 550px;
    margin: 10px;
    border-radius: 28px;
  }
}

@media (min-width: 1200px) {
  .data-cover {
    height: 90vh;
  }
}

/* ========== CERTIFICATIONS SECTION RESPONSIVE ========== */

/* Extra Small Devices - Certifications */
@media (max-width: 480px) {
  #certifications-section {
    padding: 40px 15px !important;
  }

  #certifications-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem;
  }

  #certifications-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    padding: 0 10px;
  }

  .card {
    height: 280px !important;
    margin-bottom: 20px;
  }

  .icon-wrapper {
    height: 40% !important;
  }

  .icon-wrapper img {
    width: 80px !important;
    height: 80px !important;
  }

  .card-content h2 {
    font-size: 1.2rem !important;
    margin: 8px 0 6px !important;
  }

  .card-content p {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .hover-content {
    top: 65% !important;
    width: 90% !important;
  }

  .hover-content h2 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .hover-content li {
    font-size: 0.75rem !important;
    margin: 4px 0 !important;
  }

  /* Stack certification cards vertically on mobile */
  .row.justify-content-center .col-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1rem;
  }

  .row.justify-content-center .col-4:last-child {
    margin-bottom: 0;
  }
}

#certifications-section {
  background-color: #FCFCFC !important;
  padding: 60px 20px;
}

/* Large Devices - Certifications Padding */
@media (min-width: 992px) and (max-width: 1199px) {
  #certifications-section {
    padding: 70px 30px !important;
  }
}

/* Extra Large Devices - Certifications Padding */
@media (min-width: 1200px) {
  #certifications-section {
    padding: 80px 40px !important;
  }
}

/* Small Devices - Certifications */
@media (min-width: 481px) and (max-width: 768px) {
  #certifications-section {
    padding: 50px 20px !important;
  }

  #certifications-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  #certifications-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .card {
    height: 350px !important;
    margin-bottom: 25px;
  }

  .icon-wrapper img {
    width: 100px !important;
    height: 100px !important;
  }

  .card-content h2 {
    font-size: 1.4rem !important;
    margin: 10px 0 8px !important;
  }

  .card-content p {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .hover-content h2 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
  }

  .hover-content li {
    font-size: 0.8rem !important;
    margin: 5px 0 !important;
  }

  /* Stack certification cards vertically on small devices */
  .row.justify-content-center .col-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
  }

  .row.justify-content-center .col-4:last-child {
    margin-bottom: 0;
  }
}

/* Medium Devices - Certifications */
@media (min-width: 769px) and (max-width: 991px) {
  #certifications-section {
    padding: 60px 25px !important;
  }

  #certifications-title {
    font-size: 2.8rem !important;
    line-height: 1.3 !important;
  }

  #certifications-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }

  .card {
    height: 450px !important;
  }

  .icon-wrapper img {
    width: 120px !important;
    height: 120px !important;
  }

  .card-content h2 {
    font-size: 1.8rem !important;
  }

  .card-content p {
    font-size: 1rem !important;
  }

  .hover-content h2 {
    font-size: 1.1rem !important;
  }

  .hover-content li {
    font-size: 0.85rem !important;
  }

  /* Show certification cards side by side on tablets */
  .row.justify-content-center .col-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 2rem;
  }
}

.data-cover * {
  max-width: 100%;
  box-sizing: border-box;
}

.data-cover .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}



html {
  scroll-behavior: smooth;
}

.gsap-loading * {
  opacity: 0 !important;
}

.zero-training-bg {
  background: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.zero-training-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

.zero-training-bg>.container {
  position: relative;
  z-index: 2;
}


.zero-training-image {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}

.shield-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zero-training-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) translateY(30px);
}

.guard-block {
  background-color: #fff;
  border-radius: 46px;
  padding: 40px;
  margin: 80px auto;
}

.shield-container {
  background-color: #EEF4F9;
  border-radius: 46px 0 0 46px;
  padding: 40px;
  margin-right: 0;
}

.zero-training-main-image.animate-in-view {
  animation: guardEntrance 1.2s ease-out forwards;
}

.complete-image {
  width: 100%;
  height: auto;
  max-width: 450px;
  filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.2));
  transition: transform 0.3s ease;
}

.complete-image.animate-in-view {
  animation: guardFloat 4s ease-in-out infinite, guardGlow 3s ease-in-out infinite alternate;
}

.complete-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 50px rgba(59, 130, 246, 0.3));
}


@keyframes guardFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }

  50% {
    transform: translateY(-12px) rotate(0deg);
  }

  75% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

@keyframes guardGlow {
  0% {
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.2)) brightness(1);
  }

  100% {
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.35)) brightness(1.05);
  }
}

@keyframes guardEntrance {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    filter: drop-shadow(0 5px 15px rgba(59, 130, 246, 0.1));
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.2));
  }
}

@keyframes guardPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes backgroundPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.zero-training-content {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

#zero-training-title,
#zero-training-subtitle {
  opacity: 0;
  transform: translateY(30px);
}

.zero-training-features {
  margin-top: 2rem;
}

.feature-item {
  padding: 0.75rem 0;
  border-radius: 8px;
  position: relative;
  color: #828282;
  opacity: 0;
  transform: translateX(-30px);
  cursor: pointer;
}

.feature-item.animated {
  opacity: 1;
  transform: translateX(0);
}


.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}


.feature-icon img {
  filter: brightness(1.2) saturate(1.2);
}

/* ========== ZERO TRAINING SECTION RESPONSIVE ========== */

/* Extra Small Devices - Zero Training */
@media (max-width: 480px) {
  .zero-training-bg {
    padding: 2rem 0;
  }

  .zero-training-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .zero-training-image {
    text-align: center;
    margin-bottom: 2rem;
  }

  .shield-container {
    max-width: 200px;
    height: 200px;
    padding: 15px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .complete-image {
    max-width: 200px;
  }

  .guard-block {
    padding: 15px;
    border-radius: 20px;
    margin: 40px auto;
  }

  #zero-training-title {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem;
  }

  #zero-training-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 2rem !important;
  }

  .zero-training-features {
    margin-top: 1rem !important;
  }

  .feature-item {
    justify-content: center;
    padding: 0.5rem 0 !important;
    flex-direction: column;
    text-align: center;
  }

  .feature-item div {
    margin-bottom: 0.5rem !important;
    margin-right: 0 !important;
  }

  .feature-item span {
    font-size: 0.9rem !important;
  }
}

/* Small Devices - Zero Training */
@media (min-width: 481px) and (max-width: 768px) {
  .zero-training-bg {
    padding: 3rem 0;
  }

  .zero-training-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .zero-training-image {
    text-align: center;
    margin-bottom: 2rem;
  }

  .shield-container {
    max-width: 250px;
    height: 250px;
    padding: 20px;
    border-radius: 25px;
    margin: 0 auto;
  }

  .complete-image {
    max-width: 250px;
  }

  .guard-block {
    padding: 20px;
    border-radius: 25px;
    margin: 50px auto;
  }

  #zero-training-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  #zero-training-subtitle {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }

  .feature-item {
    justify-content: center;
    padding: 0.6rem 0 !important;
  }

  .feature-item span {
    font-size: 1rem !important;
  }
}

/* Medium Devices - Zero Training */
@media (min-width: 769px) and (max-width: 991px) {
  .zero-training-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .zero-training-image {
    text-align: center;
    margin-bottom: 2rem;
  }

  .shield-container {
    max-width: 300px;
    height: 300px;
    padding: 25px;
    border-radius: 30px;
    margin: 0 auto;
  }

  .complete-image {
    max-width: 300px;
  }

  .guard-block {
    padding: 25px;
    border-radius: 30px;
    margin: 60px auto;
  }

  #zero-training-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  #zero-training-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }

  .feature-item {
    justify-content: center;
  }
}

/* Large Devices - Zero Training */
@media (min-width: 992px) and (max-width: 1199px) {
  .shield-container {
    max-width: 380px;
    height: 380px;
    padding: 35px;
    border-radius: 40px;
  }

  .complete-image {
    max-width: 380px;
  }

  .guard-block {
    padding: 35px;
    border-radius: 40px;
  }
}

/* ========== SECURITY PRIORITY SECTION RESPONSIVE ========== */

/* Extra Small Devices - Security Priority */
@media (max-width: 480px) {
  .security-priority-bg {
    padding: 2rem 0 !important;
  }

  #security-priority-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  #security-priority-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    padding: 0 10px;
  }
}

/* Small Devices - Security Priority */
@media (min-width: 481px) and (max-width: 768px) {
  .security-priority-bg {
    padding: 3rem 0 !important;
  }

  #security-priority-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  #security-priority-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
}

/* Medium Devices - Security Priority */
@media (min-width: 769px) and (max-width: 991px) {
  .security-priority-bg {
    padding: 4rem 0 !important;
  }

  #security-priority-title {
    font-size: 2.8rem !important;
    line-height: 1.3 !important;
  }

  #security-priority-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }
}

/* ========== GENERAL RESPONSIVE UTILITIES ========== */

/* Ensure proper spacing and layout on all devices */
@media (max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .row>* {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .py-15 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mt-15 {
    margin-top: 2rem !important;
  }

  .mb-15 {
    margin-bottom: 2rem !important;
  }
}

.zero-training-animate {
  opacity: 0;
  transform: translateY(50px);
}

.feature-item-animate {
  opacity: 0;
  transform: translateX(-30px);
}

.security-priority-bg {
  background: #F6F8FA;
  position: relative;
  overflow: hidden;
}

.security-priority-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.security-priority-bg>.container {
  position: relative;
  z-index: 2;
}


@media (prefers-reduced-motion: reduce) {
  .gradient-text {
    animation: none;
  }

  .card {
    transition: none;
  }

  .complete-image {
    animation: none;
  }

  .zero-training-main-image {
    animation: none;
  }

  .zero-training-bg::before {
    animation: none;
  }


  .feature-item {
    transition: none;
  }

}

/* ========== SECURITY FEATURES CAROUSEL STYLES ========== */

/* Security Features Carousel */
.security-features-carousel {
  padding: 20px 0;
}

.security-feature-card {
  padding: 15px;
  height: 100%;
}

.security-feature-card .card {
  background-color: #fff;
  border-radius: 20px;
  /* transition: all 0.3s ease; */
  height: 100%;
  box-shadow: none !important;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.security-feature-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.security-feature-card .card:hover {
  /* transform: translateY(-5px); */
  background-color: #0066FF;
}

.security-feature-card .card:hover .carousel-text {
  color: #ffffff;
}
.security-feature-card .card .carousel-text {
  color: #848383;
}

.security-feature-card .card:hover h3 {
  color: #ffffff;
}

.carousel-text {
  transition: color 0.3s ease;
}

.security-feature-card h3 {
  transition: color 0.3s ease;
}

.security-feature-card .feature-icon {
  flex-shrink: 0;
  text-align: center;
}

.security-feature-card .content-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.security-feature-card .feature-points {
  text-align: left;
  margin-top: auto;
}

.security-feature-card .feature-points .d-flex {
  align-items: flex-start;
}

/* Carousel Navigation Styles */
.carousel-navigation {
  margin-top: 40px;
}

.carousel-nav-btn {
  background: #ffffff;
  border: 2px solid #0066FF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-nav-btn:hover {
  background: #0066FF;
  transform: scale(1.1);

}



.carousel-nav-btn:hover img {
  filter: brightness(0) invert(1);
}

.carousel-nav-btn.carousel-nav-highlight {
  background: #0066FF;
  transform: scale(0.95);
}

.carousel-nav-btn.carousel-nav-highlight img {
  filter: brightness(0) invert(1);
}

/* Owl Carousel Custom Dots */
.security-features-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.security-features-carousel .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.security-features-carousel .owl-dot.active {
  background: #0066FF;
  transform: scale(1.2);
}

.security-features-carousel .owl-dot:hover {
  background: #0066FF;
}

/* Security Features Carousel Responsive */
@media (max-width: 768px) {
  .security-feature-card .card {
    min-height: 400px;
  }

  .carousel-nav-btn {
    width: 45px;
    height: 45px;
  }

  .security-features-carousel {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .security-feature-card {
    padding: 10px;
  }

  .security-feature-card .card {
    min-height: 380px;
  }

  .security-feature-card .card-body {
    padding: 30px 20px !important;
  }
}


.gdpr-card-content-margin{
  margin-bottom: 2.5rem!important
}