
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    height: 520px;
    position: relative;
}

.hero-overlay {
    /* background: rgba(20, 40, 80, 0.85); */
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.description {
    margin-bottom: 25px;
    opacity: 0.85;
}

.hero-buttons a {
    margin-right: 15px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 0px;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
}

.btn-secondary {
    /* background: #d4a017; */
    background: linear-gradient(135deg, #c69a3b, #e1b75b);
    color: white;
}

.full {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* WHY */
.why-section {
    background: #fff;
    padding: 70px 0;
    text-align: center;
}

.why-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px;
}

/* .why-item {
    max-width: 200px;
} */

.icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.highlight {
    margin-top: 20px;
    font-style: italic;
}


.what-section{
    padding: 70px 0;
   
}

.what-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
     text-align: center;
}
.what-content{
    text-align: justify;
}
.what-content p{
    margin-bottom:10px;
}
/* PROCESS */
.process-section {
    padding: 70px 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-image {
    /* height: 100px;
     */
    height: 60%;
    /* background: #e5e7eb; */
    border-radius: 8px;
    margin-bottom: 15px;
}


.process-item img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* PRICING */
/* SECTION */
.pricing-section{
    padding:80px 0;
    background:#f3f4f6;
    text-align:center;
}

/* TITLE WITH LINES */
.pricing-section h2{
    font-size:28px;
    font-weight:700;
    color:#2c3e60;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:50px;
}

.pricing-section h2::before,
.pricing-section h2::after{
    content:"";
    height:1px;
    width:200px;
    background:#cfd5df;
}

/* GRID */
.pricing-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* CARD */
.card{
    width:320px;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
    display:flex;
    flex-direction:column;

    transition:all .3s ease;
}
/* Hover effect */
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}
/* HEADER */
.card-header{
    padding:20px;
    color:white;
}

/* BLUE GRADIENT */
.card-header.blue{
    background:linear-gradient(
        to bottom,
        #3b5fa5,
        #203f78
    );
}

/* GOLD GRADIENT */
.card-header.gold{
    background:linear-gradient(
        to bottom,
        #d7a85c,
        #b9852c
    );
}

.card-header h3{
    font-size:16px;
    margin-bottom:10px;
    font-weight:600;
}

.price{
    font-size:28px;
    font-weight:700;
}

.price span{
    font-size:14px;
    font-weight:400;
    opacity:0.9;
}
.package-subtitle{
font-size:13px;
/* color:#e5e7eb; */
opacity:0.9;
margin-top:6px;
padding:8px;
}
/* FEATURE LIST */
.card ul{
    list-style:none;
    padding:25px;
    text-align:left;
    background:#f7f7f7;
}

.card ul li{
    margin-bottom:12px;
    font-size:14px;
    color:#555;
}

/* CHECK ICON */
.card ul li::before{
    content:"✔";
    color:#d7a85c;
    margin-right:10px;
}

/* BUTTON AREA */
.card .btn-area{
     padding:20px;
    background:#eeeeee;
    margin-top:auto;
}

/* BUTTON BASE */
.card a{
    display:block;
    width:100%;
    padding:12px 0;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;

    transition:all .25s ease;
}

.card button{
    display:block;
    width:100%;
    padding:12px 0;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    border: 0px;
    transition:all .25s ease;
}

/* BLUE BUTTON */
.btn-blue{
    background:linear-gradient(
        to bottom,
        #3b5fa5,
        #203f78
    );
    color:white;
}

/* GOLD BUTTON */
.btn-gold{
    background:linear-gradient(
        to bottom,
        #d7a85c,
        #b9852c
    );
    
    color:white;
}

.btn-blue:hover{
    background:linear-gradient(
        to bottom,
        #486dc0,
        #1b3566
    );
}

.btn-gold:hover{
    background:linear-gradient(
        to bottom,
        #e2b96f,
        #a87525
    );
}
/* ADDONS */
.addons-section {
    padding: 50px 0;
    text-align: center;
}

.addons-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.addon {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
}

/* CTA */
.cta-section {
    background: #1e3a8a;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.cta-section p {
    margin: 15px 0 25px;
}


/* example */
.examples-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* Card Layout */
.example-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.example-cta{
    text-align: center;
}
/* Image Container */
.image {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Labels */
.label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
}

/* Arrow */
.arrow {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}




/* mobile */
@media (max-width: 600px) {
    .example-card {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-item {
        padding: 20px;
    }

    /* .process-image {
        height: 90px;
    } */

    .process-item h4 {
        font-size: 18px;
    }

    .process-item p {
        font-size: 14px;
        line-height: 1.5;
    }
}