* {
  font-family: 'HK Guise', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.data-breach-top-right::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 50vw;
  height: 50vw;
  max-width: 999px;
  max-height: 999px;
  background: radial-gradient(circle, rgba(74, 74, 144, 0.558), transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  /* Center it horizontally */
  z-index: -10;
  pointer-events: none;
}

body {
  margin: 0;
  font-family: 'HK Guise', sans-serif;
  background-color: #171213;
  color: #fff;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

.container12345 {
  width: 100%;
  max-width: 1600px;
  /* Centered content */
  margin: 0 auto;
  padding: 0 0;
  /* Added padding for all devices */
}

.floating-image {
  position: absolute;
  top: 430px;
  left: 870px;
  width: 600.560791015625px;
  height: 600.7059936523438px;
  opacity: 1;
  /* Adjust opacity if needed */
  z-index: 1;
  /* Below text but above background */
  pointer-events: none;
  /* Ensures it does not block clicks */
}

/* Tablet responsive adjustment for floating image */
@media (max-width: 1024px) {
  .floating-image {
    left: 60%;
    width: 400px;
    height: 400px;
  }
}

.color-container {
  background: linear-gradient(to bottom, #00000090, #171213);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  gap: 40px;
  transition: gap 0.6s ease-in-out;
}

header {
  background-color: transparent;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left img {
  height: 80px;
  margin-right: 20px;
}

/* Tablet responsive for header logo */
@media (max-width: 1024px) {
  .header-left img {
    height: 60px;
  }
}

.bg {
  position: relative;
  background: url('background_image.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Fade-out effect */
.bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 150px;
  /* adjust for more/less fade */
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0b0b0b 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure content inside bg doesn't get blocked */
.bg .content {
  position: relative;
  z-index: 2;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px;
  width: 851px;
  position: relative;
  top: 0px;
  left: 100px;
  background-blend-mode: overlay;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  flex-wrap: wrap;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */
}

.csu-nav-link,
.csu-dropdown-link {
  text-decoration: none;
}

/* Tablet responsive for nav */
@media (max-width: 1024px) {
  nav ul {
    width: 90%;
    left: 5%;
    padding: 8px;
  }
}

@media (max-width: 1300px) {
  nav ul {
    width: 100%;
    left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .header-left {
    margin-bottom: 20px;
  }

  .header-right {
    margin-top: 20px;
  }
}

/* Base navigation styles */
.csu-main-nav .csu-nav-menu .csu-nav-item {
  position: relative;
  padding: 5px;
  /* Adjust as needed */
}

.csu-main-nav:hover .csu-nav-item:hover .csu-nav-link:hover {
  background-color: rgb(255, 255, 255);
  color: black;
  border-radius: 5px;
}

/* Active Page - Make it Bold */
.csu-main-nav .active .csu-nav-link {
  font-weight: bold;
}

.csu-main-nav .csu-nav-menu .csu-nav-item .csu-nav-link {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  font-size: 13px;
}

/* Tablet adjustment for nav links */
@media (max-width: 1024px) {
  .csu-main-nav .csu-nav-menu .csu-nav-item .csu-nav-link {
    padding: 15px;
    font-size: 12px;
  }
}

.csu-dropdown {
  position: relative;
}

.csu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 10;
  padding: 10px;
  max-width: 200px;
  border-radius: 5px;
  margin-top: -1px;
  /* very important addition */
  background: rgb(0, 0, 0);
  /* backdrop-filter: blur(10px); */
}

.csu-main-nav .csu-nav-item:hover>.csu-dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .csu-dropdown-menu {
    position: static;
    width: 100%;
    max-width: none;
  }
}

.csu-dropdown-menu .csu-dropdown-item {
  width: 100%;
  margin: 5px 0;
  /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); */
  opacity: 85%;
}

.csu-dropdown-menu .csu-dropdown-item .csu-dropdown-link {
  display: block;
  text-align: left;
  padding: 5px;
  color: rgb(255, 255, 255);
  width: 100%;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  /* background-color: rgba(0, 0, 0, 0.8); */
}

.csu-dropdown-item:hover .csu-dropdown-link {
  opacity: 90%;
  background: linear-gradient(100deg, rgb(205, 194, 194), rgb(86, 86, 86));
  color: aqua;
}

.csu-header-right .csu-demo-button {
  background: white;
  color: black;
  border: none;
  padding: 20px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Tablet responsive adjustment for demo button */
@media (max-width: 1024px) {
  .csu-header-right .csu-demo-button {
    padding: 15px 15px;
    font-size: 14px;
  }
}

.csu-header-right .csu-demo-button:hover {
  background: linear-gradient(100deg, #ff4d4d, black);
  color: white;
}

.hero-section {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  /* Add position relative for the background image */
}

.hero-section h1 {
  margin-top: -10%;
  font-size: 50px;
  margin-bottom: 1%;
  z-index: 1;
  /* Ensure text is above the image */
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 5%;
  z-index: 1;
  /* Ensure text is above the image */
  color: #e8e8e8;
}

/* Tablet responsive for hero section */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 40px;
    margin-top: -5%;
  }

  .hero-section p {
    font-size: 18px;
    width: 80%;
    margin: 0 auto 5% auto;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5em;
  }

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

.hero-section button {
  background-color: transparent;
  color: #fff;
  border: 0.5px solid white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1;
  /* Ensure button is above the image */
  margin-top: -3%;
  width: 180px;
  height: 40px;
  font-size: 12px;
}

.hero-section button:hover {
  background-color: transparent;
}

.services-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 90px;
  text-align: center;
  position: relative;
  margin-left: 150px;
  margin-right: 150px;
  box-shadow: 5px 5px 10px 0px black;
  font-size: medium;
  /* Corrected box-shadow */
}

/* Tablet responsive for services section */
@media (max-width: 1024px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 80px;
    margin-right: 80px;
    gap: 15px;
  }
}

@media (max-width: 1200px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.service-box-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-box {
  background-color: rgba(255, 255, 255, 0.05);
  /* Slight translucent white */
  padding: 10%;
  border-radius: 8.23px;
  border: 0.82px solid whitesmoke;
  z-index: 1;
  text-align: center;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(0.5px);
  /* Apply the blur */
  -webkit-backdrop-filter: blur(0.5px);
}

/* Tablet responsive for service boxes */
@media (max-width: 1024px) {
  .service-box {
    padding: 8%;
  }

  .service-box h3 {
    font-size: 18px;
  }

  .service-box p {
    font-size: 14px;
  }
}

.service-box {
  transition: transform 0.3s ease, background-color 0.3s ease, border-image 0.3s ease;
  /* Add initial styles if needed */
}

.service-box:hover {
  background-color: rgba(0, 0, 0, 0.681);
  border: 2px solid; /* This defines the border width */
  border-image: linear-gradient(to right, #67649F, #E4322E) 1;
  padding-top: 10%;
  padding-bottom: 10%;
  padding-left: 10%;
  padding-right: 10%;
  border-radius: 8.23px;
  transform: scale(1.05); /* Zoom pop effect */
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.service-box button {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  font-size: 1em;
}

.service-box button:hover {
  background-color: transparent;
  color: white;
}

.service-box h3 {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.bt1 {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bt1:hover {
  background-color: #ff1a1a;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 77, 77, 0.4);
}
/* home page finishes*/

.worldmap {
  background-image: url('world_map_darker_ver2.jpg');
  /* Replace with your actual path */
  background-size: cover;
}

.cyo-product-section {
  text-align: center;
  margin: 40px 0;
}

.cyo-product-section p {
  font-size: 30px;
  font-weight: 500;
}

/* Tablet responsive for product section heading */
@media (max-width: 1024px) {
  .cyo-product-section p {
    font-size: 26px;
  }
}
.body1 :hover{
  transform: scale(1.01);
}
.app-container {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  margin: auto;
  border: 0.5px solid gray;
  width: 80%;
  max-width: 1180px;
  background-color: transparent;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 525px;
  text-align: justify;
}

/* Tablet responsive for app container */
@media (max-width: 1024px) {
  .app-container {
    width: 90%;
    height: auto;
    min-height: 500px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .app-container {
    width: 95%;
    padding: 10px;
    height: fit-content;
  }
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2em;
  color: #ffffff;
  margin: 0;
}

.app-content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Tablet specific adjustment */
@media (max-width: 1024px) and (min-width: 993px) {
  .app-content {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 992px) {
  .app-content {
    flex-direction: column;
  }
}

.app-mockup {
  position: relative;
  width: 400px;
  height: auto;
  max-width: 100%;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: left;
  align-items: center;
}

/* Tablet responsive for app mockup */
@media (max-width: 1024px) and (min-width: 993px) {
  .app-mockup {
    width: 45%;
    margin-right: 20px;
  }
}

@media (max-width: 992px) {
  .app-mockup {
    margin-right: 0;
    margin-bottom: 30px;
    width: 95%;
    max-width: 400px;
  }
}

.app-mockup img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 576px) {
  .app-mockup img {
    max-width: 100%;
  }
}

.pencil {
  position: absolute;
  top: 70%;
  right: 3%;
  transform: translateY(-50%);
}

.pencil img {
  max-width: 100px;
  height: auto;
}

/* Tablet responsive for pencil */
@media (max-width: 1024px) {
  .pencil img {
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .pencil {
    right: 1%;
  }

  .pencil img {
    max-width: 60px;
  }
}

.divider {
  width: 100%;
  margin: 20px 0;
  height: 2px;
  background: linear-gradient(to right, #67649F, #E4322E);
}

.divider2 {
  width: 40%;
  justify-self: center;
  margin: 20px 0;
  height: 2px;
  background: white;
}

.app-text-content {
  width: 50%;
  padding: 5px;
}

/* Tablet responsive for text content */
@media (max-width: 1024px) and (min-width: 993px) {
  .app-text-content {
    width: 45%;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .app-text-content {
    width: 100%;
    text-align: center;
    height: fit-content;
  }
}

.app-text-content h3 {
  font-size: 27px;
  color: white;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.app-text-content p {
  font-size: 25px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: justify; /* ← Add this line */
}


/* Tablet responsive for text content */
@media (max-width: 1024px) {
  .app-text-content h3 {
    font-size: 22px;
  }

  .app-text-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .app-text-content h3 {
    font-size: 1.8em;
  }

  .app-text-content p {
    font-size: 1.2em;
  }
}

.app-text-content .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #171213;
  color: #fff;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.app-text-content .button:hover {
  background-color: #ffffff;
  color: black;
}

/* second page finish */

/* General Body Styling */
.body2 {
  margin: 0;
  padding: 0;
  color: #eee;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body2 :hover{
  transform: scale(1.01);
}
/* Shield Heading */
.shield-heading {
  text-align: center;
  margin-top: 20px;
  width: 462px;
  height: 96px;
  padding-bottom: 125px;
  padding-top: 10px;
}

.shield-heading p {
  font-size: 40px;
  font-weight: 500;
  color: #ddd;
}

/* Tablet responsive for shield heading */
@media (max-width: 1024px) {
  .shield-heading {
    width: 80%;
    height: auto;
    padding-bottom: 80px;
  }

  .shield-heading p {
    font-size: 34px;
  }
}

/* Responsive Heading */
@media (max-width: 992px) {
  .shield-heading {
    width: 90%;
    height: auto;
    padding-bottom: 60px;
  }

  .shield-heading p {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .shield-heading p {
    font-size: 26px;
  }
}

/* Shield Container */
.shield-container {
  width: 1180px;
  height: 500px;
  background: transparent;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid grey;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  text-align: justify;
}

/* Tablet responsive for shield container */
@media (max-width: 1024px) {
  .shield-container {
    width: 90%;
    height: auto;
    min-height: 450px;
    padding: 15px;
  }
}

/* Responsive Container */
@media (max-width: 992px) {
  .shield-container {
    flex-direction: column;
    width: 95%;
    height: auto;
  }
}

/* Shield Image */
.shield-image {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-image img {
  height: 360px;
  width: 350px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  transition: all 0.3s ease;
  /* Smooth resizing */
}

/* Tablet responsive for shield image */
@media (max-width: 1024px) {
  .shield-image img {
    height: 300px;
    width: 300px;
  }
}

/* Responsive Image */
@media (max-width: 768px) {
  .shield-image img {
    width: 70%;
    height: auto;
    max-width: 300px;
  }
}

/* Shield Text */
.shield-text {
  flex: 2;
  padding: 10px;
}

.shield-text p {
  font-size: 26px;
  line-height: 1.395;
  color: #ccc;
  font-weight: 400;
}

/* Tablet responsive for shield text */
@media (max-width: 1024px) {
  .shield-text p {
    font-size: 22px;
  }
}

/* Responsive Text */
@media (max-width: 768px) {
  .shield-text {
    text-align: center;
  }

  .shield-text p {
    font-size: 18px;
  }
}

/* third page finish */

.challenges-page-container {
  background-color: transparent;
}
/* .challenges-page-container :hover{
  transform: scale(1.01);
} */
.content-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 10px;
  width: 1200px;
  margin-top: 0px;
}

/* Tablet responsive for content wrapper */
@media (max-width: 1024px) {
  .content-wrapper {
    width: 90%;
    padding: 15px;
  }
}

@media (max-width: 1300px) {
  .content-wrapper {
    width: 95%;
  }
}

h2 {
  color: rgb(255, 255, 255);
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* Tablet responsive for h2 */
@media (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 24px;
    font-weight: 500;
  }
}

h3 {
  color: rgb(255, 255, 255);
  font-size: 40px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
}

/* Tablet responsive for h3 */
@media (max-width: 1024px) {
  h3 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  h3 {
    font-size: 28px;
    font-weight: 500;
  }
}

.service-grid {
  margin-top: 50px;
  display: grid;
  width: 1150px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  margin-left: -50px;
}

/* Tablet responsive for service grid */
@media (max-width: 1024px) {
  .service-grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 5%;
    gap: 15px;
  }
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    width: 100%;
  }
}

.service-item {
  margin-top: 15px;
  background-color: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 10px;
  height: 200px;
  width: 320px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item:hover {
  transform: scale(1.1); /* slightly bigger */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* deeper shadow */
  border: 2px solid; /* This defines the border width */
  border-image: linear-gradient(to right, #67649F, #E4322E) 1;
}

/* Tablet responsive for service item */
@media (max-width: 1024px) {
  .service-item {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 1200px) {
  .service-item {
    width: 100%;
    height: auto;
    min-height: 175px;
  }
}

.service-title {
  font-weight: 500;
  color: rgb(216, 207, 207);
  font-size: 14px;
  margin-top: 25px;
}

/* Tablet responsive for service title */
@media (max-width: 1024px) {
  .service-title {
    font-size: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 16px;
  }
}

.service-text {
  color: rgb(241, 241, 241);
}

.service-item p {
  color: aliceblue;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
  line-height: 25px;
}

/* Tablet responsive for service item text */
@media (max-width: 1024px) {
  .service-item p {
    font-size: 13.5px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .service-item p {
    font-size: 13px;
  }
}

/* fourth page ends */

/* fifth page start */

.body5 {
  margin: 0;
  padding-top: 0;
  color: #eee;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.body5 :hover{
  transform: scale(1.01);
}
.shield-heading {
  height: auto;
  width: 100%;
  max-width: 671px;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* Tablet responsive for shield heading in fifth page */
@media (max-width: 1024px) {
  .shield-heading {
    max-width: 80%;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .shield-heading {
    font-size: 18px;
    padding: 10px;
  }
}

.data-breach-container {
  width: 100%;
  max-width: 1228px;
  min-height: 422px;
  background: transparent;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin: -20px;
}

.data-breach-content {
  display: flex;
  background-color: #171213;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-wrap: wrap;
  width: 100%;
  text-align: justify;
}

@media (max-width: 992px) {
  .data-breach-content {
    flex-direction: column;
  }
}

.data-breach-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.data-breach-image img {
  width: 464px;
  height: 312px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .data-breach-image img {
    width: 100%;
    height: auto;
  }
}

.data-breach-text {
  flex: 2;
  padding: 40px;
  background-color: #171213;
  color: #fdfcfc;
}

@media (max-width: 768px) {
  .data-breach-text {
    padding: 18px;
    font-size: 18px;
  }
}

h1 {
  font-size: 25px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 20px;
  }
}

p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  p {
    font-size: 20px;
  }
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: 1px solid white;
}

.button:hover {
  background-color: white;
  color: black;
}


/* fifth page ends */

.core-services-section {
  margin: -10px;
  padding: 0;
  background-color: #171213;
  color: #fff;
}

.core-services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  flex-wrap: wrap;
}

.headings-wrapper {
  text-align: center;
}

.core-services-header h1 {
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  font-size: 30px;
  margin-bottom: 10px;
  color: #E4322E;
  font-weight: 700;
}

.core-services-header h2 {
  font-size: 40px;
  font-weight: 500;
}

.core-services-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border: 0.05px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  border-radius: 10px;
}
.core-services-container:hover{
  transform: scale(1.01);
}
.core-services-left-content {
  flex: 1;
  padding: 20px;
}

.core-services-left-content p {
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
}

.core-services-know-more {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
}
.core-services-know-more:hover{
  background-color: white;
  color: black;
}

.core-services-arrow {
  margin-left: 5px;
}

.core-services-right-content {
  width: 610px;
  height: 383px;
  flex: 2;
  padding: 20px;
  overflow-y: auto;
  color: #FFFFFF1C;
  border-radius: 16px;
}

.core-services-scrollable-content {
  padding-right: 20px;
}

.core-service-item1,
.core-service-item2,
.core-service-item3 {
  background-color: #171213;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 0.05px solid rgba(255, 255, 255, 0.3);
}

.core-service-number {
  line-height: 108.02px;
  font-size: 90px;
  color: rgb(72, 70, 70);
  margin-bottom: 10px;
}

.core-service-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.core-service-description {
  line-height: 1.6;
  color: #AEAEAE;
}

/* 🔥 Mobile Responsive */
@media (max-width: 992px) {
  .core-services-container {
    flex-direction: column;
    width: 95%;
  }
}

@media (max-width: 768px) {
  .core-services-header h1 {
    font-size: 1.7em;
  }

  .core-services-header h2 {
    font-size: 1.2em;
  }

  .core-services-left-content p {
    font-size: 1.3em;
  }

  .core-services-right-content {
    width: 100%;
    height: auto;
    max-height: 400px;
  }

  .core-service-number {
    font-size: 2em;
    line-height: normal;
  }

  .core-service-title {
    font-size: 1.3em;
  }
}



/* sixth page ends */

.takeaways2024Wrapper {
  /* margin-top: 15vh; */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110vh;
  overflow: hidden;
  position: relative;

  background: linear-gradient(to bottom, #171213,
      #171213 80%),
    /* Bottom fade / linear-gradient(rgb(35, 24, 18), rgba(0, 0, 0, 0)), / Overall dark overlay */
    url('binary.png') center center / cover no-repeat;
  background-blend-mode: multiply;
  margin-top: 1%;
}

.takeawaysMainHeading {
  text-align: center;
  margin-bottom: 10vh;
  font-size: clamp(24px, 5vw, 40px);
  letter-spacing: 1px;
  font-weight: 500;
}

.newsletterCarouselOuter {
  position: relative;
  width: 90vw;
  max-width: 1500px;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  margin: 0 auto;
}

.carouselSemicircleTrack {
  position: absolute;
  width: 100%;
  height: 150vh;
  max-height: 1800px;
  top: 5vh;
  left: 0;
  border-top: 2px dashed rgba(255, 0, 0, 0.5);
  border-radius: 50% 50% 0 0;
}

.newsletterSlideItem {
  position: absolute;
  width: 20vw;
  max-width: 322px;
  min-width: 240px;
  height: 40vh;
  max-height: 378px;
  min-height: 300px;
  border-radius: 12px;
  background-color:
    #171213;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5vh 1.5vw;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.8s ease, transform 0.5s ease;
  overflow: hidden;
  transform-origin: center 500px;
  z-index: 10;
}

.newsletterSlideItem.activeNewsletterSlide {
  transform: scale(1.05);
  z-index: 20;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.newsletterSlideItem:hover {
  transform: scale(1.05);
  z-index: 15;
}

.newsletterImageContainer {
  width: 100%;
  height: 70%;
  border-radius: 8px;
  overflow: hidden;
}

.newsletterImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletterInfoBlock {
  text-align: center;
  margin-top: 1vh;
  width: 100%;
}

.newsletterInfoBlock p {
  margin: 0.5vh 0;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
}

.newsletterDownloadButton {
  margin-top: 3vh;
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: clamp(16px, 1.2vw, 20px);
  transition: background-color 0.3s;
  width: 10vw;
  max-width: 167px;
  min-width: 120px;
  height: 48px;
  box-shadow: none;
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.newsletterDownloadButton:hover {
  background-color: #444;
}

.newsletterSlideItem:nth-child(1) .newsletterImageContainer {
  background-color: #0f3;
}

.newsletterSlideItem:nth-child(2) .newsletterImageContainer {
  background-color: #39f;
}

.newsletterSlideItem:nth-child(3) .newsletterImageContainer {
  background-color: #0f9;
}

.newsletterSlideItem:nth-child(4) .newsletterImageContainer {
  background-color: #f39;
}

.newsletterSlideItem:nth-child(5) .newsletterImageContainer {
  background-color: #f93;
}

@media (max-width: 1024px) {
  .newsletterCarouselOuter {
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    position: relative;
  }

  .takeaways2024Wrapper {
    margin-bottom: -20vh;
    /* Using vh instead of pixels */
    min-height: 80vh;
  }

  .takeawaysMainHeading {
    margin-top: -1vh;
    /* Using vh instead of pixels */
  }

  .carouselSemicircleTrack {
    display: none;
  }

  .newsletterSlideItem {
    position: relative !important;
    flex: 0 0 auto;
    width: 80vw;
    max-width: 260px;
    height: auto;
    transform: none !important;
    top: unset !important;
    left: unset !important;
    scroll-snap-align: center;
    z-index: 1 !important;
  }

  .newsletterImageContainer {
    width: 100%;
    height: 180px;
  }

  .newsletterDownloadButton {
    display: block;
    position: relative;
    bottom: unset;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3vh;
    width: 40vw;
    max-width: 167px;
  }
}



/* seventh page ends */


.body7 {
  width: 100%;
  background-color: #171213;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Changed to min-height for better mobile view */
  padding: 20px;
}

.cursor-effect {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, rgba(128, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}

.cybersecurity-container {
  background-color: #171213;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #eee;
  width: 1200px;
  max-width: 100%;
  height: auto;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  position: relative;
  /* Needed for cursor effect positioning */
  flex-wrap: wrap;
  gap: 30px;
}
.cybersecurity-container:hover{
  transform: scale(1.01);
}
.left-content {
  width: 48%;
  font-size: 35px;
  line-height: 1.5;
  font-weight: 600;
  text-align: left;
}

.right-content {
  width: 45%;
  text-align: justify;
}

.right-content p {
  font-size: 25px;
  font-weight: 400;
}

.certification-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge img {
  width: 150px;
  height: 140px;
  object-fit: contain;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive part */
@media (max-width: 992px) {
  .cybersecurity-container {
    margin-top: 15vh;
    flex-direction: column;
    padding: 30px;
  }

  .left-content,
  .right-content {
    width: 100%;
    text-align: center;
  }

  .left-content {
    font-size: 28px;
  }

  .right-content p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .left-content {
    font-size: 24px;
  }

  .right-content p {
    font-size: 20px;
  }

  .badge img {
    width: 120px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .left-content {
    font-size: 20px;
  }

  .right-content p {
    font-size: 18px;
  }

  .badge img {
    width: 100px;
    height: 90px;
  }
}


/* eighth page ends */

.page-container {
  background-color: #171213;
  color: white;
  min-height: 475px;
  text-align: center;
  padding: 50px;
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: -70px;
  box-sizing: border-box;
}

.main-container {
  margin: auto;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background-color: #171213;
  box-sizing: border-box;
}
.main-container:hover{
  transform: scale(1.01);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Added for responsiveness */
  gap: 20px;
}

.header-container h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.highlight {
  color: rgb(173, 27, 27);
}

.button-container {
  text-align: right;
}

.explore-button {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.explore-button:hover {
  background-color: white;
  color: black;
}

.divider1 {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.26);
  margin: 50px 0 20px 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  /* Added for responsiveness */
  gap: 20px;
}

.stat-box {
  text-align: center;
  font-size: 78px;
  font-weight: 700;
  flex: 1 1 30%;
  min-width: 200px;
}

.stat-box p {
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(to right, #e4322e, #726cbcb7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 992px) {
  .header-container h2 {
    font-size: 26px;
    text-align: center;
  }

  .button-container {
    text-align: center;
    width: 100%;
  }

  .explore-button {
    margin-top: 10px;
  }

  .stats-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .stat-box {
    font-size: 58px;
  }

  .stat-box p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .page-container {
    padding: 30px 20px;
  }

  .main-container {
    padding: 30px 20px;
  }

  .header-container h2 {
    font-size: 22px;
  }

  .stat-box {
    font-size: 48px;
  }

  .stat-box p {
    font-size: 16px;
  }

  .explore-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}



/* ninth page ends */

.partner-carousel-page-container {
  background-color: #171213;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  color: #fff;
  overflow-x: hidden;
}

.partner-carousel-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.partner-carousel-title {
  text-align: center;
  margin-bottom: 20px;
}

.partner-carousel-title h2 {
  font-size: 40px;
  font-weight: 700;
}

.partner-divider {
  width: 25%;
  margin: 20px auto;
  height: 2px;
  background: white;
}

.partner-carousel-track {
  display: inline-flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.partner-card {
  min-width: 180px;
  height: 120px;
  margin: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Image Styling */
.partner-card img,
.partner-card .overlay img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.partner-card img {
  opacity: 1;
}

.partner-card .overlay img {
  opacity: 0;
}

.partner-card:hover img {
  opacity: 0;
}

.partner-card:hover .overlay img {
  opacity: 1;
}

/* Pause animation on hover */
.partner-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partner-card {
    min-width: 140px;
    height: 100px;
  }

  .partner-carousel-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .partner-card {
    min-width: 120px;
    height: 90px;
  }

  .partner-carousel-title h2 {
    font-size: 28px;
  }

  .partner-divider {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .partner-card {
    min-width: 100px;
    height: 80px;
    margin: 5px;
  }

  .partner-carousel-title h2 {
    font-size: 24px;
  }

  .partner-divider {
    width: 50%;
  }
}

/* industry partner ends */

.body8 {
  background-color: #171213;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 73vh;
  margin: 0;
  padding: 20px;
}

.brochure-container {
  background-color: #171213;
  color: #eee;
  width: 100%;
  max-width: 1280px;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  position: relative;
  height: auto;
}

.brochure-container h2 {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(to right, #ff0400, #6865b5f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brochure-container p {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}

.brochure-container .arrow {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #E4322E, #7E1C19);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(90deg);
}

.brochure-container .download-button {
  background-color: #171213;
  color: #eee;
  padding: 0px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 167px;
  height: 48px;
}

.brochure-container .download-button:hover {
  background-color: red;
  border: 0.5px solid grey;
}

/* ----------------- Responsive Styles ----------------- */

@media (max-width: 768px) {
  .brochure-container {
    padding: 30px 15px;
  }

  .brochure-container h2 {
    font-size: 28px;
  }

  .brochure-container p {
    font-size: 20px;
  }

  .brochure-container .arrow {
    font-size: 40px;
  }

  .brochure-container .download-button {
    width: 140px;
    height: 45px;
    font-size: 18px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .body8 {
    padding: 10px;
  }

  .brochure-container h2 {
    font-size: 24px;
  }

  .brochure-container p {
    font-size: 18px;
  }

  .brochure-container .arrow {
    font-size: 30px;
  }

  .brochure-container .download-button {
    width: 130px;
    height: 42px;
    font-size: 16px;
  }
}




/* tenth page ends */


.schedule-page-container {
  background-color: #171213;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  margin: 0;
  padding: 20px;
}

.demo-content-wrapper {
  text-align: center;
}

.demo-heading {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.demo-text {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #AEAEAE;
  font-weight: 500;
}

.demo-button {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
  width: 240px;
  height: 52px;
}

.demo-button:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.demo-button::after {
  content: '\00BB';
  margin-left: 10px;
}

/* ----------------- Responsive Styles ----------------- */

@media (max-width: 768px) {
  .schedule-page-container {
    height: auto;
    padding: 40px 20px;
  }

  .demo-heading {
    font-size: 36px;
  }

  .demo-text {
    font-size: 16px;
  }

  .demo-button {
    width: 200px;
    height: 48px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .demo-heading {
    font-size: 28px;
  }

  .demo-text {
    font-size: 14px;
  }

  .demo-button {
    width: 180px;
    height: 44px;
    font-size: 13px;
  }
}


/* 11th page ends */



/* 12th page ends */

.last-page-container {
  background: linear-gradient(to bottom, #171213, #A00D2B);
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

.cyber-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px;
  flex-grow: 1;
  height: 900px;
}

.cyber-header {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 20px 0;
}

.cyber-header img {
  height: 76px;
  width: 272.98px;
}

.cyber-footer {
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  border-top: 1px solid #333;
}

.cyber-footer>div {
  flex: 1;
  margin: 0 15px;
  box-sizing: border-box;
}

.cyber-footer h3 {
  font-size: 18.73px;
  text-align: left;
  font-weight: bold;
}

.cyber-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 204px;
  height: 210px;
}

.cyber-footer ul li {
  margin-bottom: 8px;
}

.cyber-footer a {
  color: #8F8F8F;
  text-decoration: none;
  font-size: 14.98px;
  font-weight: 500;
  line-height: 2;
}

.cyber-offices {
  display: flex;
  flex-direction: column;
  width: 337px;
  height: 263px;
}

.cyber-contact-us {
  width: 291px;
  height: 240px;
  font-size: 25px;
}

.cyber-follow-us {
  width: 158.625px;
  height: 80px;
}

.cyber-offices div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.cyber-contact-us div p {
  font-size: 15px;
  font-weight: 500;
  color: #8F8F8F;
  margin-top: 0px;
}

.cyber-offices p {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 5px 0;
}

.cyber-offices img {
  width: 35px;
  height: 30px;
  margin-right: 10px;
}

.cyber-contact-us img {
  width: 30px;
  height: 20px;
}

.csu-cyber-contact-us img i {
  width: 30px;
}

.cyber-follow-us a {
  display: inline-block;
  margin-right: 10px;
}

.cyber-follow-us a:hover {
  color: white;
}

.cyber-follow-us a i {
  font-size: 27px;
}

.cyber-divider3 {
  width: 1280px;
  justify-self: left;
  height: 2px;
  background: white;
  margin-top: 100px;
}

.cyber-bottom-section {
  background-color: linear-gradient(to bottom, #A00D2B);
  /* Note: should be background-image for gradients */
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1290px;
}

.text-content {
  width: 676px;
  height: 97px;
}

.cyber-bottom-section h6 {
  font-size: 30px;
  font-weight: 700;
}

.cyber-bottom-section p {
  font-size: 30px;
  font-weight: 700;
  color: red;
  margin-top: 10px;
}

.cyber-bottom-section button {
  width: 238px;
  height: 52px;
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 12px 30px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
  white-space: nowrap;
  font-weight: 700;
}

.cyber-bottom-section button:hover {
  background-color: white;
  color: black;
}

.cyber-iso-logos {
  display: flex;
  align-items: center;
  margin-top: 20px;
  width: 185px;
  height: 81px;
}

.cyber-iso-logos img {
  height: 81px;
  margin: 0 15px;
}

.cyber-text-and-logos-container {
  display: flex;
  flex-direction: column;
}

.cyber-bottom-button-container {
  display: flex;
  align-items: center;
}

.cyber-footer>div:nth-child(1) ul li a:hover,
.cyber-footer>div:nth-child(2) ul li a:hover {
  color: red;
  cursor: pointer;
}

/* ================== TABLET RESPONSIVE START ================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .last-page-container {
    background: linear-gradient(to bottom, #171213, #A00D2B);
    background-size: cover;
    background-position: center;
  }

  .cyber-container {
    padding: 40px 30px;
    height: auto;
  }

  .cyber-header img {
    width: 220px;
    height: auto;
  }

  .cyber-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 20px;
  }

  .cyber-footer > div {
    margin: 0;
    width: 100%;
  }

  .cyber-footer h3 {
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .cyber-footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #A00D2B;
  }

  .cyber-footer ul {
    width: 100%;
    height: auto;
  }

  .cyber-offices, 
  .cyber-contact-us {
    width: auto;
    height: auto;
  }

  .cyber-offices div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
  }

  .cyber-contact-us div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
  }

  .cyber-contact-us div p {
    margin: 0;
  }

  .cyber-follow-us {
    grid-column: span 2;
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cyber-follow-us h3 {
    align-self: center;
    text-align: center;
  }
  
  .cyber-follow-us h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cyber-follow-us .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .cyber-divider3 {
    width: 100%;
    margin: 30px auto;
  }

  .cyber-bottom-section {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .cyber-text-and-logos-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
  }

  .text-content {
    width: 60%;
    height: auto;
  }

  .cyber-bottom-section h6 {
    font-size: 24px;
    margin: 0;
  }

  .cyber-bottom-section p {
    font-size: 22px;
    margin-top: 5px;
  }

  .cyber-iso-logos {
    width: auto;
    height: auto;
    margin-top: 0;
  }

  .cyber-iso-logos img {
    height: 60px;
    margin: 0 10px;
  }

  .cyber-bottom-section button {
    width: 220px;
    height: 50px;
    font-size: 14px;
    margin: 0 auto;
    display: block;
  }
}

/* ================== MOBILE RESPONSIVE START ================== */
@media (max-width: 767px) {

  .last-page-container {
    background: linear-gradient(to bottom, #171213, #A00D2B);
    background-size: cover;
    background-position: center;
    padding: 10px;
  }

  .cyber-container {
    padding: 30px 20px;
    height: auto;
  }

  .cyber-header img {
    width: 180px;
    height: auto;
  }

  .cyber-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .cyber-footer>div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .cyber-footer h3 {
    text-align: center;
    font-size: 18px;
  }

  .cyber-footer ul {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }

  .cyber-footer ul li {
    margin-bottom: 6px;
  }

  .cyber-footer a {
    font-size: 14px;
  }

  .cyber-offices,
  .cyber-contact-us,
  .cyber-follow-us {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .cyber-offices div,
  .cyber-contact-us div {
    flex-direction: column;
    align-items: center;
  }

  .cyber-offices img,
  .cyber-contact-us img {
    margin-bottom: 8px;
  }

  .cyber-contact-us p,
  .cyber-offices p {
    text-align: center;
  }

  .cyber-follow-us {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .cyber-follow-us a i {
    font-size: 26px;

  }

  .cyber-bottom-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    width: 100%;
  }

  .cyber-bottom-section .text-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .cyber-bottom-section h6 {
    font-size: 24px;
  }

  .cyber-bottom-section p {
    font-size: 20px;
    margin-top: 8px;
  }

  .cyber-bottom-section button {
    margin-top: 20px;
    width: 200px;
    height: 48px;
    font-size: 14px;
  }

  .cyber-iso-logos {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
  }

  .cyber-iso-logos img {
    width: 60px;
    margin: 10px;
    height: auto;
  }

  .cyber-divider3 {
    width: 90%;
    margin: 50px auto 20px auto;
  }

  .fa-square-phone {
    vertical-align: middle;
    margin-top: -20px;
  }
}

/* ================== MOBILE RESPONSIVE END ================== */


.data-breach-container1::after {
  content: "";
  position: absolute;
  top: 300%;
  right: 0;
  width: 50vw;
  height: 50vw;
  max-width: 999px;
  max-height: 999px;
  background: radial-gradient(circle, rgba(65, 65, 126, 0.274), transparent 70%);
  border-radius: 50%;
  clip-path: inset(0 50% 0 0);
  /* shows left half of circle */
  transform: translateX(50%);
  z-index: 0;
  pointer-events: none;

}

*.data-breach-container2::before {

  content: "";
  position: absolute;
  top: 400%;
  /* vertical position */
  left: 0;
  /* stick to the left edge */
  width: 50vw;
  height: 50vw;
  max-width: 950px;
  max-height: 950px;
  background: radial-gradient(circle, rgba(245, 195, 151, 0.144), transparent 70%);
  border-radius: 50%;
  clip-path: inset(0 0 0 50%);
  /* keeps only right half */
  transform: translateX(-50%);
  /* pulls half of the circle outside */
  z-index: 0;
  pointer-events: none;
}



