* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #032c56;
  color: #d1d5db;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  gap: 0.15rem;
  font-size: 1.4rem;
  align-items: center;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}

.logo img {
  width: 6.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: #06b6d4;
}

.services-info {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: #9ca3af;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .dropdown-content {
  display: none;
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
}

.mobile-nav .dropdown-content.active {
  display: block;
}

.mobile-nav .dropdown-content a {
  padding: 0.75rem 1rem;
  color: #d1d5db;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.mobile-nav .dropdown-content a:hover {
  color: #06b6d4;
}

/* Hero Section */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("public/lovable-uploads/0d1cce92-4edf-40b3-9175-ed72b179217f.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(17, 24, 39, 0.8),
    rgba(17, 24, 39, 0.6)
  );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(6, 182, 212, 0.1),
    transparent 50%
  );
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: normal;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #f3f4f6;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #06b6d4, #2563eb);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #06b6d4;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "";
  width: 0.25rem;
  height: 0.75rem;
  background-color: #06b6d4;
  border-radius: 0.125rem;
  margin-top: 0.5rem;
  animation: pulse 2s infinite;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section.alt {
  background-color: rgba(31, 41, 55, 0.5);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #06b6d4;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.about-image {
  width: 100%;
  margin-top: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* .mission-image img {
  width: 70%;
} */

.about-right h3, .about-left h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #06b6d4;
}

.about-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.feature-list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #06b6d4;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  margin-left: 0.5rem;
}

/* ... keep existing code (all other styles remain the same) */

/* Footer */
.footer {
  background-color: #1f2937;
  padding: 3rem 0;
  border-top: 1px solid #374151;
}

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

.footer-section h4 {
  font-weight: normal;
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #06b6d4;
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background-color: #374151;
  border-radius: 0.5rem;
  text-decoration: none;
  color: white;
  transition: background-color 0.2s ease;
  text-align: center;
}

.shortcut-item:hover {
  background-color: #06b6d4;
}

.shortcut-item span:first-child {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.shortcut-item span:last-child {
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: #06b6d4;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.1);
  background-color: #0891b2;
}

/* ... keep existing code (all remaining styles and animations) */

/* Responsive Design */


@media (max-width: 640px) {
  .nav {
    padding: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Journey Section */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.journey-card {
  background-color: #1f2937;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #374151;
}

.journey-card:hover {
  transform: scale(1.05);
  background-color: #374151;
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.journey-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.journey-card-content {
  padding: 1.5rem;
}

.journey-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.journey-card p {
  color: #9ca3af;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid #374151;
}

.service-card:hover {
  transform: scale(1.05);
  background-color: #374151;
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #d1d5db;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: rgba(6, 182, 212, 0.5);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: normal;
  color: #06b6d4;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: #9ca3af;
  font-weight: normal;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
}
.contact-icon img {
  width: 32px;
  height: 100%;
}
.contact-details h4 {
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #9ca3af;
}

.contact-form {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06b6d4;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, #06b6d4, #2563eb);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40%,
  43% {
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.main-content {
  /* width: calc(100% - 300px); */
  width: 100%;
}
.sidebar {
  width: 300px;
  height: 100vh;
  background-color: #1f2937;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  right: 0;
  display: none;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  cursor: pointer;
}

.menu li i {
  margin-right: 10px;
  color: #9ca3af;
}

.shortcuts {
  margin-top: 40px;
}

.shortcuts h4 {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 15px;
}

.shortcut-icons {
  display: flex;
  gap: 20px;
}

.shortcut {
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #d1d5db;
}

.shortcut i {
  font-size: 22px;
  margin-bottom: 5px;
}

.dot {
  position: absolute;
  top: 0;
  right: 5px;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .main-content {
    width: 100%;
  }
  .sidebar {
    display: none;
  }
  .service-detail-grid,
  .specialized-services-grid,
  .footer-content,
  .support-levels-grid {
    flex-wrap: wrap;
  }
  .service-detail-grid img {
    width: 100%;
    height: auto;
  }
}
.service-detail-grid {
  display: flex;
  gap: 3rem;
}
.service-detail-grid img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    45deg,
    rgba(6, 182, 212, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.service-features {
  margin-left: 0;
}
.service-features li {
  margin-top: 1rem;
}
.specialized-services-grid {
  display: flex;
  justify-content: space-between;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.support-levels-grid {
  display: flex;
  justify-content: space-between;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background: #032c56;
  min-width: 210px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  left: 0;
  /* margin-top: 10px; */
}

/* Add arrow to dropdown */
/* .nav-links .dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 1001;
} */

.nav-links .dropdown-content::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 19px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

.nav-links .dropdown-content a {
  color: #d1d5db;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
  border-radius: 8px;
}

.nav-links .dropdown-content a:hover {
  /* background-color: #f5f5f5; */
  color: #ccc;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .mobile-nav .dropdown-content {
    position: static;
    display: none;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    padding-left: 20px;
  }

  .mobile-nav .dropdown.active .dropdown-content {
    display: block;
  }
}
.service-container p {
  margin-bottom: 1rem;
}
.hero-cybersecurity {
  background-image: url(public/lovable-uploads/cyber_security_Hero_img.png);
}
.hero-threat-monitoring {
  background-image: url(public/lovable-uploads/ThreatMonitoring_Img.png);
}
.hero-incident-response {
  background-image: url(public/lovable-uploads/IncidentResponse-Hero-Img.png);
}
.hero-training {
  background-image: url(public/lovable-uploads/Training-hero-img.png)!important;
}
.hero-cloud-security {
  background-image: url(public/lovable-uploads/cloud-security.png);
}

.service-container p {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-info {
    display: none;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

#mobileNav .dropdown .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobileNav .dropdown .nav-link::after {
    content: "▼";
    font-size: 0.8em;
    margin-left: 8px;
}

#mobileNav .dropdown .nav-link.active::after {
    transform: rotate(180deg);
}

.cta-container {
  margin-top: 2rem;
  text-align: center;
}

.service-container .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-container .cta-button:hover {
  background-color: #1d4ed8;
}

.service-container .cta-button svg {
  transition: transform 0.3s ease;
}

.service-container .cta-button:hover svg {
  transform: translateX(4px);
}
.expertise-img {
  width: 50px;
}

/* Training submenu styles */
.training-wrapper {
  position: relative;
}

.training-wrapper:hover .sub-dropdown {
  display: block;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 300px;
  background-color: #032c56;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sub-dropdown a {
  color: #d1d5db;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9em;
  white-space: normal;
  line-height: 1.4;
}

.sub-dropdown a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile styles */
.mobile-nav .training-wrapper {
  position: static;
}

.mobile-nav .sub-dropdown {
  position: static;
  padding-left: 1rem;
  box-shadow: none;
  min-width: auto;
  background-color: rgba(255, 255, 255, 0.05);
  display: none;
}

.mobile-nav .sub-dropdown.active {
  display: block;
}

/* Menu icons */
.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.dropdown-content a {
  display: flex;
  align-items: center;
}
.dropdown-content a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sub-dropdown a {
  display: flex;
  align-items: center;
}

/* Training Program Styles */
.training-program {
  padding: 4rem 0;
  background-color: #032c56;
}

.training-program .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.training-program h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.training-program > .container > p {
  font-size: 1.2rem;
  color: #d1d5db;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.download-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.download-section h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.download-section p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #06b6d4;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #0891b2;
}

.download-icon {
  width: 24px;
  height: 24px;
}

/* Training modules styles */
.training-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}