* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
}

/* Header */
header {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    text-align: center;
    padding: 25px 10px;
}

/* Layout */
.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* SERVICES */
.services {
    flex: 2;
}

.services h2 {
    margin-bottom: 10px;
}

/* Grid */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

/* Card */
.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Selected */
.card.selected {
    border: 2px solid #0d6efd;
}

/* Price */
.price {
    font-weight: bold;
    color: #0d6efd;
    margin: 8px 0;
}

/* Buttons */
button {
    background: #0d6efd;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #084298;
}

/* PAYMENT PANEL */
.payment-panel {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
}

.payment-panel input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

/* WhatsApp Button */
.payment-panel button {
    width: 100%;
    background: #25D366;
}

.payment-panel button:hover {
    background: #1ebe5d;
}

/* Note */
.note {
    font-size: 0.9em;
    color: gray;
    margin-top: 5px;
}

/* About */
.about {
    font-size: 1em;
    color: rgb(0, 0, 0);
    margin-top: 5px;
    font-weight: bold;
}
/* cyber image*/



.card {
    cursor: pointer;
    transition: 0.2s;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.click-hint {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}

.card {
    cursor: pointer;
    touch-action: manipulation;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


/*Payment panel*/
.payment-panel {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.payment-panel h2 {
    text-align: center;
    margin-bottom: 10px;
}

.note {
    text-align: center;
    color: gray;
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.payment-panel button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.payment-panel button:hover {
    background: #1ebe5d;
}

.trust {
    text-align: center;
    font-size: 13px;
    color: green;
    margin-top: 10px;
}

.payment-panel hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #eee;
}

.contact-info {
    text-align: center;
    font-size: 14px;
}

.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info a {
    color: #1e90ff;
    text-decoration: none;
}


/*form*/

/* Form Container */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input Field Wrapper */
.input-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

/* Hover & Focus */
.input-field:hover,
.input-field:focus-within {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: #fff;
}

/* Icon */
.input-field .icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Input */
.input-field input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 15px;
    color: #333;
}

/* Placeholder */
.input-field input::placeholder {
    color: #aaa;
}

/* Button */
.payment-panel button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.payment-panel button:hover {
    background: linear-gradient(90deg, #1ebe5d, #0f6f54);
}

.payment-panel button:active {
    transform: scale(0.97);
}


/*cards improvisement*/

/* Container for cards */
.services {
    margin-top: 20px;
}

/* Grid setup */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; /* spacing between cards */
}

/* Card design */
.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover effect */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Selected state */
.card.selected {
    border: 2px solid #25D366;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Price styling */
.card .price {
    font-weight: bold;
    margin-top: 10px;
}

/* Click hint */
.card .click-hint {
    font-size: 12px;
    color: gray;
    margin-top: 8px;
}


/* Assuming your sticky header is 80px tall */
.payment-panel {
    scroll-margin-top: 100px; /* a bit more than header */
}

.payment-panel {
    position: relative;
    padding-top: 30px;  /* extra space */
    margin-top: 20px;   /* shift down a little */
}

/* CONTACT SECTION */
/* CONTACT SECTION */
.contact-info {
    margin-top: 20px;
    text-align: left;
}

/* Title */
.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Card */
.contact-card {
    background: #f9fbfd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Location */
.contact-card .location {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Each row */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

/* Hover */
.contact-item:hover {
    background: #eef6ff;
}

/* Icons */
.contact-item .icon {
    font-size: 20px;
}

/* Links */
.contact-item a {
    font-size: 16px;
    font-weight: 700;
    color: #1e90ff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Hint text */
.hint {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/*Logo*/
header {
    position: relative;
    height: 220px; /* 🔥 controls your header size */
    display: flex;
    align-items: center;
    justify-content: center;

    background: url('cyber.jpg') no-repeat center center;
    background-size: cover;

    color: white;
    overflow: hidden;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.logo {
    height: 60px;
}

.intro-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.intro-text h1 {
    margin: 0;
    font-size: 28px;
}

.intro-text p {
    margin: 5px 0 0 0;
    color: #555;
}

.container {
    margin-top: 0; /* prevent extra gap */
}

.text h1 {
    margin: 0;
    font-size: 26px;
}

.text p {
    margin: 5px 0 0 0;
    color: #555;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.logo {
    height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    header {
        height: 180px; /* smaller but still visible */
    }

    .intro-text {
        flex-direction: column;
        text-align: center;
    }


    .text {
        text-align: center;
    }

    .logo {
        height: 190px;
    }
}

/* MOBILE FIX */
@media(max-width: 768px){
    .container {
        flex-direction: column;
    }
}


