/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 50%, #0a1a2a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  position: absolute;
  left: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  min-height: 12rem;
  min-width: 12rem;
}

.logo:hover {
  color: #00d4ff;
}

.logo i {
  font-size: 2rem;
}

.logo-icon {
  width: 12rem !important;
  height: 12rem !important;
  transition: transform 0.3s ease;
  max-width: none !important;
  max-height: none !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  object-fit: contain;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00d4ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: 0.3s;
}


/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 0;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #b0c4de;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border-left-color: #00d4ff;
  padding-left: 2rem;
} /* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a1a2a 0%, #1a3a4a 50%, #0a1a2a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #b0c4de;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Main Services Section */
.main-services {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(26, 58, 74, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: #b0c4de;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ffffff;
}

/* Risk & Compliance Services */
.compliance-services {
  padding: 100px 0;
  text-align: center;
}

.compliance-services h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.compliance-services > p {
  font-size: 1.1rem;
  color: #b0c4de;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.compliance-card {
  background: linear-gradient(
    135deg,
    rgba(0, 150, 204, 0.1),
    rgba(26, 42, 58, 0.2)
  );
  border: 1px solid rgba(0, 150, 204, 0.2);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.compliance-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 150, 204, 0.5);
  box-shadow: 0 15px 35px rgba(0, 150, 204, 0.2);
}

.compliance-icon {
  background: linear-gradient(45deg, #0099cc, #006699);
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 153, 204, 0.3);
}

.compliance-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.compliance-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.compliance-card p {
  color: #b0c4de;
  line-height: 1.6;
}

/* Services by Industry */
.services-by-industry {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.services-by-industry h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.services-by-industry > p {
  font-size: 1.1rem;
  color: #b0c4de;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(26, 58, 74, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 18px 35px rgba(0, 212, 255, 0.2);
}

.industry-icon {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.industry-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.industry-card p {
  color: #b0c4de;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Improve Security Posture */
.improve-security {
  padding: 100px 0;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.security-text p {
  color: #b0c4de;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.security-points {
  margin-top: 2rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #b0c4de;
}

.point i {
  color: #00d4ff;
  font-size: 1.2rem;
}

.security-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-graphic {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 153, 204, 0.2)
  );
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.security-graphic::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px dashed rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.security-graphic i {
  font-size: 4rem;
  color: #00d4ff;
  z-index: 2;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* What is Cyber Security */
.what-is-cyber {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.3);
}

.cyber-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cyber-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-graphic {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    rgba(0, 150, 204, 0.1),
    rgba(26, 42, 58, 0.2)
  );
  border: 2px solid rgba(0, 150, 204, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.cyber-graphic i {
  font-size: 4rem;
  color: #0099cc;
}

.cyber-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cyber-text p {
  color: #b0c4de;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cyber-points {
  margin: 2rem 0;
}

.read-more-btn {
  background: linear-gradient(45deg, #0099cc, #006699);
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 153, 204, 0.3);
}

/* Ready Section */
.ready-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 153, 204, 0.1)
  );
}

.ready-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.ready-section p {
  font-size: 1.1rem;
  color: #b0c4de;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 1rem;
  max-height: 15rem;
  overflow: hidden;
  transform: translateY(-1rem);
}

.footer-logo i {
  font-size: 2rem;
}

.footer-logo .logo-icon {
  width: 15rem !important;
  height: 15rem !important;
  max-width: 15rem !important;
  max-height: 15rem !important;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

.footer-section h3 {
  color: #333333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #666666;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d4ff;
}


.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  .logo {
    position: static;
  }


  .hamburger {
    display: flex;
    position: static;
  }

  .nav-menu {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    margin-top: 1rem;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.8);
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .security-content,
  .cyber-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .service-card,
  .compliance-card,
  .industry-card {
    padding: 1.5rem;
  }

  .security-graphic,
  .cyber-graphic {
    width: 250px;
    height: 250px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Ensure white header and footer on all pages */
body .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
}

body .footer {
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Override any dark backgrounds that might be applied */
.navbar[style*="background"] {
  background: rgba(255, 255, 255, 0.95) !important;
}

.footer[style*="background"] {
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0099cc, #006699);
}
