/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    background: white;

}
/* Make the entire body content centered */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

/* Ensure containers are centered with padding */
.container, .content, .section, .card {
  margin: 0 auto;
  padding: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix width on small screens */
@media (max-width: 1200px) {
  .container, .content, .section, .card {
    width: 90%; /* You can adjust to 95% or 100% */
    padding: 10px;
  }
}
.top-banner {
    background: #484249cc;
    color: #fff;
    padding: 20px 5% 20px 5%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    width: 120px; /* Adjust size */
    height: auto;
    margin-right: 15px; /* Space between logo & text */
}

.navbar {
    width: auto;
  display: flex;
  align-items: center;
  justify-content: center; /* Center everything */
  background-color: black;
  padding: 10px 20px;
  position: relative;
}

/* Logo on the left */
.logo {
  position: left;
  left: 20px;
  height: 50px;
}

/* Centered nav items */
.nav-center {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

/* Buttons styling */
.navbar button {
  background-color: #FF8B1E;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.navbar button:hover {
  background-color: #FF8B1E;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  z-index: 1000;
  flex-direction: column;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content button {
  background: transparent;
  color: #FF8B1E;
  border: none;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
  font-weight: bold;
}

.dropdown-content button:hover {
  background-color: #ffe0b3;
}

/* Hero Section */
.hero1 {
    background: #FF8B1E;
    color: black;
    text-align: center;
    padding: 40px;
}

/* Service Section */
.service {
    display: flex;
    justify-content: space-between;
    background: white;
    max-width: 1200px;
    margin: 10px auto;
  gap: 10px;
}

.service img {
    width: 80px;
    height: auto;
    margin-right: 20px;
}

.service .text {
    flex: 1;
}















































/* General Sections */
.section, .process, .test, .contact {
    background: white;
    padding: 20px;
    margin: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step img {
    width: 200px;
    height: auto;
    margin-right: 15px;
}

.step h3 {
    margin: 10px;
}

/* Testing Section */
.test ul {
    list-style: none;
    padding: 0;
}

.test ul li {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}





/* Content Sections */
.section, .threat, .security, .testing, .test, .contact {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Image & Text Layout */
.threat, .security, .testing {
    display: flex;
    align-items: center;
}

.threat img, .security img, .testing img {
    width: 200px;
    height: auto;
    margin-right: 15px;
}
.test-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.column {
    flex: 1;
    list-style-type: none;
    padding: 0;
}

.column li {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}


/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Footer Styling */
.site-footer {
    background: black;
    color: white;
    padding: 30px;
    text-align: center;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Info */
.footer-info {
    text-align: center;
    max-width: 300px;
}

.footer-info img {
    max-width: 100vw;
    height: auto;
    margin-bottom: 10px;
}

/* Footer Links */
.footer-links {
    max-width: 250px;
}

.footer-links h4 {
    color: orange;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}
.blog-sidebar {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* Links */
a {
    color: #FF8B1E;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}




/* Header */
.blog-header {
    background: #1c2e8a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Blog Container */
.blog-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
}

/* Blog Posts */
.blog-posts {
    flex: 2;
}

.post {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post h2 {
    color: #1c2e8a;
}

.post .date {
    font-size: 12px;
    color: gray;
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Links */
a {
    color: #FF8B1E;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}






/* Dual Slider Layout */
.dual-slider {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

/* Main Image Side */
.image-container {
    flex: 1;

}

.image-container img {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100%;
    border-radius: 8px;
}

/* Related Points Side */
.points-container {
    flex: 1;
    display: flex;
}

.point {
    display: none;
}

.point.active {
    display: block;
}

.point img {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100%;
    border-radius: 5px;
}



/* Default padding for larger screens */
.your-class {
  padding-left: 40px;
  padding-right: 40px;
}

/* Adjust padding for tablets */
@media (max-width: 1200px) {
  .your-class {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Adjust padding for mobile phones */
@media (max-width: 1200px) {
  .your-class {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.your-class {
  padding-left: 5%;
  padding-right: 5%;
}
