*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.6)
        ),
        url('images/strengthBuilding2.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



body h1, body h2, body h3, body h4, body p{
    text-align: center;
    color: rgba(14, 13, 13, 0.884);
    padding: 20px;
}

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.card{
    width: 325px;
    background-color: silver;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 10px;
}

.card img{
    width: 100%;
    height: auto;
}

.card-content{
    padding: 16px;
}

.card-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}

.card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
}

.card-content .btn{
    display: inline-block;
    padding: 8px 16px;
    background-color:  rgb(150, 134, 42);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
}

.navbar ul{
    list-style: none;
    background-color: grey;
    padding: 10px 0;
    margin: 0px;
    overflow: hidden;
}

.navbar a{
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px;
}
.navbar a:hover
{
    background-color: rgb(150, 134, 42);

}
.navbar li{
    float: left;
}


.big-btn {
  background: linear-gradient(135deg, #0f172a, #1e3c72);
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-block;
  text-color: white;
}

.big-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.big-btn:active {
  transform: scale(0.98);
}
#packageDetails {
    margin: 20px auto;
    display: block;
}


/*                      NEW HERO SECTION STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Hero Section */
.hero {
    padding: 10px 8%;
    background:  rgb(175, 170, 170);
    color: rgb(0, 0, 0);
}

/* Navbar */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.brand {
    font-size: 28px;
    font-weight: 700;
}

.brand span {
    color:  rgb(150, 134, 42);
}

.logo {
    width: 70px;
    border-radius: 10px;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.tagline {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 10px;
    right: 30%;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: black;
}

.headline {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtext {
    font-size: 16px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 20px 1%;
    background:  rgb(150, 134, 42);
    color: #cbd5f5;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.6;

}

/* Consultaion Form */
/* =========================
   CONSULTATION FORM STYLING
   ========================= */

.form-container {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

/* Main form card */
.form-card {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(150, 134, 42, 0.4);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: white;
}

/* Section titles */
.section-title {
    text-align: center;
    color: white;
    margin: 40px 0 20px;
    font-size: 22px;
    text-decoration: underline;
    text-decoration-color: rgb(150, 134, 42);
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

/* Labels */
.form-group label {
    color: white;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Inputs + textareas */
.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.6);
    color: white;
    outline: none;
    font-size: 14px;
}

/* Focus effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgb(150, 134, 42);
    box-shadow: 0 0 8px rgba(150,134,42,0.5);
}

/* Textarea sizing */
textarea {
    min-height: 100px;
    resize: vertical;
}

/* Fieldsets */
.fieldset {
    border: 1px solid rgba(150, 134, 42, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    color: white;
}

/* Legend styling */
.fieldset legend {
    color: rgb(150, 134, 42);
    font-weight: bold;
    padding: 0 10px;
}

/* Checkbox layout */
.fieldset label {
    display: block;
    margin: 8px 0;
    color: white;
    cursor: pointer;
}

/* Submit button */
.submit-btn {
    display: block;
    margin: 30px auto 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    background: rgb(150, 134, 42);
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Make sure hero tagline doesn't look washed */
.hero .tagline {
    color: rgb(150, 134, 42);
}
.intro-background{
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url("images/WhatsApp Image 2026-04-20 at 23.06.36 (1).jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 70px 20px;
    text-align: center;
    color: white;
}

.intro-background h2{
    color: white;
}

.intro-background p{
    color: white;
}