body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #74abfd;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.registration-container {
  background-color: rgb(247, 247, 251);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  color: #000000;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1877f2;
}

.register-button {
  width: 100%;
  padding: 12px;
  background-color: #1877f2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.register-button:hover {
  background-color: #166fe5;
}

a {
  color: #0c70f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#mainContent {
  display: none;
  padding: 2rem;
}

.demo-card {
  margin-bottom: 2rem;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

textarea, input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background-color: #1877f2;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #166fe5;
}


 /* CSS Section (400+ lines) */
:root {
--primary: rgba(0,0,0,0.95);
--secondary: rgba(0,0,0,0.95);
--accent: rgba(0,0,0,0.95);
--text: rgba(0,0,0,0.95);
--bg: rgba(0,0,0,0.95);
}
st
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', system-ui;
}

body {
background: rgba(0,0,0,0.95);
line-height: 1.8;
color: var(--text);
}

#termsModal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0,0,0,0.95);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
}

.terms-content {
background: rgba(0,0,0,0.95);
width: 90%;
max-width: 800px;
max-height: 90vh;
padding: 2rem;
border-radius: 12px;
overflow-y: auto;
}

.header {
text-align: center;
padding: 3rem 2rem;
background: var(--primary);
color: rgb(19, 1, 1);
border-bottom: 5px solid var(--secondary);
}

.process-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
padding: 2rem;
}

.process-step {
background: rgba(0,0,0,0.95);
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.demo-card {
background: rgba(0,0,0,0.95);
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.demo-form {
margin: 1rem 0;
}

input, textarea, button {
width: 100%;
padding: 0.8rem;
margin: 0.5rem 0;
border: 1px solid rgba(0,0,0,0.95);
border-radius: 6px;
font-size: 1rem;
}

button {
background: var(--secondary);
color: rgba(0,0,0,0.95);
border: none;
cursor: pointer;
transition: opacity 0.3s ease;
}

footer {
background: var(--primary);
color:rgb(15, 0, 0);
padding: 2rem;
text-align: center;
}

@media (max-width: 768px) {
.process-container {
    grid-template-columns: 1fr;
}
}
.certification-section {
padding: 2rem;
background: rgb(23, 0, 0);
}

.book-card {
background: rgb(28, 1, 1);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
margin: 2rem 0;
}

.certification-list {
columns: 2;
margin-top: 1rem;
}

*{
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background-color: rgba(0,0,0,0.95);
margin: 0;
padding: 20px;
}

.pricing-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.pricing-card {
background: rgba(6, 0, 0, 0.95);
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px white;
width: 350px;
text-align: center; 
}

.package-title {
color: rgba(26, 0, 0, 0.95);
font-size: 24px;
margin-bottom: 15px;
}

.price {
font-size: 36px;
color:  rgb(13, 1, 1);
margin: 20px 0;
}

.duration {
color: rgba(255, 247, 247, 0.95);
margin-bottom: 25px;
}

.features {
list-style: none;
padding: 0;
margin-bottom: 30px;
}

.features li {
margin: 10px 0;
color:rgba(243, 236, 236, 0.95);
}

.btn {
display: inline-block;
padding: 12px 30px;
background-color: rgb(13, 1, 1);
color:rgba(17, 17, 17, 0.95);
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

.btn:hover {
background-color:rgb(11, 0, 0);
}

.full-course {
background-color:rgb(9, 0, 0);
color: rgb(14, 14, 14);
}

.full-course .price {
color: rgb(15, 0, 0);
}

.full-course .duration {
color: #f4f6f7;
}

.note {
text-align: center;
margin-top: 30px;
color:rgba(249, 243, 243, 0.95);
}




/* CSS Section (400+ lines) */
:root {
--primary: #000c17;
--secondary: #000408;
--accent: #020202;
--text: #100101;
--bg: #f8f9fa;
}
st
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', system-ui;
}

body {
background: var(--bg);
line-height: 1.8;
color: var(--text);
}

#termsModal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0,0,0,0.95);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
}

.terms-content {
background: rgb(19, 0, 0);
width: 90%;
max-width: 800px;
max-height: 90vh;
padding: 2rem;
border-radius: 12px;
overflow-y: auto;
}

.header {
text-align: center;
padding: 3rem 2rem;
background: var(--primary);
color: white;
border-bottom: 5px solid var(--secondary);
}

.process-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
padding: 2rem;
}

.process-step {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.demo-card {
background: rgb(12, 0, 0);
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.demo-form {
margin: 1rem 0;
}

input, textarea, button {
width: 100%;
padding: 0.8rem;
margin: 0.5rem 0;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 1rem;
}

button {
background: var(--secondary);
color: white;
border: none;
cursor: pointer;
transition: opacity 0.3s ease;
}

footer {
background: var(--primary);
color: white;
padding: 2rem;
text-align: center;
}

@media (max-width: 768px) {
.process-container {
  grid-template-columns: 1fr;
}
}
.certification-section {
padding: 2rem;
background: #000101;
}

.book-card {
background:rgb(10, 0, 0);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(252, 251, 251, 0.08);
margin: 2rem 0;
}

.certification-list {
columns: 2;
margin-top: 1rem;
}

*{
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background-color: #180202;
margin: 0;
padding: 20px;
}

.pricing-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.pricing-card {
background: rgb(255, 254, 254);
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 350px;
text-align: center;
}

.package-title {
color: #020b14;
font-size: 24px;
margin-bottom: 15px;
}

.price {
font-size: 36px;
color: #040f17;
margin: 20px 0;
}

.duration {
color: #010b0b;
margin-bottom: 25px;
}

.features {
list-style: none;
padding: 0;
margin-bottom: 30px;
}

.features li {
margin: 10px 0;
color: #00000f;
}

.btn {
display: inline-block;
padding: 12px 30px;
background-color: #010a11;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}

.btn:hover {
background-color: #011019;
}

.full-course {
background-color: #e8ecef;
color: rgb(14, 1, 1);
}

.full-course .price {
color: rgb(7, 0, 0);
}

.full-course .duration {
color: #011317;
}

.note {
text-align: center;
margin-top: 30px;
color: #100101;
}





/* Add these new CSS rules */
.full-course-premium {
background-color: #e9f2ed;
color: rgb(12, 1, 1);
}

.full-course-premium .price {
color: rgb(17, 1, 1);
}

.full-course-premium .duration {
color: #011217;
}

.full-course-premium .btn {
background-color: #010e06;
}

.full-course-premium .btn:hover {
background-color: #f2f7f4;
}

/* Existing CSS remains the same */
.pricing-container {
/* ... existing styles ... */
gap: 20px; /* Reduced gap for 3 cards */
}

.pricing-card {
/* ... existing styles ... */
width: 320px; /* Slightly reduced width for 3-column layout */
}



/* Tools & Techniques Section */
.tools-section {
padding: 4rem 2rem;
background-color: #010c16;
}

.tools-section h2 {
text-align: center;
font-size: 2.5rem;
color: #000101;
margin-bottom: 3rem;
text-transform: uppercase;
letter-spacing: 2px;
}

.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.tool-category {
background: #0a0000;
border-radius: 10px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}

.tool-category:hover {
transform: translateY(-5px);
}

.tool-category h3 {
color: #010e16;
font-size: 1.25rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #010d15;
}

.tool-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.tool-list li {
background-color: #ecf0f1;
color: #0b0b0b;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.2s ease;
}

.tool-list li:hover {
background-color: #00070c;
color: white;
transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
.tools-section {
  padding: 2rem 1rem;
}

.tools-section h2 {
  font-size: 2rem;
}

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












img {
float: left;
margin-left: 10px; /* Optional: Adds space between the image and any content on the left */
}
img {
width: 150px; /* Adjust the size as per your need */
height: auto; /* Maintains aspect ratio */
}










/* styles.css */

section {
padding: 2rem;
color: white; /* Makes all the text white */
}

section h2, section h3, section p, section ul {
color: white; /* Ensures all text within section is white */
}

.certifications {
color: white; /* Makes the certification section text white */
}













section {
background-color: black;
color: black;
padding: 2rem;
}

.process-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}

.process-step {
background-color: #0d0101; /* slightly lighter black */
padding: 1rem;
border-radius: 8px;
flex: 1 1 150px;
text-align: center;
font-weight: bold;
color: rgb(246, 245, 245);
border: 1px solid #faf7f7;
}



section {
background-color: black;
color: white; /* default text color for all inside section */
padding: 2rem;
}

section h2 {
color: black; /* overrides text color for h2 only */
}



.ai-section, .ai-section a, .ai-section input, .ai-section textarea, .ai-section button {
color: black !important;
}
.ai-section {
color: black;
}


.tools-section h2, 
.tools-section .tool-category h3 {
color: black;
}

a img {
float: left;
margin-right: 20px; /* Optional: Adds space between the image and surrounding content */
width: 100px;       /* Set your desired width */
height: auto;       /* Maintain aspect ratio */
}





footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1; /* Optional background */
}

.social-icons {
margin-bottom: 10px;
}

.social-icons a {
margin: 0 10px;
display: inline-block;
}

.social-icons img {
width: 40px;  /* Adjust size */
height: auto;
vertical-align: middle;
transition: transform 0.2s;
}

.social-icons img:hover {
transform: scale(1.1); /* Slight zoom on hover */
}

footer p {
margin-top: 10px;
font-size: 14px;
color: #0d0101;
}



.tools-section {
color: rgb(27, 27, 27);
padding: 20px; /* Optional for spacing */
background-color: #faf9f9; /* Optional dark background for contrast */
}

.tools-section h2 {
margin-bottom: 10px;
}


.tool-category h3 {
color: rgb(251, 247, 247);
}
.tool-category {
background-color: #f5f0f0; /* Optional: Dark background */
padding: 10px;
margin-bottom: 10px;
} 










/* style.css */

/* --- NAVBAR --- */
.navbar {
  background-color: #111;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00bcd4;
}

/* --- YOUR EXISTING STYLES BELOW --- */

/* Example reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #222;
  color: #ddd;
}

/* Centered registration */
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.registration-container { /* ... */ }
.register-button { /* ... */ }
/* etc., keep your original styles here */
