RESET & BASE STYLES
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* 
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #080808;
    background-color: #0b0b0b25;
} */

html{
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}



/* HEADER & NAVIGATION */
header {
    background: #090909; /* Primary Blue */
    color:rgba(6, 253, 241, 0.938);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(1, 3, 10, 0.959);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    /* background-image: url(pictures/20251025_044941_optimized.webp); */
    background-size: cover;
    position: fixed;
    top: 0%;
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
   color: rgba(7, 250, 19, 0.973);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-weight: bold;
}
.link:hover{
    background-color: rgb(253, 252, 253);;
    padding: 4px;
    font-weight: bold;
    color: black;
    border-radius: 2px;
    padding: 4px;
    font-weight: bold;

}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.318), rgba(133, 150, 131, 0.3)), url(pictures/20251025_090046_optimized.webp);
    /* background-size: cover; Replace with a real image path */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #02000a; /* Green Success */
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: white;
    color: black;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 5px 1px rgba(7, 4, 2, 0.236);
}

.content-section h2 {
    color: #007bff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.intro-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

/* FOOTER */
footer {
    background: #0404041f;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
        padding-left: 0;
    }

    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 4rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }
}


.img1{
    margin: 1rem;
    padding: 0.5rem;
    min-height: 3rem;
    width: 95%;
    
}

.img2{
    margin: 1rem;
    padding: 0.5rem;
    min-height: 3rem;
    width: 95%;
}
.img3{
    margin: 1rem;
    padding: 0.5rem;
    min-height: 3rem;
    width: 95%;
}
.imgBtn{
    margin-left: 1.5rem;
    background-color: rgb(152, 244, 15);
    color: black;
    padding: 3px;
    border-radius: 8px;
    text-decoration: none;
    
}

/* page:2 */

.p1img{
    min-height: 19rem;
    width: 95%;
        background: linear-gradient(rgba(0, 0, 0, 0.318), rgba(1, 9, 0, 0.3)), url(pictures/20251025_044941_optimized.webp);
    background-size: cover;
    margin: 1rem;
    border-radius: 1rem;
}
.more{
    background-color: rgba(55, 253, 6, 0.833);
    padding: 3px;
    display: inline;
    border-radius: 5px;
    width: 20%;
    font-weight: bold;

}
.more a{
    text-decoration: none;
}
.top a{
    text-decoration: none;
}
.top{
    background-color: rgba(138, 6, 253, 0.833);
    padding: 5px;
    position:fixed;
    right: 0.1rem;
    bottom: 1rem;
    border-radius: 5px;
    width: 9%;
    font-weight: bold;
}

.p2img{
    min-height: 19rem;
    width: 95%;
    background: linear-gradient(rgba(0, 0, 0, 0.318), rgba(1, 9, 0, 0.3)), url(pictures/20251025_080345_optimized.webp);
    background-size: cover;    
    margin: 1rem;
    border-radius: 1rem;
     }

     footer header{
        background-image: none;
        background-color: rgba(0, 0, 0, 0.945);
     }
     footer header nav ul li a{
        color: white;
     }

     .social-links a{
        color: #61FF3D;
        text-decoration: none;
     }


     .contact-form-area, .contact-details {
    flex: 1; /* Both sections take up equal space */
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}


.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #28a745; /* Green focus color */
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

/* message submit sucessfull pop up*/
/* Popup Styling */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: popupFade 0.3s ease-in-out;
}

.popup-content i {
  font-size: 50px;
  color: #28a745;
  margin-bottom: 15px;
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 20px;
  border: none;
  background: #28a745;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #218838;
}

@keyframes popupFade {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ============================= */
/* MODERN COLOR ENHANCEMENT */
/* ============================= */

body {
    background: linear-gradient(135deg, #0f0f0f, #8b8b8b, #fcfafa);
    width: 98%;
}

/* Header overlay effect */
header {
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

header .container {
    position: relative;
    z-index: 2000;
}

/* Navigation hover glow */
nav ul li a {
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #61FF3D;
    text-shadow: 0 0 8px #61FF3D;
}

/* HERO More Attractive */
.hero {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Button Upgrade */
.cta-button {
    background: linear-gradient(45deg, #61FF3D, #00d4ff);
    color: black;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(97,255,61,0.7);
}

/* Content Card Upgrade */
.content-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Images smooth hover */
.img1, .img2, .img3 {
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.img1:hover, .img2:hover, .img3:hover {
    transform: scale(1.03);
}

/* Contact Form Premium Look */
.contact-form-area, .contact-details {
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
    background: #f9f9f9;
}

.contact-form button {
    background: linear-gradient(45deg, #61FF3D, #00d4ff);
    color: black;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* Footer enhancement */
footer {
    background: linear-gradient(90deg, #070101fb, #0a0a0a);
    border-top: 5px solid #61FF3D;
    margin-left: -9px;
    margin-bottom: -9px;
}

/* Social glow */
.social-links a:hover {
    text-shadow: 0 0 10px #61FF3D;
}

/* Scroll to top button glow */
.top {
    background: linear-gradient(45deg, #61FF3D, #00d4ff);
    color: black;
    box-shadow: 0 5px 20px rgba(0,212,255,0.5);
}

/* Smooth animations globally */
* {
    transition: background 0.3s ease, color 0.3s ease;
}

/* SAFE VISUAL ENHANCEMENT */

/* Smooth hover for cards */
.content-section {
    transition: 0.3s ease;
}
.content-section:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Improve button look without changing structure */
.cta-button {
    transition: 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
}

/* Smooth image hover */
.img1, .img2, .img3 {
    transition: 0.3s ease;
}
.img1:hover, .img2:hover, .img3:hover {
    transform: scale(1.02);
}

/* Improve form button only */
.contact-form button {
    cursor: pointer;
    transition: 0.3s ease;
}
.contact-form button:hover {
    opacity: 0.9;
}

/*chat gpt */


h1{
color:#1e88e5;
}

h2{
color:#333;
margin-top:25px;
}

p{
line-height:1.6;
font-size:16px;
}

ul{
margin-left:20px;
}

li{
margin:5px 0;
}

.foterlinks a{
color: white;
text-decoration: none;
padding: 5px;
}