body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(/images/moonlight.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

header {
    background-color:  #0B0B45;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-heading {
    color: red;
    margin: 0;
}
.top-section a {
    color: #0B0B45;
}

.white-text {
    color: white;
}

.contact-now {
    background: none;
    border: 1px solid red;
    text: red;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
}
.contact-now a {
	color: red;
	text-decoration: none;
}

.banner {
    text-align: center;
    color: white;
    padding: 50px 20px 0px;
}

.banner h1 {
	font-size: 45px;
}

.text {
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

.text button {
	margin: 1%;
	background: black;
	border-radius: 10px;
	font-size: 15px;
}

.text a {
	color: red;
	text-decoration: none;
}


/* FOOTER STYLING */
footer {
    background-color: #0B0B45;
    color: white;
    width: 100%;
    padding: 5px 10px;
}

/* Use flex for horizontal layout */
footer .footer-top {
    display: flex;
}

footer .footer-top div {
    display: flex;
    flex-direction: column; /* each section stacked internally */
    min-width: 200px;       /* maintain some width */
}

footer .footer-top h3 {
    color: #ff0000; /* highlight headings */
    margin-bottom: 10px;
}

footer .footer-top p, footer .footer-top li {
    margin: 2px 0;
    color: white;
}

/* Remove list bullets and display inline for social icons */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

footer ul li {
    margin: 0;
}

footer img {
    width: 30px;
    height: 30px;
}

/* Bottom copyright section */
footer .align1 {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    footer .footer-top {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-top div {
        align-items: center;
    }
    footer ul {
        justify-content: center;
    }
}
.highlight { color: red; }
.highlight2 { color: yellow; }
.highlight3 { color: lightgrey; }
.complement { color: white; }

.align { 
	text-align: center; 
	padding: 2%;
}

.align a:hover {
    color: #00ff00;        
    text-decoration: none;
    transition: 0.3s ease;
}

.align a { 
     color: grey;
     text-decoration: none;
}


.align p:hover {
    text-shadow: 0 0 8px #ff0000;
}



.align1 { text-align: center; }

.squareimg {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 15px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.services ul {
    list-style-type: none;
    padding: 15px;
    height: 30;
    width: 200px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.services li, .services a {
    color: white;
    text-decoration: none;
}

.services li a:hover {
    text-decoration: underline;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 20px;
    color: #00ff00;
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border: 1px solid #00ff00;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff00;
}

.contact-container h2 {
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    background: black;
    border: 1px solid #00ff00;
    color: #00ff00;
    border-radius: 5px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 8px #00ff00;
}

.submit-btn {
    background: black;
    border: 1px solid red;
    color: red;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: red;
    color: black;
}

#formStatus {
    margin-top: 10px;
    font-size: 14px;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }
}
.banner,
.text h4,
.text button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger effect */
.banner { animation-delay: 0.2s; }

.text h4:nth-of-type(1) { animation-delay: 0.5s; }
.text h4:nth-of-type(2) { animation-delay: 0.8s; }
.text h4:nth-of-type(3) { animation-delay: 1.1s; }
.text h4:nth-of-type(4) { animation-delay: 1.4s; }

.text button {
  animation-delay: 1.7s;
}

/* premium smooth entrance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text button {
  animation:
    fadeUp 0.8s ease forwards,
    pulse 1.8s infinite 2.2s;
}

@keyframes pulse {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}
.services ul {
  opacity: 0;
  transform: translateY(25px);
  animation: serviceFade 0.7s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* stagger reveal */
.services ul:nth-child(1) { animation-delay: 0.2s; }
.services ul:nth-child(2) { animation-delay: 0.4s; }
.services ul:nth-child(3) { animation-delay: 0.6s; }
.services ul:nth-child(4) { animation-delay: 0.8s; }
.services ul:nth-child(5) { animation-delay: 1s; }
.services ul:nth-child(6) { animation-delay: 1.2s; }

@keyframes serviceFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* premium hover effect */
.services ul:hover {
  transform: translateY(-4px);
}

.about.align ul {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFade 0.8s ease forwards;
  transition: transform 0.3s ease;
}

/* staggered reveal */
.about.align ul:nth-child(1) { animation-delay: 0.2s; }
.about.align ul:nth-child(2) { animation-delay: 0.5s; }
.about.align ul:nth-child(3) { animation-delay: 0.8s; }
.about.align ul:nth-child(4) { animation-delay: 1.1s; }

@keyframes aboutFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* subtle premium hover */
.about.align ul:hover {
  transform: translateY(-5px);
}

/* smooth image zoom */
.squareimg {
  transition: transform 0.4s ease;
}

.about.align ul:hover .squareimg {
  transform: scale(1.03);
}

.about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.about ul {
    list-style-type: none;
    padding: 15px;
    height: 30;
    width: 200px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.about li, .services a {
    color: white;
    text-decoration: none;
}

.about li a:hover {
    text-decoration: underline;
}

/* MOBILE */

@media (max-width: 768px) {

    .top-section {

        flex-direction: column;

        text-align: center;

        padding: 10px 20px;
    }

    .top-heading {

        font-size: 1.8rem;
    }

    .contact-now {

        width: 100%;

        max-width: 320px;

        padding: 14px 20px;

        font-size: 1rem;
    }
}

/* SMALL DEVICES */

@media (max-width: 480px) {

    .top-heading {

        font-size: 1.5rem;
    }

    .contact-now {

        font-size: 0.95rem;

        padding: 12px 16px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* Better mobile rendering */
body {

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

