body {
    font-family: 'Inter', sans-serif;
}





/* Navbar initially semi-transparent grey */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-radius: 8px;
}

.navbar .nav-link {
    font-family: Consolas, monospace;
    font-weight: 700;
    /* Bold */
    font-size: 18px;
    line-height: 118%;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0;

    color: #fff;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #4d6dff;
    /* Accent color */
}

/* Contact button */
.navbar .btn-light {
    font-family: Consolas, monospace;
    font-weight: 700;
    /* Bold */
    font-size: 18px;
    line-height: 118%;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0;
    /* Optional if needed */
    color: #000000;
    /* Keep your original white */
    transition: 0.3s;
}

.navbar .btn-light:hover {
    background-color: #C0C6CC;
}

/* Navbar after scrolling (slightly more solid) */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 0.5rem 0;
}

/* Ensure mobile button spacing */
.navbar .btn {
    font-weight: 500;
}

@media (max-width: 991.98px) {

    /* Give space to mobile button inside menu */
    .navbar .btn {
        margin-top: 0.5rem;
    }
}









/* Hero Section Styling */
#hero.hero-section {

    background:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('../imgs/hero-bg.png') center center / cover no-repeat;

    padding: 0 15px;
    min-height: 100vh;
    /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#hero .hero-title {
    font-family: monospace;
    font-weight: 700;
    line-height: 1.2;
}

#hero .hero-subtext {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto; 
    text-align: left;
}


/* Buttons */
#hero .btn-primary {
    background-color: #4d6dff;
    border: none;
}

#hero .btn-primary:hover {
    background-color: #3b55cc;
}

#hero .btn-light {
    background-color: #dce1ea;
    color: #000;
    border: none;
}

#hero .btn-light:hover {
    background-color: #c9ced9;
}



/* ------------------- */
/* Responsive Styling  */
/* ------------------- */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    #hero .hero-title {
        font-size: 40px;
        line-height: 1.3;
        text-align: center;
    }

    #hero .hero-subtext {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        padding: 0 10px;
    }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
    #hero.hero-section {
        padding: 0 10px;
        background-position: center top; /* Adjust background for smaller view */
    }

    #hero .hero-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    #hero .hero-subtext {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        max-width: 90%;
    }

    #hero .btn-primary,
    #hero .btn-light {
        width: 100%; /* Full width buttons on mobile */
        margin-bottom: 10px;
    }
}






/* About Section */
#about {
    background-color: #000;
}



#about .about-logo {
    max-width: 455px;
    max-height: 465.36px;
    width: 100%; /* Makes it shrink on small screens automatically */
    height: auto;
}

/* Adjust for mobile devices */
@media (max-width: 768px) {
    #about .about-logo {
        max-width: 250px;  /* Smaller image on tablets & phones */
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    #about .about-logo {
        max-width: 180px;  /* Even smaller on very small phones */
        max-height: 180px;
    }
}


#about h2.about-lead {
    font-family: 'Consolas', monospace;
    font-weight: 700;
    font-style: normal;

    font-size: 40px;
    line-height: 118%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #fff;
    text-align: left;

}



#about p.about {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: justify;
    vertical-align: middle;
    color: #ffffff !important;
}

/* ------------------- */
/* Responsive Styling  */
/* ------------------- */

/* Tablet Screens (≤ 992px) */
@media (max-width: 992px) {
    #about h2.about-lead {
        font-size: 32px;
        line-height: 120%;
        text-align: center; /* Center headline for better layout on tablet */
    }

    #about p.about {
        font-size: 20px;
        line-height: 30px;
        text-align: center; /* Center text for readability */
        margin-bottom: 20px;
    }
}

/* Mobile Screens (≤ 576px) */
@media (max-width: 576px) {
    #about h2.about-lead {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    #about p.about {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        padding: 0 15px; /* Add side padding for small screens */
    }
}




/* -------------------------- */
/*       Products             */
/* -------------------------- */

/* Section */
#ourproducts{
  background-color:#000;
  color:#fff;
}

/* Main heading (Consolas 40) */
#ourproducts .product-heading{
  font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
  font-weight:700;
  font-style:normal;
  font-size:40px;
  line-height:1.18;     /* 118% */
  letter-spacing:0;
  text-align:center;
  color:#fff;
}

/* Subtext (Urbanist 24/36) */
#ourproducts .product-subtext{
  font-family:'Urbanist', sans-serif;
  font-weight:400;
  font-style:normal;
  font-size:24px;
  line-height:36px;
  letter-spacing:0;
  color:#fff !important;
  text-align:center;
  max-width:700px;
  margin:0 auto;
}

/* Card */
#ourproducts .product-card{
  background:#1b1d22;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* Media (no gradient) */
#ourproducts .product-media{
  padding:20px;
  background:#111316;
  border-bottom:1px solid rgba(255,255,255,.08);
}
#ourproducts .product-hero{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
}

/* Body */
#ourproducts .product-body{ padding:24px; }

/* Product title (Consolas 28) */
#ourproducts .product-title{
  font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
  font-weight:700;
  font-style:normal;
  font-size:28px;
  line-height:1.18;
  letter-spacing:0;
  color:#fff;
}


#ourproducts .product-desc{
  font-family:'Urbanist', sans-serif;
  font-weight:400;
  font-style:normal;
  font-size:24px;
  line-height:32px;
  letter-spacing:0;
  color:#fff;
}

/* Button base (Consolas) */
#ourproducts .btn.btn-light{
  font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
  font-weight:700;
  font-size:20px;
  line-height:1;
  letter-spacing:0;
  color:#000;
  background-color:#F3F5F7;
  border:1px solid #C0C6CC;
  border-radius:12px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.06);
  transition: background-color .2s, border-color .2s, color .2s, transform .05s, box-shadow .2s;
}
#ourproducts .btn.btn-light:hover,
#ourproducts .btn.btn-light:focus{
  background-color:#C0C6CC;
  border-color:#C0C6CC;
  color:#000;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
}
#ourproducts .btn.btn-light:active{
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.12);
}

/* Button sizing/centering */
#ourproducts .product-cta{
  display:flex !important;    /* ensure flex centering */
  align-items:center;
  justify-content:center;
  height:56px;                /* fixed height */
  padding:0 24px;             /* no vertical padding */
  width:364px;                /* target width */
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:576px){
  #ourproducts .product-cta{ width:100%; }
}















/* Our Services Section */
#ourservices .hero-subtext,
.service-subtext,
.text-secondary.mt-3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    color: #ffffff !important;;
}

#ourservices .hero-subtext,
.service-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.text-secondary.mt-3 {
    text-align: justify;
}

/* Headings */
#ourservices h3,
.service-heading {
    font-family: 'Consolas', monospace;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #ffffff !important;
}

#ourservices h3 {
    font-size: 36px;
    line-height: 118%;
}

.service-heading {
    font-size: 40px;
    line-height: 118%;
}




#ourservices img {
    max-width: 90%;
    height: auto;           /* Maintain aspect ratio */
    display: block;         /* Allows margin auto centering */
    margin: 0 auto;         /* Center the image horizontally */
    border-radius: 1rem;
}

#ourservices .badge {
    background-color: #2c2c2c;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Service item spacing */
.service-item {
    margin-bottom: 8rem;
}

/* ------------------- */
/* Responsive Styling  */
/* ------------------- */
@media (max-width: 768px) {
    #ourservices h3 { font-size: 28px; line-height: 120%; }
    .service-heading { font-size: 32px; line-height: 120%; }
    .service-subtext,
    .text-secondary.mt-3,
    #ourservices .hero-subtext { font-size: 20px; line-height: 30px; }
    .service-item { margin-bottom: 3rem; }
}

@media (max-width: 480px) {
    #ourservices h3 { font-size: 22px; line-height: 125%; }
    .service-heading { font-size: 28px; line-height: 122%; }
    .service-subtext,
    .text-secondary.mt-3,
    #ourservices .hero-subtext { font-size: 18px; line-height: 28px; }
}

/* Tablet */
@media (max-width: 768px) {
    #ourservices img {
        max-width: 75%;     /* Slightly smaller for tablets */
    }
}

/* Mobile */
@media (max-width: 480px) {
    #ourservices img {
        max-width: 100%;    /* Full width on small screens */
        border-radius: 0.5rem; /* Softer rounding for smaller space */
    }
}










/* Contact Section */
.contact-lead {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #ffffff !important;
  
}



/* Contact Section */
.form-text {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
     color: #ffffff !important;
}

.custom-label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0;
    vertical-align: middle;
}

/* Right section background image */
.form-section {
    position: relative;
    border-radius: 0 0 1rem 0;
    overflow: hidden;
}

/* Background image with opacity */
.form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/cover.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1; /* Control the image transparency */
    z-index: 0;
}

/* Keep the form elements on top of the image */
.form-section > * {
    position: relative;
    z-index: 1;
}

.custom-btn {
    background-color: #d0d6de; /* Light gray */
    color: #000; /* Black text */
    border: none;
    border-radius: 8px; /* Rounded edges */
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0.5rem 2rem; /* Default padding */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Space for arrow */
}

.custom-btn:hover {
    background-color: #c0c6ce; /* Slightly darker on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

/* ------------------- */
/* Responsive Styling  */
/* ------------------- */

/* Medium screens */
@media (max-width: 768px) {
    .custom-btn {
        font-size: 14px;
        padding: 0.4rem 1.5rem; /* Slightly smaller */
    }
}

/* Small screens */
@media (max-width: 480px) {
    .custom-btn {
        font-size: 13px;
        padding: 0.35rem 1rem;
        width: 100%; /* Full width on mobile */
        border-radius: 6px;
    }
}



@media (max-width: 992px) {
    .form-text {
        font-size: 20px;
        line-height: 32px;
    }

    .custom-label {
        font-size: 14px;
    }

    .form-section::before {
        background-size: contain; /* Fit image better on smaller screens */
        opacity: 0.15;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .form-text {
        font-size: 16px;
        line-height: 24px;
    }

    .custom-label {
        font-size: 13px;
    }

    .form-section {
        border-radius: 0; /* Remove rounding for better fit on small screens */
    }

    .form-section::before {
        background-size: cover;
        opacity: 0.2; /* Slightly more visible on mobile */
    }
}






/* Footer Section */
.footer {
    background-color: #000;
    font-size: 0.9rem;
    position: relative;
}

/* Subtle divider at top of footer */
.footer-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin-bottom: 2rem;
}

.footer-logo {
    max-height: 40px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4d6dff;
}

.social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4d6dff;
}




/* -------------------------- */
/* Form Input and Validation  */
/* -------------------------- */


/* Optional: Field Error Styling */
input.error,
select.error,
textarea.error {
    border: 1px solid red;
    background: #ffe6e6;
}

/* Error Message */
.error-message {
    color: #dc3545; /* Bootstrap's danger red */
    font-size: 0.875em;
    margin-top: 5px;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* ✅ subtle shadow for clarity */
}


/* Required Note */
.required-note {
    font-size: 14px;
    color: #eee;
    margin-bottom: 20px;
    text-align: left;
}

/* Asterisk Styling */
.asterisk {
    color: red;
    margin-left: 2px;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	display: none;
}

/* Stretch the toast bar and remove rounded corners */
#toast-container.toast-top-full-width > .toast {
  width: 100%;
  max-width: none;
  margin: 0;              /* no side gaps */
  border-radius: 0;       /* flat edges like a banner */
  text-align: center;     /* center the message */
}