* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    /* logo left, menu right */
    align-items: center;
    padding: 20px 50px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

/* LOGO */
.logo img {
    height: 45px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 50px;
}

.menu li a {
    text-decoration: none;
    color: black;
    font-size: 23px;
    position: relative;
    padding-bottom: 5px;
}

/* Media query for smaller screens (phones) */
@media only screen and (max-device-width: 600px) {
    .menu li a {
        font-size: 30px;
        /* bigger font for mobile */
    }
}

/* HOVER EFFECT */
.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: blue;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.menu li a.active::after {
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    margin: 20px;
    height: 730px;
    border-radius: 30px;
    overflow: hidden;
    background-image: url("images/bro.png");
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY (optional but pro) */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* TEXT CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 60px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 130px;
    opacity: 0.9;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
}

/* STATS BAR */
.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: black;
    border-radius: 25px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    color: white;
    z-index: 2;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat h2 {
    font-size: 60px;
    margin: 0;
}

.stat p {
    font-size: 20px;
    opacity: 0.8;
    line-height: 1.3;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    /* white background */
    color: #000;
    /* default text color black */
    padding: 40px 5%;
    /* optional padding */
}


.header {
    text-align: center;
    margin-bottom: 40px;
}

.header p {
    font-size: 21px;
}

.main-grid {
    display: grid;
    /* 3 Columns */
    grid-template-columns: repeat(3, 1fr);
    /* 12 small rows to allow for different heights */
    grid-auto-rows: 80px;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    display: flex;
    align-items: flex-end;
    color: white;
    overflow: hidden;
    /* This makes the box dark if the image is missing */
    background-color: #222;
}

/* Sizing Logic to match your photo */
.small {
    grid-row: span 1;
}

.medium {
    grid-row: span 2;
}

.tall {
    grid-row: span 3;
}

.extra-tall {
    grid-row: span 4;
}

/* The dark shadow at the bottom of images so text is readable */
.content {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.content h3 {
    font-size: 19px;
    margin-bottom: 4px;
}

.content p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.2;
}


/* FAQ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/* SECTION */
.faq-section {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* LAYOUT */
.faq-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* IMAGE */
.faq-image {
    flex: 0.5;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* FAQ LIST */
.faq-list {
    width: 60%;
    flex: 1;
}

/* FAQ ITEM */
.faq-item {
    background: #f1eded;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ARROW */
.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0;
    font-size: 16px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
    }
}

/* reference card */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.references-section {
    padding: 80px 40px;
}

.container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.reference-card {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 340px;
    min-height: 420px;
}

.reference-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.reference-item {
    margin-bottom: 30px;
}

.reference-item:last-child {
    margin-bottom: 0;
}

.year {
    font-size: 15px;
    opacity: 0.7;
}

.reference-item h3 {
    font-size: 20px;
    margin: 8px 0;
}

.reference-item p {
    font-size: 16px;
    opacity: 0.8;
}

.image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================= HERO ================= */

.hero {
    padding: 120px 40px;
    border-radius: 20px;
    margin: 40px;

    background:
        radial-gradient(circle at bottom, #100967, transparent 60%),
        linear-gradient(180deg, #0e0f1f, #031a10);
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
}

.hero h1 span {
    color: #3004f5;
}

.hero p {
    margin: 20px auto 40px;
    max-width: 620px;
    font-size: 17px;
    opacity: 0.75;
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.call-btn {
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    background: #fff;
    color: #000;
}




/* ================= FOOTER ================= */

.footer {
    padding: 100px 60px;
    background: #000000;
    /* pure black */
    color: #fff;
    /* text in footer should be white */
    border-radius: 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
}

.footer-brand h2 {
    font-size: 29px;
    margin-bottom: 15px;
}

.footer-brand h2 span {
    color: #2b08f4;
}

.footer-brand p {
    font-size: 19px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.rating {
    font-size: 19px;
    margin-bottom: 20px;
}

.socials span {
    font-size: 18px;
    opacity: 0.6;
}

.icons i {
    margin-right: 10px;
    opacity: 0.7;
    cursor: pointer;
}

/* columns */

.footer-col h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    opacity: 0.7;
    margin-bottom: 10px;
}



/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    font-size: 17px;
    color: #666;
}