* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}   
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}
body{
  background-color: #0b0f2e;
} 
.navbar { 
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid #673AB7; 
}
.navbar {
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}
.navbar.active {
  background-color: #0f1535;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #b097ff;
  text-transform: uppercase;
}
.logo a{
  color: green;
}
.logo .b{
  color: #ff0000;
}
.logo span {
  color: #b7bbd9;
}
a{
  text-decoration:none;
}
.nav-menu a {
  margin: 0 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s; 
}
.navbar.active .nav-menu a {
  color: #ffffff; 
}
.nav-menu a:hover {
  background: #a175ff;
  color: #fff;
  padding: 5px 4px;
  border-radius: 6px;
}
.btn-buy {
  background: #a175ff;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-buy:hover {
  background: #7b54e7;
} 
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 30, 0.6);
}
.hero { 
  background: url("../assets/headertheme.gif") center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tagline {
  font-family: monospace;
  font-size: 1.2rem;
  color: #9C27B0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #9C27B0;
  width: 0; 
  animation: typing 5s steps(27) infinite, blinkCaret 0.75s step-end infinite;
  margin: 0 auto;
}
@keyframes typing {
  0% {
    width: 0;
  }
  50% {
    width: 26ch; 
  }
  100% {
    width: 26ch;
  }
}
@keyframes blinkCaret {
  50% {
    border-color: transparent;
  }
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}  
.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-secondary,
.btn-primary {
  border: 2px solid #fff;
  color: #fff;
  transition: 0.3s;
}
.btn-secondary:hover,
.btn-primary:hover {
  background: #fff;
  color: #0c0222;
}
.subheading {
  font-family: monospace;
  font-size: 1.2rem;
  color: #9C27B0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #9C27B0;
  width: 0; 
  animation: typing 5s steps(27) infinite, blinkCaret 0.75s step-end infinite; 
}
@keyframes typing {
  0% {
    width: 0;
  }
  50% {
    width: 25ch; 
  }
  100% {
    width: 25ch;
  }
}
@keyframes blinkCaret {
  50% {
    border-color: transparent;
  }
}
.text-content p.description {
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 25px;  
  text-align: justify;
}
.awareness {
  font-family: monospace;
  font-size: 1.2rem;
  color: #9C27B0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #9C27B0;
  width: 0; 
  margin-bottom: 20px;
  animation: typingsome 5s steps(27) infinite, blinkCaret 0.75s step-end infinite; 
}
@keyframes typingsome {
  0% {
    width: 0;
  }
  50% {
    width: 35ch; 
  }
  100% {
    width: 35ch;
  }
}
@keyframes blinkCaret {
  50% {
    border-color: transparent;
  }
}
.text-content ul li {
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
  color: white;
  text-align: left;
}
.text-content p.subheading {
  color: #8a6cff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;  
}
.section-container {
  display: flex; 
  margin: 20px 100px -2px 100px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.text-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8a6cff;
  font-weight: 900;
} 
.text-content ul {
  list-style: none;
  padding-left: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}
.tagline {
  font-size: 1rem;
  color: #b097ff;
  margin-bottom: 15px;
}  
img.sphere-image {
  width: 250px;
  height: 250px;
  margin-top: -50px;
} 
.footer {
  background: #0b0f2e;
  color: #ffffff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}
.footer-box h3 { 
  font-size: 18px;
}
.footer-logo {
  width: 50px;
  margin-bottom: 10px;
}
.social-linksc{
  display: grid;
  gap: 10px;
}
.social-linksc a {
  display: inline-block; 
  padding: 5px 10px 5px 10px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.social-linksc a.fb {
  background: #1877F2;
} 
.social-links a {
  display: inline-block; 
  padding: 5px 10px 5px 10px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.social-links a.fb {
  background: #1877F2;
}
.social-links a.ig {
  background: #E1306C;
}
.social-links a.tw {
  background: #1DA1F2;
}
.social-links a.yt {
  background: #FF0000;
}
.social-links a.fb:hover,
.social-links a.ig:hover,
.social-links a.tw:hover,
.social-links a.yt:hover { 
  transform: scale(1.15);
}
.footer-bottom {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid #673AB7;
  padding-top: 15px;
}
.logo-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; 
} 
.subscribe-input {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid #673AB7;
  border-radius: 6px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: 0.3s;
  margin-bottom: 10px;
}
.subscribe-input:focus {
  border-color: #673AB7;
} 
.subscribe-btn { 
  background: #a175ff;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  width: -webkit-fill-available;
  cursor: pointer;
}
.subscribe-btn:hover {
  background: #7b54e7;
}
.faq-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 9px 120px;
  background: #0b0f2e;
  color: #fff;
} 
.faq-title,
.Our_Skill {
  color: white;
  text-align: center;
}
.faq-right {
  flex: 1;
}
.faq-item {
  border-bottom: 1px solid #2a2f4a;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.faq-question::after {
  content: "\f107"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  transition: 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 0 15px;
  color: #b7bbd9;
  font-size: 15px;   
  transition: 0.3s;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
} 
.faq-flex li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}
.faq-answer{
  text-align: left;
}
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  padding: 20px 5%;
  flex-wrap: wrap;
}
.feature-card {
  position: relative;
  flex: 1 1 300px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.feature-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(10, 14, 28, 0.2),rgba(10, 14, 28, 0.85));
  transition: 0.4s ease;
}
.feature-card:hover .overlay {
  background: linear-gradient(to bottom,rgba(10, 14, 28, 0.1),rgba(10, 14, 28, 0.6));
}
.feature-card .content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 2;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.feature-card p {
  font-size: 15px;
  color: #c5c8d4;
  line-height: 1.5;
}
#Data_Analyst{
  background-image: url('/assets/Data_Analyst.jpg');
}
#Cyber_Security{
  background-image: url('/assets/Cyber_Security.jpg');
}
#web_development{
  background-image: url('/assets/Web_Development.webp');
}
#Social_Media{
  background-image: url('/assets/Social_Media.webp');
}
.Our_Skill{
  margin-top: -10px;
}
.countdown-content{
  display: flex;
}
.countdown-container {
  background: linear-gradient(135deg, rgba(23, 30, 51, 0.7), rgba(0, 0, 51, 0.7));
  padding: 10px;
  border-radius: 10px; 
  text-align: center;
}
.hero-buttons{
  margin-bottom: 10vh;
}
.footer-bottom a{
  color: #1da1f2;
} 