/* 1  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    color: #fff;
}

/* HERO */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;

    /* IMAGE + OVERLAY */

    background: linear-gradient(
            to right,
            rgba(5, 20, 45, 0.95) 40%,
            rgba(5, 20, 45, 0.6) 60%,
            rgba(5, 20, 45, 0.1) 100%
        ),
        url("../images/hero-bg.png");

    background-size: cover;
    background-position: center;
}

/* TEXT */

.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-text p {
    font-size: 18px;
    color: #cfd6e4;
    margin-bottom: 30px;
}

/* GOLD TEXT */

/* .gold {
    color: #d4a326;
} */

/* TAG */

.tag {
    border: 1px solid #d4a326;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 15px;
    color: #d4a326;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}

/* BUTTON */

.btn-gold {
    background: #d4a326;
    color: #000;
    padding: 14px 28px;
    font-weight: 600;
}

.btn-outline-gold {
    border: 1px solid #d4a326;
    color: #d4a326;
    padding: 14px 28px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 78vh;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .btn-outline-gold {
        border: 1px solid #d4a326;
        color: #d4a326;
        padding: 14px 36px;
        margin-top: 10px;
    }
}

/* 1 end  */

/* 2  */
/* =========================
PROBLEM SECTION WRAPPER
========================= */

.cut {
    text-decoration: line-through;
    color: #515c70 !important;
}

.problem-section {
    background: #071a35; /* dark blue background */
    padding: 100px 0;
    color: #fff;
}

/* =========================
SECTION TITLE
========================= */

.section-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

/* faded text */

.section-title span {
    color: #3c4e69;
}

/* subtitle text */

.section-title p {
    color: #a9b6c8;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.25rem;
}

/* =========================
LEFT PROBLEM CARD
========================= */

.problem-card {
    /* background image + dark overlay */

    background: linear-gradient(rgba(7, 26, 53, 0.85), rgba(7, 26, 53, 0.85)), url("../images/box1.png");

    background-size: cover;
    background-position: center;

    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    height: 100%;
}

/* red title */

.danger-title {
    color: #ff4d4d;
    margin-bottom: 30px;
}

/* problem item layout */

.problem-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* icon style */

.problem-item i {
    font-size: 22px;
    color: #ff4d4d;
    margin-top: 5px;
}

/* problem text */

.problem-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.problem-item p {
    color: #b6c2d3;
    font-size: 15px;
}

/* =========================
RIGHT SOLUTION CARD
========================= */




.solution-card {
    background-color: #141a27;

    padding: 40px;

    /* gold border */

    border: 1px solid #d4a326;

    height: 100%;
}



/* solution heading */

.solution-card h4 {
    color: #d4a326;
    margin-bottom: 30px;
    font-weight: 900;
}

/* solution item */

.solution-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* icon style */

.solution-item i {
    font-size: 22px;
    color: #d4a326;
    margin-top: 5px;
}

/* solution text */

.solution-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.solution-item p {
    color: #b6c2d3;
    font-size: 15px;
}

/* =========================
RESPONSIVE DESIGN
========================= */

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 32px;
    }

    .problem-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 25px;
    }

    .problem-card,
    .solution-card {
        padding: 25px;
    }

    .problem-item,
    .solution-item {
        flex-direction: column;
    }
}

/* 2 end  */

/* 3  */
/* =========================
CTA SECTION BACKGROUND
========================= */

.cta-section {
    background: #22262a;
    padding: 20px 0;
}

/* =========================
CENTER CARD
========================= */

.cta-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 60px;

    text-align: center;

    max-width: 900px;

    margin: auto;

    position: relative;
}

/* =========================
TOP ICON
========================= */

.cta-icon {
    width: 55px;
    height: 55px;

    background: #081a33;

    border: 2px solid #d4a326;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d4a326;

    font-size: 22px;

    margin: auto;

    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
}

/* =========================
TITLE
========================= */

.cta-card h2 {
    font-size: 54px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

/* subtitle */

.cta-sub {
    color: #a9b6c8;
    margin-bottom: 35px;
    font-size: 21px;
}

/* =========================
FORM
========================= */

.cta-card label {
    font-size: 12px;
    color: #8fa2bc;
    display: block;
    margin-bottom: 6px;
    text-align: left;
    font-weight: bolder;
}

.form-control::placeholder{
  color: rgb(238, 238, 238);
  font-style: italic;
  font-size: 14px;
}
/* input */

.cta-card .form-control {
    background: #1d232f;
    border: 1px solid #1d232f;
    color: #ffffff;
    padding: 12px;
}

/* =========================
BUTTON
========================= */

.cta-btn {
    width: 100%;

    background: #d4a326;

    border: none;

    padding: 14px;

    margin-top: 20px;

    font-weight: 600;

    color: #000;
}

/* =========================
BOTTOM NOTE
========================= */

.cta-note {
    margin-top: 15px;
    font-size: 17px;
    color: #8fa2bc;
    font-family: 'Inter', sans-serif;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 25px;
    }

    .cta-card h2 {
        font-size: 28px;
    }
}

/* 3  end */

/* 4 */

.gradient-text {
  font-weight: bold;
  background: linear-gradient(90deg, #f5d76e, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vastu-section{
    background: linear-gradient(90deg,#0b1c33,#081424);
    min-height:90vh;
}

.vastu-box{
    background:#1f2a3a;
    border-radius:8px;
    overflow:hidden;
    max-width:1100px;
    margin:auto;
}

.vastu-badge{
    font-size:12px;
    border:1px solid #f5c542;
    padding:4px 10px;
    color:#f5c542;
    letter-spacing:1px;
}

.vastu-title{
    font-size:38px;
    font-weight:700;
}

.vastu-title span{
    color:#f5c542;
}

.vastu-desc{
    color:#cfcfcf;
}

.vastu-highlight{
    border-left:3px solid #f5c542;
    padding-left:15px;
    color:#e5e5e5;
    font-weight: bolder;
    font-family: sans-serif;
}

.vastu-percent{
    color:#f5c542;
    font-weight:700;
}
/* 4 end */

/* 5 */
.deliverables-section{
    background: linear-gradient(90deg,#081a35,#0b2347);
    color:white;
    padding:80px 0;
}

.deliverables-subtitle{
    color:#f5b400;
    font-size:12px;
    letter-spacing:2px;
}

.deliverables-title{
    font-size:42px;
    font-weight:700;
}

.deliverables-desc{
    color:#b8c3d3;
    max-width:600px;
    margin:auto;
}

.deliver-card{
    background:#1a2a44;
    padding:30px;
    border:1px solid rgba(255,255,255,0.05);
    height:100%;
    transition:0.3s;
}

.deliver-card:hover{
    transform:translateY(-5px);
    border-color:#f5b400;
}

.icon-box{
    width:50px;
    height:50px;
    background:#2b3c5a;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    color:#f5b400;
    font-size:22px;
    margin-bottom:15px;
}

.deliver-card h5{
    font-weight:600;
}

.deliver-card p{
    font-size:14px;
    color:#aab4c5;
}

.ready{
    color:#f5b400;
    font-size:13px;
}
/* 5 end */

/* 6 */
.financial-section{
    background:#0f1720;
    padding:80px 0;
}

.small-title{
    color:#f4b942;
    letter-spacing:2px;
    font-size:14px;
}

.main-title{
    font-size:48px;
    font-weight:600;
    margin-bottom:40px;
}

.main-title span{
    color:#f4b942;
}

.feature-box{
    margin-bottom:30px;
}

.feature-box .icon{
    width:50px;
    height:50px;
    background:#0c2235;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f4b942;
    font-size:20px;
    margin-right:15px;
}

.feature-box h5{
    font-weight:600;
}

.feature-box p{
    color:#b8c2cc;
    font-size:14px;
}

/* Image Card */

/* Luxury Frame Effect */

.image-card{
    position:relative;
    padding:15px;
    border:1px solid rgba(255,196,60,0.4);
}

/* Second outer border */
.image-card::after{
    content:"";
    position:absolute;
    top:10px;
    left:10px;
    right:-10px;
    bottom:-10px;
    border:1px solid rgba(255,196,60,0.25);
    pointer-events:none;
}

/* Image style */
.image-card img{
    width:100%;
    /* height:420px;
    object-fit:cover; */
}

/* Bottom overlay text */
.location{
    position:absolute;
    bottom:30px;
    left:30px;
    color:white;
}

.location small{
    color:#f4b942;
    letter-spacing:1px;
    font-weight:600;
}

.location{
    position:absolute;
    bottom:25px;
    left:35px;
    color:white;
}

.location small{
    color:#f4b942;
    letter-spacing:1px;
}
/* 6 end */

/* 7 */

.build-journey{
    background:linear-gradient(90deg,#111820,#1a2430);
    padding:100px 0;
}

.section-subtitle{
    color:#f4b942;
    letter-spacing:2px;
    font-size:13px;
}

.section-title{
    font-size:42px;
    margin:10px 0 20px;
}

.section-title span{
    color:#f4b942;
}

.section-text{
    color:#aab4bf;
    max-width:420px;
    margin-bottom:30px;
}

/* Social buttons */

.social-buttons{
    display:flex;
    gap:20px;
}

.social-card{
    display:flex;
    align-items:center;
    gap:15px;
    background:#0e1a2b;
    padding:15px 20px;
    border-radius:6px;
    text-decoration:none;
    color:white;
    min-width:220px;
}

.social-card i {
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a1f2e;
}

.bi-youtube {
  color: #ff0000;
}

.bi-instagram {
  color: #e1306c;
}

.social-card small{
    display:block;
    color:#8fa1b3;
}

.arrow{
    margin-left:auto;
}

/* Image Grid */

.journey-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-gap:20px;
}

.grid-item{
    background:#1e2a3a;
    height:180px;
    border-radius:10px;
}

.grid-item.tall{
    grid-row:span 2;
    height:380px;
}

.grid-item.wide{
    grid-column:span 2;
    height:200px;
}

/* 7 end */

/* last */

/* =========================
FOOTER SECTION
========================= */

.site-footer {
    background: #020d1f; /* dark background */

    padding: 60px 0;

    text-align: center;
}

/* logo */

.footer-logo {
    font-size: 28px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 15px;
}

/* gold dot */

.footer-logo span {
    color: #d4a326;
}

/* footer text */

.footer-text {
    color: #a7b6c9;

    font-size: 20px;

    max-width: 500px;

    margin: 0 auto 25px;
}

/* copyright */

.footer-copy {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
    color: #6d7f98;

    font-size: 14px;

    letter-spacing: 1px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 576px) {
    .footer-logo {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }
    
    .min-center {
    text-align: center;
    }
}

/* last end */
