/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  background:linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );

  color: black;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: white;
  align-items: center;
}

/* Updated nav layout */
nav.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Center the nav links */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 30px;
}

/* Navigation links */
.nav-links a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00ffae;
}

/* Random button at far right */
.random-btn {
  background: #00ffae;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  margin-left: auto;
}

.random-btn span {
  background: #000;
  color: #00ffae;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 4px;
}

/* Dropdown nav */
nav .dropdown {
  position: relative;
  display: inline-block;
}

nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e1e1e;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  z-index: 1;
  padding: 10px 0;
  top: 100%;
  left: 0;
}

nav .dropdown-content a {
  color: #ccc;
  padding: 10px 20px;
  display: block;
  transition: background 0.3s ease;
}

nav .dropdown-content a:hover {
  background-color: #2a2a2a;
}

nav .dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  padding: 60px 50px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #d2f2ff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  color: #999;
}

.hero a {
  color: #00ffae;
  font-weight: bold;
}

/* Sponsors */
.sponsors {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.sponsor-logos {
  display: flex;
  margin-left: 15px;
}

.sponsor-logos .box {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 5px;
}

.box.red { background-color: #ff6347; }
.box.gray { background-color: #aaa; }
.box.light { background-color: #ddd; }
.box.dark {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tabs */
.tabs {
  margin-top: 40px;
}

.tabs a {
  margin-right: 20px;
  font-weight: 600;
  padding: 6px 12px;
  border-bottom: 2px solid transparent;
}

.tabs a.active,
.tabs a:hover {
  border-bottom: 2px solid #00ffae;
}

/* Filters */
.filters {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filters select {
  background: #1e1e1e;
  color: #ccc;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  min-width: 160px;
  font-size: 0.95rem;
}

/* Cards */
.card-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: #1b1b1b;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px #000;
  transition: transform 0.3s ease, background 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: #222;
}



/* Additional Layouts */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 60px;
  width: auto;
}

.hero-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 50px;
}

.newsletter-box {
  background-color: #1b1b1b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  max-width: 300px;
  flex-shrink: 0;
}

.newsletter-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.newsletter-box p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.newsletter-box input {
  padding: 10px;
  width: calc(100% - 110px);
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter-box button {
  padding: 10px 15px;
  background: #00ffae;
  border: none;
  color: #000;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.subscribe-btn {
  
  padding: 4px 15px 10px 15px;
  background: #00ffae;
  color: #000;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  
   
   
  

}

#adjustbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-tabs {
  margin: 30px 0 10px;
}

.main-content {
  flex: 1;
}
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

body > *:not(#particle-canvas) {
  position: relative;
  z-index: 1;
}
.random-section {
  display: flex;
  padding: 50px;
  gap: 50px;
  color: #fff;
}

.left-column {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-column h2 {
  font-size: 2rem;
  color: #d2f2ff;
}

.left-column p {
  font-size: 1rem;
  color: #ccc;
}

.tool-icon {
  width: 50px;
  height: 50px;
}

.visit-btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  width: fit-content;
  font-weight: bold;
}

.info-table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}

.info-table td {
  padding: 10px 12px;
  border: 1px solid #333;
}

.info-table .highlight {
  color: #00ffae;
  font-weight: bold;
}

/* Right Column */
.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-options button {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  padding: 6px 12px;
  margin-left: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.view-options button.active {
  background: #00ffae;
  color: #000;
  border: none;
}

.scroll-box {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  height: 500px;
  overflow-y: scroll;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.scroll-preview {
  width: 100%;
  border-radius: 8px;
}

/* Section heading */
.more-heading {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #eee;
}
.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.newsletter-illustration {
  /* text-align: center; */ /* Remove or comment out this line */
}

.newsletter-illustration img {
  width: 100%;
  max-width: 280px;
  margin-left: 0;
  margin-right: 0;
  display: block;
}
#ills-1 {
  width: 500%;
  max-width: 700px;
  height: 400px;

}
#web-template, 
#existing-applications {
  margin-top: 40px;
  font-size: 1.5rem;
  color: #eee;
  text-align: center;
}

.newsletter-row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-row .newsletter-box {
  flex: 1;
  min-width: 280px;
}

/* Footer Section */
.site-footer {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: none;
}

.footer-column {
  font-size: 14px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #b0c4e5;
}

/* Social Media Icons centered above the copyright section */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px; /* Adjust this margin to position the icons */
  margin-bottom: 10px; /* Adjust this margin to position the icons */
}

.footer-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

/* Make sure the copyright section spans full width */
.footer-bottom {
   background: #d1d1d1; /* Gray background for the copyright section */
  color: #333;
  text-align: center;
  padding: 10px 0;  /* Removed the left-right padding */
  font-size: 14px;
  font-weight: bold;
  width: 100%;  /* Make sure it spans full width */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#footer-bottom1 {
    text-align: center;
  color: #ffffff;
  font-size: 15px;
  padding: 10px 20px;
  font-weight: bold;
  width: 100%;  /* Make sure it spans full width */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: none;
}
.footer-bottom .highlight {
  color: rgb(228, 33, 33);
  font-weight: bold;
}

.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom .footer-bottom-inner div {
  color: #333;
}

.footer-bottom .footer-bottom-inner div a {
  color: #003c28;
  text-decoration: none;
  margin-left: 5px;
}

/* Footer Section — FIXED */
.site-footer {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}



.footer-logo {
  width: 50px;
}


