@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: #050810;
    /* Dark background to match image */
}


 .action-button-cta {
            padding: 10px 20px;
            color: #ffffff;
            background-color: transparent;
            border: 2px solid #4a3e28;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-block;
            margin-bottom: 40px;
        }

        .action-button-cta:hover {
            background-color: rgba(203, 163, 88, 0.15);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

.hero-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* Modern tech/cyber background */
    background: linear-gradient(to right, rgba(5, 8, 16, 0.95) 30%, rgba(5, 8, 16, 0.4) 100%),
        url('../img/hero-secrione-img.png') no-repeat center center/cover;
    position: relative;
}

.hero-subtitle {
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgb(174, 171, 171);
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-desc {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.7;
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #e5c376 0%, #cba358 100%);
    color: #050810;
    font-weight: 700;
    padding: 14px 35px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 163, 88, 0.3);
}

.btn-gold-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 163, 88, 0.5);
    color: #000;
}

/* Mobile Adjustments */
@media (max-width: 990px) {
    .hero-wrapper {
        background: linear-gradient(rgba(5, 8, 16, 0.9), rgba(5, 8, 16, 0.9)),
            url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1920') center/cover;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .btn-contact {
        margin-top: 15px;
        width: 100%;
    }
}




.elite-stats-bar {
    background: linear-gradient(90deg, rgba(11, 16, 26, 0.9) 0%, rgba(20, 26, 40, 1) 50%, rgba(11, 16, 26, 0.9) 100%);
    border-top: 1px solid rgba(203, 163, 88, 0.3);
    border-bottom: 1px solid rgba(203, 163, 88, 0.3);
    padding: 40px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(203, 163, 88, 0.1);
    border: 1px solid rgba(203, 163, 88, 0.4);
    border-radius: 50%;
    color: #cba358;
    box-shadow: 0 0 15px rgba(203, 163, 88, 0.2);
    transition: 0.4s ease;
}

.stat-item:hover .stat-icon-wrapper {
    background: #cba358;
    color: #050810;
    box-shadow: 0 0 25px rgba(203, 163, 88, 0.6);
    transform: scale(1.1);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #cba358;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --- Premium Services Grid --- */
.premium-services {
    padding: 80px 0;
    background-color: #050810;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #cba358;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cba358, transparent);
    margin: 20px auto;
}

/* Card Design */
.elite-card {
    background-color: #0b101a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Golden Top Border Glow */
.elite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e5c376 0%, #cba358 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.elite-card:hover {
    border-color: rgba(203, 163, 88, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(203, 163, 88, 0.15);
}

.elite-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(203, 163, 88, 0.1) 0%, rgba(203, 163, 88, 0.02) 100%);
    border: 1px solid rgba(203, 163, 88, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #cba358;
    transition: 0.4s ease;
}

.elite-card:hover .card-icon {
    background: linear-gradient(135deg, #e5c376 0%, #cba358 100%);
    color: #050810;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .stat-item {
        justify-content: flex-start;
        margin-bottom: 20px;
        padding: 0 20px;
    }
}




.about-premium-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(203, 163, 88, 0.05), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.02), transparent 40%);
    position: relative;
}

@media (max-width: 768px) {
    .about-premium-sectio {
        padding: ws0;
    }
}

/* --- Image & Floating Badge Area (FIXED FOR BIGGER IMAGE) --- */
.about-image-wrapper {
    position: relative;
    padding: 20px;
    /* Space for the golden border */
    z-index: 1;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    border-top: 3px solid #cba358;
    border-left: 3px solid #cba358;
    border-radius: 12px 0 0 0;
    transition: all 0.5s ease;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 40%;
    border-bottom: 3px solid #cba358;
    border-right: 3px solid #cba358;
    border-radius: 0 0 12px 0;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover::before,
.about-image-wrapper:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-img {
    width: 100%;
    height: 550px;
    /* YEH HAI MAGIC FIX: Image ko lamba aur bada karne ke liye */
    object-fit: cover;
    /* Image fatega nahi, perfect frame me baithega */
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.5s;
}

.about-image-wrapper:hover .about-img {
    filter: grayscale(0%) contrast(1.1);
}

/* Floating Excellence Badge (Adjusted size and position) */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -40px;
    /* Badge ko image se thoda bahar nikal diya taaki image na chupe */
    background: linear-gradient(135deg, #e5c376 0%, #cba358 100%);
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
    z-index: 2;
    color: #03050a;
    border: 3px solid #03050a;
    /* Dark border jo image ke upar uth ke aayega */
}

.floating-badge h3 {
    font-size: 3rem;
    /* Number thoda bada kiya */
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.floating-badge p {
    font-size: 1rem;
    font-weight: 700;
    margin: 8px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #03050a;
}

/* --- Content Area --- */
.about-subtitle {
    color: #cba358;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;

}

.about-text {
    color: #fff !important;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-text {
    color: #ffffff;
    font-weight: 500;
}

/* --- Premium Feature List --- */
.premium-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.premium-feature-card:hover {
    background: rgba(203, 163, 88, 0.05);
    border-color: rgba(203, 163, 88, 0.3);
    transform: translateY(-5px);
}

.feat-icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #0b101a;
    border: 1px solid #cba358;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cba358;
}

.feat-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.feat-content p {
    font-size: 0.85rem;
    color: #8b949e;
    margin: 0;
    line-height: 1.5;
}

/* Mobile View Fixes */
@media (max-width: 991px) {
    .floating-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 25px;
    }

    .floating-badge h3 {
        font-size: 2.2rem;
    }

    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .about-img {
        height: 400px;
    }

    /* Mobile me thodi choti taaki screen me fit aaye */
}










.evidence-section {
    padding: 90px 0;
    background-color: #050810;
}
@media (max-width:768px) {
    .evidence-section {
    padding: 0 !important;
    background-color: #050810;
}
}
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.evidence-subtitle {
    color: #cba358;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.evidence-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.evidence-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cba358, transparent);
    margin: 20px auto;
}

/* --- THE EXACT GRID FROM YOUR IMAGE --- */
.custom-evidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 barabar columns */
    grid-auto-rows: 250px;
    /* Har row ki fixed height */
    gap: 15px;
    /* Images ke beech ka gap */
}

/* Grid Item Spans (To match your screenshot exactly) */
.item-wide-top {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

/* Top Left (Wide) */
.item-small-top {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Top Middle (Square) */
.item-tall-right {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

/* Right Side (Tall) */
.item-small-bottom {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Bottom Left (Square) */
.item-wide-bottom {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* Bottom Middle (Wide) */

/* --- Image Card & Hover Styling (From previous code) --- */
.evidence-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    /* Halka sa rounded corner premium look ke liye */
    cursor: pointer;
}

.evidence-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.7);
    transition: all 0.5s ease;
}

.evidence-card:hover .evidence-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

/* Dark Overlay with Golden Border on Hover */
.evidence-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 10, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    border-radius: 4px;
}

.evidence-card:hover .evidence-overlay {
    opacity: 1;
    border-color: #cba358;
}

/* Icon and Text Animation */
.overlay-icon {
    color: #cba358;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.evidence-card:hover .overlay-icon {
    transform: translateY(0);
}

.overlay-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    text-align: center;
    padding: 0 15px;
}

.evidence-card:hover .overlay-text {
    transform: translateY(0);
}

/* Responsive Mobile Layout */
@media (max-width: 991px) {
    .custom-evidence-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .item-wide-top {
        grid-column: span 2;
        grid-row: span 1;
    }

    .item-small-top {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-tall-right {
        grid-column: span 1;
        grid-row: span 2;
    }

    .item-small-bottom {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-wide-bottom {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .custom-evidence-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .custom-evidence-grid>div {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}










.work-process-section {
    padding: 100px 0;
    background-color: #050810;
    position: relative;
}

.process-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.process-card {
    background: #0b101a;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    border-color: #cba358;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #cba358;
    margin-bottom: 10px;
    line-height: 1;
}

.process-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Connecting Line */
.process-row {
    position: relative;
}


















.testimonials-section {
    padding: 100px 0;
    background-color: #03050a;
}
@media (max-width:768px) {
    .testimonials-section {
    padding: 0 !important;
    background-color: #03050a;
}
}
.testimonial-subtitle {
    color: #cba358;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testimonial-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #0b101a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #cba358;
    transform: translateY(-10px);
}

.stars {
    color: #cba358;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #d1d5db;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.client-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.client-case {
    color: #cba358;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
















.cta-section {
    padding: 100px 0;
    background-color: #03050a;
    position: relative;
    overflow: hidden;
}

.cta-container {
    background: linear-gradient(135deg, rgba(203, 163, 88, 0.15) 0%, rgba(11, 16, 26, 0.9) 100%);
    border: 1px solid rgba(203, 163, 88, 0.3);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    color: #ffffff;
}

/* Secret Badge */
.secret-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    border: 2px dashed #cba358;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cba358;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transform: rotate(15deg);
    background: rgba(0, 0, 0, 0.2);
}











/* Footer Styling */
.footer-section {
    background-color: #03050a;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(203, 163, 88, 0.2);
}

.footer-brand h3 {
    color: #cba358;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #cba358;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

h1,
.hero-title,
.section-title,
.about-title,
.evidence-title,
.process-title,
.testimonial-title,
.cta-title {

    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
}

h2 {

    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

h3 {

    font-size: 30px;
    font-weight: 700;
}

h5 {

    font-size: 20px;
    font-weight: 600;
}

p {

    font-size: 17px;
    line-height: 1.8;
    color: #9ca3af;
}

.btn,
.contact-btn,
.btn-gold-gradient {

    font-size: 16px;
    font-weight: 700;
}

.card-title {

    font-size: 24px;
}

.card-desc {

    font-size: 16px;
}

.stat-value {

    font-size: 42px;
}

.stat-label {

    font-size: 14px;
}

.footer-brand h3 {

    font-size: 30px;
}

.footer-links h5 {

    font-size: 20px;
}

.footer-links a {

    font-size: 16px;
}

@media(max-width:991px) {

    h1,
    .hero-title,
    .section-title,
    .about-title,
    .evidence-title,
    .process-title,
    .testimonial-title,
    .cta-title {

        font-size: 42px;
    }

    h2 {

        font-size: 34px;
    }

    h3 {

        font-size: 28px;
    }

    p {

        font-size: 16px;
    }

}

@media(max-width:576px) {

    h1,
    .hero-title,
    .section-title,
    .about-title,
    .evidence-title,
    .process-title,
    .testimonial-title,
    .cta-title {

        font-size: 34px;
        line-height: 1.25;
    }

    h2 {

        font-size: 28px;
    }

    h3 {

        font-size: 24px;
    }

    p {

        font-size: 15px;
    }

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header ki height ke hisaab se offset set karein */
section {
    scroll-margin-top: 70px;
}

/* 
 @media (max-width:600px) {
    .btn-whatsapp{
      
          background-color: #25D366;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }
}  */