<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Root Theme Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&amp;display=swap');

:root {
  --bg: #0d1117; /* Background color for the entire site */
  --card: #161b22; /* Darker background for card-like sections */
  --text: #ffffff; /* Primary text color */
  --accent: #58a6ff; /* Accent color for highlights and buttons */
  --white: #ffffff; /* White text fallback */
  --border: #30363d; /* Border and separator color */
  --gradient: linear-gradient(135deg, #007cf0, #00dfd8); /* Gradient used in hero title */
  --lime: #22b429; 
}
@media screen and (max-width: 768px) {
  .hero-text {
    margin-left: 0;
    padding: 0 1rem;
    text-align: center;
  }

  .placeholder {
    width: 90%;
    height: auto;
    margin: 2rem auto 0 auto;
    display: block;
  }

  .container-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-box {
    position: static; /* removes absolute positioning */
    margin: 2rem auto;
    width: 90%;
  }

  .main-nav {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .main-nav a {
    margin-left: 0;
    font-size: 1.2rem;
  }

  html, body {
    overflow-x: hidden;
  }
}

/* Base body styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Ensure images scale properly */
img {
  max-width: 100%;
  display: block;
}

/* Content container with max width and padding */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

/* Header styling */
.site-header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: relative;
  z-index: 10; /* Stay above background effects */
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  color: var(--white);
  font-weight: bold;
}

.logo .dot {
  color: var(--accent); /* Accent-colored dot */
}

.main-nav a {
  color: var(--white);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: x-large; 
}

.main-nav a:hover {
  color: #22b429; /* Highlight on hover */
}


/* HERO AND IMAGES */

.hero {
  margin-top: 200px; 
  min-height: 800px;
}


.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1; /* Ensures content appears above background glow */
}


.hero-text {
  margin-left: 250px;
  flex: 1 1 550px; /* Grows but stays within reasonable width */
}



.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}


.placeholder {
  width: 800px;
  height: 600px;
  border-radius: 0%;
  object-fit: contain;
  border: ;
  box-shadow: 0 0 15px rgba(182, 170, 11, 0.151);
  opacity: 0.9; 
  margin-top: -350px;
  margin-left: 900px;
}



/* Button container */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Base button style */
.button{
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  
}



/* Outlined button variant */
.button.outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}


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

.extras li {
  margin: 0.75rem 0;
}

.extras a {
  color: var(--accent);
  text-decoration: none;
}

.extras a:hover {
  text-decoration: underline;
}


/* Fade in animation for images or content */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments for tablets/mobile */
@media screen and (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  

  .cta-buttons {
    justify-content: center;
  }

  .main-nav {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav a {
    margin-left: 0;
  }
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

/*Begining of About BOX */ 
#about {
  position: relative;
  height: 800px; /* or auto, if content varies */
  
}

.about-box {
  position: absolute;
  margin-left: 650px;
  margin-top: 50p;
  width: 500px;
  background: rgba(22, 27, 34, 0.95);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* CERTS BEGINING */

#certifications {
  position: relative;
  height: 500px; /* adjust as needed */
}



.certs-images {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering (if needed) */
  gap: 1rem;               /* optional spacing between badges */
  flex-wrap: wrap;         /* ensures they wrap on small screens */
}
.certs-images img {
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  align-items: center;
}

.certs h2 {
  font-size: x-large;
  


}

/*MORE CONTENT FECTION */ 

.more-content{
  text-align: center; 

}
/* Footer section */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #8b949e;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.section-divider {
  border: none;
  height: 2px;
  background: var(--accent); /* or a custom color */
  margin: 4rem auto; /* adds spacing above/below */
  width: 80%;
  opacity: 0.1;
}



/* BEGINING OF CONTACT PAGE */ 
contact-header .h1{
  font-family: 'Inter', sans-serif; 
  font-size: xx-large;
  
}
.contact-body {
  margin-top: 25px;
  margin-left:50px;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 5;
  padding: 5;
}

/* CONTACT PAGE LINKS */ 
.contact-header a {
  color:var(--accent);
}
.contact-header a:visited{
  color: var(--accent); /* prevent purple links */
}
.contact-header a:hover {
  color:var(--lime);
}
.contact-section a {
  color: var(--accent);
}

.contact-section a:visited {
  color: var(--accent); /* prevent purple links */
}

.contact-section a:hover {
  color:var(--lime);
}</pre></body></html>