/*=========================================================
    PROJECT FALCON
    REDSPY INVESTIGATION & INTELLIGENCE

    MASTER STYLESHEET

    Version      : 1.0
    Author       : RedSpy
    Last Updated : 29 July 2026

===========================================================*/
/*=========================================================
GOOGLE FONT VARIABLES
=========================================================*/

:root{

    /*------------------------------------
  Brand Colors
------------------------------------*/

--primary:#8f1626;
--primary-dark:#640d18;

--gold:#c7a24a;
--gold-light:#e7c774;


/*------------------------------------
  Neutral Colors
------------------------------------*/

--black:#0b0b0b;
--dark:#171717;
--light:#f8f8f8;
--white:#ffffff;

--gray:#666666;
--border:#e5e5e5;


/*------------------------------------
  Radius
------------------------------------*/

--radius:18px;


/*------------------------------------
  Shadows
------------------------------------*/

--shadow-sm:0 5px 15px rgba(0,0,0,.08);

--shadow:0 20px 50px rgba(0,0,0,.10);


/*------------------------------------
  Animation
------------------------------------*/

--transition:.35s ease;


/*------------------------------------
  Typography
------------------------------------*/

--heading:'Cinzel',serif;

--body:'Poppins',sans-serif;
}



/*=========================================================
RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{text-size-adjust:100%;

    scroll-behavior:smooth;

}

body{

    font-family:var(--body);

    color:var(--dark);

    background:var(--white);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;
    height:auto;
    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

section{

    position:relative;

}

::selection{

    background:var(--primary);

color:var(--white);

transition:var(--transition);

    color:#fff;

}



/*=========================================================
COMMON CONTAINER
=========================================================*/

.container{

    width:min(1240px,92%);

    margin:auto;

}

.section-padding{

    padding:80px 0;

}



/*=========================================================
HEADINGS
=========================================================*/

h1,
h2,
h3,
h4{

    font-family:var(--heading);

    color:var(--black);

    line-height:1.2;

}

h1{

    font-size:62px;

    font-weight:700;

}

h2{

    font-size:44px;

    
}

h3{

    font-size:24px;

}

h4{

    font-size:18px;

}

p{

    color:var(--gray);

    margin-bottom:18px;

}



/*=========================================================
SECTION TITLES
=========================================================*/

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span,

.section-subtitle{

    display:inline-block;

    color:var(--gold);

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:16px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    margin-bottom:0;

}



/*=========================================================
BUTTONS
=========================================================*/

.btn-primary,

.btn-secondary,

.btn-consultation{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

}

.btn-secondary:hover{

    background:#fff;

    color:var(--black);

}

.btn-consultation{

    background:var(--gold);

    color:var(--black);

    font-size:15px;

}

.btn-consultation:hover{

    background:var(--gold-light);

}



/*=========================================================
CARDS
=========================================================*/
/*==================================================
 PREMIUM SERVICE GRID
==================================================*/

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:35px;

margin-top:60px;

}.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:5px;

height:100%;

background:linear-gradient(

180deg,

#d4af37,

#9b6b1c);

transition:.45s;

}.service-card:hover{

transform:translateY(-12px);

box-shadow:

0 28px 60px rgba(0,0,0,.14);

border-color:#d4af37;

}.service-card::after{

content:"";

position:absolute;

top:-70px;

right:-70px;

width:150px;

height:150px;

background:

radial-gradient(circle,

rgba(212,175,55,.15),

transparent);

transition:.5s;

}

.service-card:hover::after{

transform:scale(1.6);

}.service-card i{

font-size:34px;

color:#c89d2b;

margin-bottom:20px;

display:block;

transition:.4s;

}
.service-card{

position:relative;

background:#ffffff;

padding:42px 35px;

border-radius:22px;

border:1px solid rgba(201,160,74,.18);

box-shadow:

0 12px 35px rgba(0,0,0,.06);

transition:.45s;

overflow:hidden;

}.service-card:hover i{

transform:scale(1.15)

rotate(-8deg);

}.service-card h3{

font-family:'Cormorant Garamond',serif;

font-size:34px;

font-weight:700;

margin-bottom:15px;

color:#1b1b1b;

}.service-card p{

font-size:17px;

line-height:1.9;

color:#666;

}.service-link{

display:inline-flex;

align-items:center;

gap:10px;

margin-top:25px;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

font-size:13px;

color:#9b6b1c;

transition:.3s;

text-decoration:none;

}

.service-link:hover{

gap:18px;

color:#d4af37;

}

/*=========================================================
GRID HELPERS
=========================================================*/

.services-grid,

.office-grid,

.process-grid,

.commitment-grid,

.achievement-grid{

    display:grid;

    gap:30px;

}

.services-grid{

    grid-template-columns:repeat(3,1fr);

}

.office-grid{

    grid-template-columns:repeat(3,1fr);

}

.process-grid{

    grid-template-columns:repeat(4,1fr);

}

.commitment-grid{

    grid-template-columns:repeat(3,1fr);

}

.achievement-grid{

    grid-template-columns:repeat(4,1fr);

}



/*=========================================================
ANIMATIONS
=========================================================*/


.fade-up.show{

    opacity:1;

    transform:translateY(0);

}



/*=========================================================
PRELOADER
=========================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#090909;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader{

    width:70px;

    height:70px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.15);

    border-top:5px solid var(--gold);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}
/*=========================================================
LUXURY INTELLIGENCE RIBBON
=========================================================*/

.luxury-ribbon{

    background:#050505;

    border-top:1px solid rgba(199,162,74,.20);

    border-bottom:1px solid rgba(199,162,74,.20);

    overflow:hidden;

    white-space:nowrap;

    position:relative;

}

.luxury-ribbon::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(199,162,74,.08),
        transparent
    );

    animation:ribbonGlow 8s linear infinite;

}

.luxury-track{

    display:flex;

    width:max-content;

    animation:ribbonScroll 90s linear infinite;

}

.luxury-track span{

    display:inline-block;

    padding:7px 0;

    padding-right:120px;

    font-size:12px;

    letter-spacing:2px;

    font-weight:600;

    color:var(--gold-light);

    text-transform:uppercase;
}

@keyframes ribbonScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes ribbonGlow{

    from{

        transform:translateX(-100%);

    }

    to{

        transform:translateX(100%);

    }

}
/*=========================================================
TOP BAR
=========================================================*/

.top-bar{

    background:#111;

    color:#d9d9d9;

    font-size:14px;

    padding:10px 0;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:8px;

}

.top-left i{

    color:var(--gold);

}

.top-right a{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#ffffff;

    transition:var(--transition);

}

.top-right a:hover{

    background:var(--gold);

    color:#111;

}



/*=========================================================
HEADER
=========================================================*/
/*=========================================
  LUXURY GOLD HEADER DIVIDERS
==========================================*/

.site-header{
    position: relative;
}

/* TOP GOLD LINE */

.site-header::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        #7b5a12 15%,
        #b8891e 35%,
        #d8b85c 50%,
        #f2dc8c 65%,
        #b8891e 85%,
        transparent 100%
    );

    box-shadow:
        0 0 6px rgba(212,175,55,.18);

    z-index:100;
}

/* BOTTOM GOLD LINE */

.site-header::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:2px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        #7b5a12 15%,
        #b8891e 35%,
        #d4af37 50%,
        #f2dc8c 65%,
        #b8891e 85%,
        transparent 100%
    );

    box-shadow:
        0 0 5px rgba(212,175,55,.14);

    overflow:hidden;
}

/* GOLD SHIMMER */

.site-header::before,
.site-header::after{

    background-size:250% 100%;

    animation:goldShimmer 16s ease-in-out infinite;

}

@keyframes goldShimmer{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}
#header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:linear-gradient(
    90deg,
    #080808 0%,
    #1d070a 50%,
    #080808 100%);
    border-bottom:1px solid rgba(199,162,74,.18);
    z-index:999;

    transition:.4s;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

#header.scrolled{

    padding:0;

    box-shadow:0 10px 35px rgba(0,0,0,.12);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:84px;

}
/*------------------------------------
  Header Actions
------------------------------------*/

.header-actions{

    display:flex;

    align-items:center;

    margin-left:30px;

    flex-shrink:0;

}
.logo img{

    width:165px;

    height:auto;

}



/*=========================================================
NAVIGATION
=========================================================*/

.navbar{

    display:flex;

    align-items:center;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:45px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    font-size:15px;

    font-weight:600;

    color:#f2f2f2;

    position:relative;

    padding:8px 0;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-menu a:hover::after,
.nav-menu a.active::after{

    width:100%;

}

.nav-menu a:hover,
.nav-menu a.active{

    color:var(--gold-light);

}



/*=========================================================
CONSULTATION BUTTON
=========================================================*/

.btn-consultation{

    margin-left:30px;

}
/* Hover Effect */
.btn-consultation:hover{
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(212,175,55,.25);

    transition: .35s ease;
}


/*=========================================================
MOBILE MENU BUTTON
=========================================================*/

.mobile-toggle{

    display:none;

    width:48px;

    height:48px;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-size:20px;

    align-items:center;

    justify-content:center;

}



/*=========================================================
HERO SECTION
=========================================================*/

.hero{

    position:relative;

    min-height:92vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#000;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,8,8,.88) 0%,
        rgba(8,8,8,.72) 45%,
        rgba(8,8,8,.40) 100%
    );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:720px;

    color:#fff;

    padding:30px 0;

}

.hero-tag{

    display:inline-block;

    background:rgba(199,162,74,.15);

    color:#d8b45a;

text-shadow:
0 0 6px rgba(216,180,90,.35),
0 0 12px rgba(216,180,90,.12);

    border:1px solid rgba(199,162,74,.4);

    padding:10px 18px;

    border-radius:40px;

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:25px;

    text-transform:uppercase;

}

.hero h1{

    color:#fff;

    margin-bottom:28px;

    font-size:68px;

    line-height:1.1;

}

.hero p{

    color:#ededed;

    font-size:18px;

    margin-bottom:40px;

    max-width:650px;

}



/*=========================================================
HERO BUTTONS
=========================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.hero-buttons .btn-primary{

    min-width:220px;

}

.hero-buttons .btn-secondary{

    min-width:220px;

}



/*=========================================================
HERO STATISTICS
=========================================================*/

.hero-badges{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.hero-badges div{

    min-width:170px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:14px;

    text-align:center;

    padding:22px 15px;

}

.hero-badges strong{

    display:block;

    color:var(--gold-light);

    font-size:34px;

    font-family:var(--heading);

    margin-bottom:6px;

}

.hero-badges span{

    color:#f2f2f2;

    font-size:14px;

    letter-spacing:1px;

}



/*=========================================================
HERO SCROLL INDICATOR
=========================================================*/

.hero::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:35px;

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.6);

    border-radius:20px;

    transform:translateX(-50%);

    z-index:6;

}

.hero::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:58px;

    width:6px;

    height:12px;

    background:var(--gold);

    border-radius:20px;

    transform:translateX(-50%);

    animation:scrollMouse 2s infinite;

    z-index:7;

}

@keyframes scrollMouse{

    0%{

        opacity:1;

        transform:translate(-50%,0);

    }

    100%{

        opacity:0;

        transform:translate(-50%,14px);

    }

}
/*=========================================================
TRUST BAR
=========================================================*/

.trust-bar{

    background:#ffffff;

    position:relative;

    margin-top:-60px;

    z-index:10;

}

.trust-bar .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust-item{

    padding:45px 35px;

    text-align:center;

}

.trust-item i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:22px;

}

.trust-item h3{

    margin-bottom:15px;

    font-size:22px;

}

.trust-item p{

    margin:0;

}



/*=========================================================
ABOUT SECTION
=========================================================*/
.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.why-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

}

.why-card p{

    line-height:1.8;

}

.text-center{

    text-align:center;

    margin-top:60px;

}
.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:50px;

}

.mission-card{

    background:var(--white);

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

}

.mission-card i{

    font-size:40px;

    color:var(--gold);

    margin-bottom:20px;

}

.mission-card h3{

    margin-bottom:20px;

}

.values-box{

    margin-top:50px;

    padding:40px;

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.values-box h3{

    text-align:center;

    margin-bottom:30px;

}
.about{

    background:#fafafa;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.about-image{

    position:relative;

    overflow:hidden;

}
.about-image img{

    width:100%;

    height:auto;

    display:block;

    border-radius:20px;

    box-shadow:var(--shadow);

    object-fit:cover;

}
.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about-content h2{

    margin-bottom:24px;

    line-height:1.2;

}
.about-content p{

    margin-bottom:22px;

    line-height:1.9;

}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.about-highlights div{

    display:flex;

    align-items:center;

    gap:12px;
    
    font-weight:600;
line-height:1.5;
}

.about-highlights i{

    color:var(--gold);

    font-size:18px;

}



/*=========================================================
FOUNDER SECTION
=========================================================*/

.founder-panel{

    background:#ffffff;

}

.founder-wrapper{

    display:grid;

    grid-template-columns:480px 1fr;

    align-items:center;

    gap:70px;

}

.founder-image{

    position:relative;

}

.founder-photo{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.founder-content h2{

    margin-bottom:12px;

}

.founder-content h4{

    color:var(--primary);

    font-family:var(--body);

    font-weight:600;

    margin-bottom:30px;

}

.founder-content blockquote{

    font-family:var(--heading);

    font-size:24px;

    color:var(--primary);

    line-height:1.6;

    border-left:5px solid var(--gold);

    padding-left:25px;

    margin-bottom:35px;

}

.founder-content p{

    margin-bottom:30px;

}

.founder-badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:35px;

}

.founder-badges span{

    background:#f5f5f5;

    border:1px solid #e5e5e5;

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

}



/*=========================================================
TIMELINE
=========================================================*/

.timeline{

    background:#f7f7f7;

}

.timeline-wrapper{

    position:relative;

    max-width:1000px;

    margin:auto;

}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:120px;

    top:0;

    bottom:0;

    width:3px;

    background:linear-gradient(

        to bottom,

        var(--gold),

        var(--primary)

    );

}

.timeline-item{

    display:grid;

    grid-template-columns:180px 1fr;

    gap:45px;

    position:relative;

    margin-bottom:55px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-year{

    font-family:var(--heading);

    font-size:22px;

    font-weight:700;

    color:var(--primary);

    text-align:right;

    padding-right:28px;

    position:relative;

}

.timeline-year::after{

    content:"";

    position:absolute;

    right:-12px;

    top:10px;

    width:22px;

    height:22px;

    background:var(--gold);

    border-radius:50%;

    border:5px solid #ffffff;

    box-shadow:0 0 0 4px rgba(199,162,74,.20);

}

.timeline-card{

    background:#ffffff;

    border-radius:16px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.timeline-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.timeline-card h3{

    margin-bottom:18px;

}

.timeline-card p{

    margin:0;

}



/*=========================================================
COMMON IMAGE EFFECTS
=========================================================*/

.about-image img,
.founder-photo,
.office-card img,
.service-image img,
.media-right img{

    transition:transform .5s ease;

}

.about-image:hover img,
.office-card:hover img,
.service-card:hover img,
.media-right:hover img{

    transform:scale(1.05);

}



/*=========================================================
SECTION BACKGROUND DECORATION
=========================================================*/

.about::before,
.timeline::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(199,162,74,.05);

    filter:blur(10px);

    z-index:0;

}

.about::before{

    top:-120px;

    right:-120px;

}

.timeline::before{

    bottom:-140px;

    left:-140px;

}

.about .container,
.timeline .container{

    position:relative;

    z-index:2;

}
/*=========================================================
SERVICES SECTION
=========================================================*/

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    overflow:hidden;

    border-radius:18px;

    background:#ffffff;

}

.service-image{

    overflow:hidden;

    position:relative;

}

.service-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .6s ease;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-content h3{

    margin-bottom:18px;

}

.service-content p{

    margin-bottom:22px;

    min-height:90px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.service-link i{

    transition:var(--transition);

}

.service-link:hover{

    color:var(--gold);

}

.service-link:hover i{

    transform:translateX(6px);

}



/*=========================================================
INVESTIGATION PROCESS
=========================================================*/

.process{

    background:#f8f8f8;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    padding:40px 30px;

    text-align:center;

    overflow:hidden;

}

.process-number{

    width:72px;

    height:72px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#ffffff;

    font-size:26px;

    font-family:var(--heading);

    font-weight:700;

}

.process-card h3{

    margin-bottom:18px;

}

.process-card p{

    margin:0;

}

.process-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--primary)
    );

    transform:scaleX(0);

    transition:var(--transition);

}

.process-card:hover::after{

    transform:scaleX(1);

}



/*=========================================================
WHY REDSPY
=========================================================*/
/*=========================================================
THE REDSPY CODE
=========================================================*/

.ethics-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.ethics-card{

    background:var(--white);

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.ethics-card:hover{

    transform:translateY(-10px);

}

.ethics-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:22px;

}

.ethics-card h3{

    margin-bottom:18px;

}

.ethics-card p{

    line-height:1.8;

}
.why-redspy{

    background:#ffffff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.why-content h2{

    margin-bottom:25px;

}

.why-content p{

    margin-bottom:35px;

}



/*=========================================================
FEATURE LIST
=========================================================*/

.feature-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.feature-item{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:24px;

    background:#ffffff;

    border-radius:16px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.feature-item:hover{

    transform:translateX(10px);

    box-shadow:var(--shadow);

}

.feature-icon{

    width:64px;

    height:64px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(199,162,74,.15);

    color:var(--gold);

    font-size:26px;

}

.feature-item h4{

    margin-bottom:10px;

}

.feature-item p{

    margin:0;

}



/*=========================================================
SECTION IMAGE OVERLAYS
=========================================================*/

.service-image::before,

.why-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.18),

        transparent

    );

    opacity:0;

    transition:.4s;

}

.service-card:hover .service-image::before,

.why-image:hover::before{

    opacity:1;

}



/*=========================================================
SERVICES RESPONSIVE HELPERS
=========================================================*/

.services-grid article,

.process-grid article{

    height:100%;

}

.service-card,

.process-card{

    display:flex;

    flex-direction:column;

}

.service-content{

    flex:1;

    display:flex;

    flex-direction:column;

}

.service-link{

    margin-top:auto;

}
/*=========================================================
OFFICE SHOWCASE
=========================================================*/

.office-showcase{

    background:#f8f8f8;

}

.office-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.office-card{

    overflow:hidden;

    border-radius:18px;

    background:#ffffff;

}

.office-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.office-content{

    padding:30px;

}

.office-content h3{

    margin-bottom:18px;

}

.office-content p{

    margin:0;

}



/*=========================================================
MEDIA RECOGNITION
=========================================================*/
/*=========================================================
THE REDSPY PROMISE
=========================================================*/

.redspy-promise{

    background:linear-gradient(135deg,#090909,#181818);

    color:var(--white);

}

.promise-panel{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.promise-panel h2{

    color:var(--white);

}

.promise-panel blockquote{

    font-family:var(--heading-font);

    font-size:32px;

    line-height:1.5;

    color:var(--gold);

    margin:45px 0;

}

.promise-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin:50px 0;

}

.promise-grid div{

    display:flex;

    align-items:center;

    gap:14px;

    justify-content:center;

    font-size:18px;

}

.promise-grid i{

    color:var(--gold);

}

.promise-closing{

    font-size:22px;

    font-weight:600;

    margin-bottom:40px;

}
.media-recognition{

    background:#ffffff;

}

.media-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.media-right{

    overflow:hidden;

    border-radius:20px;

}

.media-right img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.media-points{

    margin:35px 0;

}

.media-points li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-weight:500;

}

.media-points i{

    color:var(--gold);

}



/*=========================================================
MEDIA GELLERY
=========================================================*/

.media-gellery-home{

    background:#fafafa;

}

.gellery-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.gellery-grid article{

    overflow:hidden;

    border-radius:16px;

    box-shadow:var(--shadow-sm);

}

.gellery-grid img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:.5s;

}

.gellery-grid article:hover img{

    transform:scale(1.08);

}



/*=========================================================
ACHIEVEMENTS
=========================================================*/

.achievements{

    background:linear-gradient(

        135deg,

        #111111,

        #1b1b1b

    );

    color:#ffffff;

}

.achievements .section-title h2,

.achievements .section-title span,

.achievements .section-title p{

    color:#ffffff;

}

.achievement-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.achievement-card{

    text-align:center;

    padding:45px 25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(6px);

}

.achievement-card h2{

    font-size:56px;

    color:var(--gold);

    margin-bottom:15px;

}

.achievement-card p{

    color:#f0f0f0;

    margin:0;

}



/*=========================================================
CLIENT PHILOSOPHY
=========================================================*/

.client-philosophy{

    background:#ffffff;

}

.philosophy-wrapper{

    max-width:980px;

    margin:auto;

    text-align:center;

}

.philosophy-wrapper h2{

    margin-bottom:25px;

}

.philosophy-wrapper p{

    max-width:780px;

    margin:0 auto 50px;

}

.philosophy-icons{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.philosophy-icons div{

    padding:35px 20px;

    background:#fafafa;

    border-radius:16px;

    transition:var(--transition);

}

.philosophy-icons div:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.philosophy-icons i{

    font-size:38px;

    color:var(--gold);

    margin-bottom:18px;

}

.philosophy-icons h4{

    font-size:18px;

    margin:0;

}



/*=========================================================
IMAGE HOVER EFFECTS
=========================================================*/

.office-card img,

.media-right img,

.gellery-grid img{

    transition:transform .6s ease;

}

.office-card:hover img,

.media-right:hover img,

.gellery-grid article:hover img{

    transform:scale(1.08);

}



/*=========================================================
SECTION DIVIDERS
=========================================================*/

.office-showcase::after,

.media-gallery-home::after,

.client-philosophy::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:140px;

    height:2px;

    background:linear-gradient(

        to right,

        transparent,

        var(--gold),

        transparent

    );

}
/*=========================================================
CLIENT COMMITMENT
=========================================================*/

.client-commitment{

    background:#f8f8f8;

}

.commitment-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.commitment-card{

    text-align:center;

    padding:45px 30px;

}

.commitment-card i{

    font-size:46px;

    color:var(--gold);

    margin-bottom:22px;

}

.commitment-card h3{

    margin-bottom:18px;

}

.commitment-card p{

    margin:0;

}



/*=========================================================
FAQ
=========================================================*/

.faq{

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    border:1px solid #e8e8e8;

    border-radius:14px;

    margin-bottom:20px;

    overflow:hidden;

    background:#ffffff;

    transition:var(--transition);

}

.faq-item:hover{

    box-shadow:var(--shadow-sm);

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 30px;

    cursor:pointer;

    font-weight:600;

}

.faq-question i{

    color:var(--gold);

    transition:.35s;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question i{

    transform:rotate(180deg);

}



/*=========================================================
FINAL CTA
=========================================================*/

.final-cta{

    background:

    linear-gradient(

        rgba(10,10,10,.82),

        rgba(10,10,10,.82)

    ),

    url("../images/hero/hero-contact.webp") center/cover;

    color:#ffffff;

    text-align:center;

}

.final-cta h2{

    color:#ffffff;

    margin-bottom:25px;

}

.final-cta p{

    color:#f2f2f2;

    max-width:760px;

    margin:0 auto 40px;

}



/*=========================================================
FOOTER
=========================================================*/

.footer{

    background:#101010;

    color:#dddddd;

    padding:100px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:45px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:22px;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#d5d5d5;

}

.footer ul li a:hover{

    color:var(--gold);

}

.footer-contact li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.footer-contact i{

    color:var(--gold);

    margin-top:4px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1f1f1f;

    color:#ffffff;

}

.footer-social a:hover{

    background:var(--gold);

    color:#111;

}



/*=========================================================
  PREMIUM COPYRIGHT STRIP
=========================================================*/

.copyright{
    width:100%;
    margin:0;
    padding:22px 20px;
    background:
        linear-gradient(
            180deg,
            #160608 0%,
            #090506 100%
        );
    border-top:1px solid rgba(207,164,72,.55);
    text-align:center;
    color:#bdbdbd;
    font-size:13px;
    letter-spacing:.25px;
    box-sizing:border-box;
}

.copyright .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0;
}

.copyright p{
    margin:0;
    padding:0;
    line-height:1.6;
}

.copyright strong{
    color:#d4af55;
    font-weight:600;
}

.copyright span{
    color:#a9a9a9;
}


/* Premium gold separator detail */

.copyright::before{
    content:"";
    display:block;
    width:46px;
    height:2px;
    margin:0 auto 12px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af55,
        transparent
    );
}


/*=========================================================
  COPYRIGHT — MOBILE
=========================================================*/

@media(max-width:576px){

    .copyright{
        padding:20px 15px;
        font-size:12px;
    }

    .copyright p{
        line-height:1.7;
    }

    .copyright::before{
        margin-bottom:10px;
    }

}


/*=========================================================
FLOATING BUTTONS
=========================================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:999;

}

.floating-buttons a{

    width:56px;

    height:56px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    color:#ffffff;

    box-shadow:0 10px 25px rgba(0,0,0,.20);

    transition:var(--transition);

}

.whatsapp-float{
    background:#25D366;
}

.phone-float{
    background:var(--primary);
}

#backToTop{
    background:#111111;
}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.services-grid,
.office-grid,
.commitment-grid{

grid-template-columns:repeat(2,1fr);

}

.achievement-grid{

grid-template-columns:repeat(2,1fr);

}

.gellery-grid{

grid-template-columns:repeat(3,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:992px){
/* Hide Desktop Navigation */

.navbar{

    display:none;

}

/* Hide Consultation Button */

.header-actions{

    display:none;

}

/* Show Mobile Toggle */

.mobile-toggle{

    display:flex;

}

/* Compact Header */

.header-wrapper{

    min-height:72px;

}

/* Smaller Logo */

.logo img{

    width:145px;

}
.hero h1{

font-size:52px;

}

.about-wrapper,
.founder-wrapper,
.media-layout,
.why-wrapper{

grid-template-columns:1fr;

}

.timeline-wrapper::before{

display:none;

}

.timeline-item{

grid-template-columns:1fr;

}

.timeline-year{

text-align:left;

padding-right:0;

margin-bottom:15px;

}

.timeline-year::after{

display:none;

}

.top-bar{

display:none;

}

.nav-menu{

display:none;

}

.mobile-toggle{

display:flex;

}

.btn-consultation{

display:none;

}

}



@media(max-width:768px){

.section-padding{

padding:80px 0;

}

h1{

font-size:42px;

}

h2{

font-size:34px;

}

.hero{

min-height:auto;

}

.hero-content{

padding:120px 0 90px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.hero-badges{

grid-template-columns:1fr;

}

.services-grid,
.office-grid,
.process-grid,
.commitment-grid,
.achievement-grid,
.gellery-grid,
.philosophy-icons,
.trust-bar .container{

grid-template-columns:1fr;

display:grid;

}

.footer-grid{

grid-template-columns:1fr;

}

}



@media(max-width:576px){

.container{

width:94%;

}

.hero h1{

font-size:36px;

}

.section-title{

margin-bottom:50px;

}

.hero-badges div{

width:100%;

}

.floating-buttons{

right:15px;

bottom:15px;

}

}



/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-center{

text-align:center;

}

.mt-20{

margin-top:20px;

}

.mt-40{

margin-top:40px;

}

.mb-20{

margin-bottom:20px;

}

.mb-40{

margin-bottom:40px;

}

.d-none{

display:none;

}

.img-fluid{

width:100%;

height:auto;

display:block;

}

/*====================================================
                FALCON FOOTER
====================================================*/

.footer{
    position:relative;

    background:linear-gradient(
        180deg,
        #090909 0%,
        #140406 40%,
        #090909 100%
    );

    padding:90px 8% 35px;

    color:#f5f5f5;

    overflow:hidden;
}

/* Premium Gold Divider */

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #D4AF37,
        #F6E27A,
        #D4AF37,
        transparent
    );

    box-shadow:
        0 0 8px rgba(212,175,55,.30);

    animation:footerGoldShimmer 10s linear infinite;
}

/* Shimmer */

@keyframes footerGoldShimmer{

0%{

background-position:-400px;
}

100%{

background-position:2000px;
}

}
/*======================================================
  RESPONSIVE LAYOUT
  Project Falcon v1.0
======================================================*/


/*======================================================
  LARGE LAPTOPS (1400px and below)
======================================================*/(max-width:1400px){
@media(max-width:1400px)
    .container{
        width:min(94%,1280px);
    }

}


/*======================================================
  LAPTOPS (1200px and below)
======================================================*/

@media (max-width:1200px){

    .container{
        width:94%;
    }

}


/*======================================================
  TABLETS (992px and below)
======================================================*/

@media (max-width:992px){

    /* Sections */

    section{
        padding:80px 0;
    }

    /* Headings */

    h1{
        font-size:52px;
    }

    h2{
        font-size:40px;
    }

    /* Grids */

    .services-grid,
    .office-grid,
    .commitment-grid,
    .achievement-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/*======================================================
  MOBILE (768px and below)
======================================================*/

@media (max-width:768px){

    /* Container */

    .container{
        width:92%;
    }

    /* Sections */

    section{
        padding:70px 0;
    }

    /* Typography */

    h1{
        font-size:42px;
        line-height:1.2;
    }

    h2{
        font-size:34px;
    }

    h3{
        font-size:24px;
    }

    p{
        font-size:16px;
    }

    /* All grids */

    .services-grid,
    .office-grid,
    .process-grid,
    .commitment-grid,
    .achievement-grid{
        grid-template-columns:1fr;
    }

    /* Cards */

    .service-card,
    .office-card,
    .process-card,
    .commitment-card,
    .achievement-card{
        margin:0;
    }

}


/*======================================================
  SMALL MOBILE (576px and below)
======================================================*/

@media (max-width:576px){

    h1{
        font-size:34px;
    }

    h2{
        font-size:28px;
    }

    h3{
        font-size:22px;
    }

    section{
        padding:60px 0;
   
    }
}/*=========================================================
SERVICES INTRODUCTION
=========================================================*/

.services-introduction{

    background:#fafafa;

}

.intro-highlights{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.highlight-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    border-top:4px solid var(--gold);

}

.highlight-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.highlight-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:25px;

}

.highlight-card h3{

    margin-bottom:18px;

    font-size:26px;

}

.highlight-card p{

    margin:0;

    line-height:1.8;

}

@media(max-width:992px){

.intro-highlights{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.intro-highlights{

grid-template-columns:1fr;
}
}
/*=========================================================
SERVICE SHOWCASE
=========================================================*/
/*==========================================================
06. SERVICE PROMISE
==========================================================*/

.service-promise{

    position:relative;

    overflow:hidden;

}

.service-promise .premium-card{

    min-height:120px;

    display:flex;

    flex-direction:column;

}

.service-promise .body-text{

    flex-grow:1;

}

.service-promise .premium-icon{

    margin-bottom:24px;

}

.service-promise .badge-premium{

    justify-content:center;

}

@media(max-width:992px){

.service-promise .premium-card{

min-height:auto;

}

}
/* ===========================================
   PROJECT FALCON PREMIUM UI 2.0
   SECTION LABELS
=========================================== */


.section-label::before{

content:"";

width:40px;

height:2px;

background:#fff;

display:block;

}

.section-label::after{

content:"";

width:40px;

height:2px;

background:#fff;

display:block;
/*==========================================================
07. INVESTIGATION METHODOLOGY
==========================================================*/

.investigation-methodology{

    position:relative;

    overflow:hidden;

}

.methodology-timeline{

    position:relative;

    margin-top:80px;

}

.timeline-line{

    position:absolute;

    top:48px;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        var(--gold-light),
        var(--gold),
        var(--gold-light)
    );

    z-index:1;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    position:relative;

    z-index:2;

}

.timeline-step{

    text-align:center;

}

.step-circle{

    width:80px;

    height:80px;

    margin:0 auto 40px;

    border-radius:50%;

    background:linear-gradient(
        145deg,
        var(--gold-light),
        var(--gold)
    );

    color:#fff;

    font-size:26px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--gold-shadow);

}

.timeline-step .premium-card{

    min-height:360px;

}

@media(max-width:1200px){

.timeline-grid{

grid-template-columns:repeat(3,1fr);

}

.timeline-line{

display:none;

}

}

@media(max-width:768px){

.timeline-grid{

grid-template-columns:1fr;

}

.step-circle{

margin-bottom:25px;

}

.timeline-step .premium-card{

min-height:auto;

}

}

/*==========================================================
08. INDUSTRIES WE SUPPORT
==========================================================*/

.industries-support{

position:relative;

overflow:hidden;

}

.industries-support .grid-2{

gap:25px;

}

.industries-support .premium-card{

min-height:300px;

}

@media(max-width:992px){

.industries-support .premium-card{

min-height:auto;

}

}
/*---------------------------------------
Section Header
---------------------------------------*/

.who-serve-section .section-header{
    max-width:820px;
    margin:0 auto 80px;
    text-align:center;
}

.who-serve-section .section-label{
    display:inline-block;
    margin-bottom:18px;
}

.who-serve-section .section-header h2{
    margin-bottom:28px;
}

.who-serve-section .section-header p{
    font-size:18px;
    line-height:1.9;
    color:var(--gray);
}

/*---------------------------------------
Grid
---------------------------------------*/

.serve-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*---------------------------------------
Cards
---------------------------------------*/

.serve-card{

    background:#ffffff;

    border-radius:24px;

    padding:42px 36px;

    border:1px solid rgba(199,162,74,.12);

    box-shadow:0 18px 45px rgba(0,0,0,.06);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

}

.serve-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--gold),
        #b8860b
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.serve-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 70px rgba(0,0,0,.12);

}

.serve-card:hover::before{

    transform:scaleX(1);

}

/*---------------------------------------
Icon
---------------------------------------*/

.serve-icon{

    width:82px;

    height:82px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    background:rgba(199,162,74,.12);

    color:var(--gold);

    font-size:30px;

    transition:.35s;

}

.serve-card:hover .serve-icon{

    background:var(--gold);

    color:#ffffff;

    transform:scale(1.08);

}

/*---------------------------------------
Typography
---------------------------------------*/

.serve-card h3{

    font-size:30px;

    margin-bottom:18px;

    color:var(--black);

    line-height:1.25;

}

.serve-card p{

    font-size:17px;

    line-height:1.9;

    color:var(--gray);

    margin:0;

}

/*---------------------------------------
Responsive
---------------------------------------*/

@media(max-width:1200px){

    .serve-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .who-serve-section{

        padding:80px 0;

    }

    .who-serve-section .container{

        padding:0 25px;

    }

    .serve-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .serve-card{

        padding:35px 28px;

    }

    .serve-card h3{

        font-size:26px;

    }

}
/*=====================================================
06. SERVICE PROMISE
PROJECT FALCON PREMIUM
=====================================================*/

.service-promise{

    padding:110px 0;
    background:#faf9f6;

}

.promise-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:70px;

}

.promise-card{

    position:relative;
    background:#ffffff;
    padding:45px 35px;
    border-radius:22px;
    overflow:hidden;

    border:1px solid rgba(199,162,74,.18);

    box-shadow:
    0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

}

.promise-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
    90deg,
    var(--gold),
    #f4d77a);

}

.promise-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.16);

    border-color:var(--gold);

}

.promise-icon{

    width:78px;
    height:78px;

    margin-bottom:28px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
    135deg,
    var(--gold),
    #f6d977);

    color:#ffffff;

    font-size:28px;

    transition:.4s;

}

.promise-card:hover .promise-icon{

    transform:rotate(12deg) scale(1.08);

}

.promise-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--black);

}

.promise-card p{

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}

/*-------------------------
Responsive
-------------------------*/

@media(max-width:1100px){

.promise-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-promise{

padding:80px 0;

}

.promise-grid{

grid-template-columns:1fr;

gap:25px;

}

.promise-card{

padding:35px 28px;

}

}
/*==========================================================
07. INVESTIGATION METHODOLOGY
==========================================================*/

.investigation-methodology{

    position:relative;

    overflow:hidden;

}

.methodology-timeline{

    position:relative;

    margin-top:80px;

}

.timeline-line{

    position:absolute;

    top:48px;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        var(--gold-light),
        var(--gold),
        var(--gold-light)
    );

    z-index:1;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    position:relative;

    z-index:2;

}

.timeline-step{

    text-align:center;

}

.step-circle{

    width:80px;

    height:80px;

    margin:0 auto 40px;

    border-radius:50%;

    background:linear-gradient(
        145deg,
        var(--gold-light),
        var(--gold)
    );

    color:#fff;

    font-size:26px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--gold-shadow);

}

.timeline-step .premium-card{

    min-height:360px;

}

@media(max-width:1200px){

.timeline-grid{

grid-template-columns:repeat(3,1fr);

}

.timeline-line{

display:none;

}

}

@media(max-width:768px){

.timeline-grid{

grid-template-columns:1fr;

}

.step-circle{

margin-bottom:25px;

}

.timeline-step .premium-card{

min-height:auto;

}

}


/*==========================================================
08. INDUSTRIES WE SUPPORT
==========================================================*/

.industries-support{

position:relative;

overflow:hidden;

}

.industries-support .grid-2{

gap:25px;

}

.industries-support .premium-card{

min-height:300px;

}

@media(max-width:992px){

.industries-support .premium-card{

min-height:auto;

}

}
/*==========================================================
09. THE REDSPY INVESTIGATION FRAMEWORK
==========================================================*/

.framework-section{

position:relative;

overflow:hidden;

}

.framework-section .layout-image-left{

gap:70px;

}

.framework-section .grid{

gap:30px;

}

.framework-section .premium-card{

min-height:270px;

display:flex;

flex-direction:column;

justify-content:flex-start;

}

.framework-section .executive-image{

height:100%;

}

.framework-section .executive-image img{

height:100%;

object-fit:cover;

}

@media(max-width:992px){

.framework-section .premium-card{

min-height:auto;

}

.framework-section .layout-image-left{

gap:45px;

}

}
/*==========================================================
10. THE REDSPY ADVANTAGE
==========================================================*/

.redspy-advantage{

position:relative;

overflow:hidden;

}

.redspy-advantage .glass-card{

height:100%;

display:flex;

align-items:center;

}

.redspy-advantage .list-premium li{

padding-bottom:22px;

margin-bottom:22px;

border-bottom:1px solid rgba(200,162,77,.12);

}

.redspy-advantage .list-premium li:last-child{

margin-bottom:0;

padding-bottom:0;

border-bottom:none;

}

.redspy-advantage .executive-image{

height:100%;

}

.redspy-advantage .executive-image img{

height:100%;

object-fit:cover;

}

@media(max-width:992px){

.redspy-advantage .glass-card{

height:auto;

}

}

/*=====================================================
11. WHY CHOOSE REDSPY
PROJECT FALCON PREMIUM
=====================================================*/

.why-redspy{

    padding:120px 0;

    background:#ffffff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* LEFT IMAGE */

.why-image .image-frame{

    background:#ffffff;

    padding:18px;

    border-radius:28px;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

    position:relative;

}

.why-image .image-frame::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid var(--gold);

    border-radius:28px;

    pointer-events:none;

}

.why-image img{

    width:100%;

    display:block;

    border-radius:20px;

}

/* RIGHT PANEL */

.why-panel{

    background:#faf9f6;

    padding:45px;

    border-radius:26px;

    border:1px solid rgba(199,162,74,.18);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.why-panel h3{

    font-size:32px;

    margin-bottom:30px;

}

.why-panel ul{

    list-style:none;

    margin:0 0 40px;

    padding:0;

}

.why-panel li{

    display:flex;

    gap:16px;

    align-items:flex-start;

    margin-bottom:20px;

    font-size:17px;

    line-height:1.8;

}

.why-panel li i{

    color:var(--gold);

    margin-top:6px;

}

/* Responsive */

@media(max-width:992px){

.why-wrapper{

grid-template-columns:1fr;

gap:60px;

}

}

@media(max-width:768px){

.why-redspy{

padding:80px 0;

}

.why-panel{

padding:30px;

}

}
/*=====================================================
12. THE REDSPY COMMITMENT
=====================================================*/

.redspy-commitment{

padding:120px 0;

background:#faf9f6;

}

.commitment-box{

max-width:900px;

margin:70px auto 0;

padding:70px;

background:#ffffff;

border-radius:30px;

text-align:center;

border:2px solid rgba(199,162,74,.20);

box-shadow:
0 35px 90px rgba(0,0,0,.12);

position:relative;

overflow:hidden;

}

.commitment-box::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:6px;

background:linear-gradient(
90deg,
var(--gold),
#f6d977,
var(--gold));

}

.commitment-icon{

width:100px;

height:100px;

margin:auto auto 35px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(
135deg,
var(--gold),
#f6d977);

color:#fff;

font-size:42px;

}

.commitment-box h3{

font-size:34px;

margin-bottom:25px;

}

.commitment-box p{

max-width:720px;

margin:auto;

line-height:2;

font-size:17px;

color:var(--gray);

}

.signature{

margin-top:45px;

}

.signature strong{

display:block;

font-size:28px;

color:var(--gold);

}

.signature span{

display:block;

margin-top:8px;

color:var(--gray);

}

@media(max-width:768px){

.redspy-commitment{

padding:80px 0;

}

.commitment-box{

padding:40px 30px;

}

}

/*=====================================================
13. REDSPY AT A GLANCE
=====================================================*/

.redspy-glance{

padding:120px 0;

background:#ffffff;

}

.glance-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:30px;

margin-top:70px;

}

.glance-card{

background:#faf9f6;

padding:45px 20px;

text-align:center;

border-radius:24px;

border:1px solid rgba(199,162,74,.18);

transition:.4s;

box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.glance-card:hover{

transform:translateY(-10px);

border-color:var(--gold);

box-shadow:0 35px 70px rgba(0,0,0,.16);

}

.glance-card i{

font-size:38px;

color:var(--gold);

margin-bottom:22px;

}

.glance-card h3{

font-size:34px;

margin-bottom:12px;

color:var(--black);

}

.glance-card span{

font-size:16px;

color:var(--gray);

display:block;

}

@media(max-width:1100px){

.glance-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.redspy-glance{

padding:80px 0;

}

.glance-grid{

grid-template-columns:1fr;

}

}
/*==========================================================
SECTION 14 : FAQ
PROJECT FALCON v2
==========================================================*/

.faq-section{

    padding:120px 0;

    background:#faf9f6;

}

.faq-section .container{

    max-width:1100px;

    margin:auto;

    padding:0 30px;

}

/*-----------------------------------
Heading
-----------------------------------*/

.faq-section .section-heading{

    text-align:center;

    margin-bottom:70px;

}

/*-----------------------------------
Wrapper
-----------------------------------*/

.faq-wrapper{

    display:grid;

    gap:22px;

}

/*-----------------------------------
Item
-----------------------------------*/

.faq-item{

    background:#ffffff;

    border-radius:20px;

    border:1px solid rgba(199,162,74,.15);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*-----------------------------------
Question
-----------------------------------*/

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

    color:var(--black);

}

.faq-question i{

    color:var(--gold);

    transition:.35s;

}

/*-----------------------------------
Answer
-----------------------------------*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 35px;

}

.faq-answer p{

    padding-bottom:30px;

    line-height:1.9;

    color:var(--gray);

}

/*-----------------------------------
Active
-----------------------------------*/

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*-----------------------------------
Responsive
-----------------------------------*/

@media(max-width:768px){

.faq-section{

padding:90px 0;

}

.faq-section .container{

padding:0 20px;

}

.faq-question{

font-size:18px;

padding:24px;

}

.faq-answer{

padding:0 24px;

}

}

/* ==================================================
   PROJECT FALCON PREMIUM UI 2.1
   PROFESSIONAL NOTICE
================================================== */

.professional-disclaimer{
    padding:70px 0;
    background:#faf9f6;
}

.disclaimer-box{

    display:flex;
    align-items:flex-start;
    gap:30px;

    background:#ffffff;

    border-left:6px solid #c8a247;

    border-radius:18px;

    padding:35px 40px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;
}

.disclaimer-box:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.disclaimer-box i{

    font-size:42px;

    color:#c8a247;

    margin-top:6px;

}

.disclaimer-box h3{

    font-family:"Cormorant Garamond",serif;

    font-size:34px;

    margin-bottom:15px;

    color:#181818;

}

.disclaimer-box p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.disclaimer-box strong{

    color:#111;

}

@media(max-width:768px){

.disclaimer-box{

flex-direction:column;

padding:30px;

}

.disclaimer-box i{

font-size:34px;

}

.disclaimer-box h3{

font-size:28px;


}

}
.services-feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.feature-card{

overflow:hidden;

position:relative;

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

border:1px solid rgba(201,163,74,.25);

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.feature-card i{

width:80px;
height:80px;

display:flex;
align-items:center;
justify-content:center;

margin:0 auto 25px;

border-radius:50%;

font-size:32px;

color:#ffffff;

background:linear-gradient(
135deg,
#d4af37,
#9b6b1c);

box-shadow:
0 12px 30px rgba(212,175,55,.30);

transition:all .45s ease;

.feature-card:hover i{

transform:
rotate(-8deg)
scale(1.12);

box-shadow:
0 20px 40px rgba(212,175,55,.45);

}
.feature-card::after{

content:"";

position:absolute;

top:-80px;
right:-80px;

width:170px;
height:170px;

border-radius:50%;

background:
radial-gradient(
rgba(212,175,55,.18),
transparent 70%);

transition:.45s;

}

.feature-card:hover::after{

transform:scale(1.25);

}

/* =========================================================
   REDSPY MATRIMONIAL HERO — VISIBILITY & PREMIUM CONTRAST
   ========================================================= */

.matrimonial-hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

/* Main cinematic overlay */
.matrimonial-hero .hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:
        linear-gradient(
            90deg,
            rgba(5,4,4,.78) 0%,
            rgba(8,5,6,.58) 38%,
            rgba(8,5,6,.42) 62%,
            rgba(5,4,4,.66) 100%
        );

    pointer-events:none;
}

/* If an older pseudo-overlay exists, neutralise its excessive darkness */
.matrimonial-hero::before{
    background:transparent !important;
}

/* Keep hero content clearly above the image and overlay */
.matrimonial-hero .container{
    position:relative;
    z-index:3;
}

.matrimonial-hero .hero-content{
    position:relative;
    z-index:5;
}

.matrimonial-hero .hero-tag{
    color:#d8b15c;
    text-shadow:0 2px 8px rgba(0,0,0,.75);
}

.matrimonial-hero .hero-content h1{
    color:#ffffff;
    text-shadow:
        0 3px 16px rgba(0,0,0,.85);
}

.matrimonial-hero .hero-content p{
    color:#f3f1ef;
    text-shadow:
        0 2px 10px rgba(0,0,0,.75);
}
/* Premium category/tag */
.matrimonial-hero .hero-tag{
    display:inline-block;

    padding:10px 20px;
    margin-bottom:24px;

    color:#e0bd67;

    background:rgba(12,8,8,.68);

    border:1px solid rgba(216,177,92,.55);
    border-radius:40px;

    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    line-height:1.5;

    box-shadow:
        0 8px 30px rgba(0,0,0,.25),
        inset 0 0 20px rgba(216,177,92,.04);
}

/* Main hero heading */
.matrimonial-hero .hero-content h1{
    color:#ffffff !important;

    font-family:"Playfair Display", Georgia, serif;

    font-size:clamp(46px, 5vw, 72px);
    font-weight:700;
    line-height:1.08;

    max-width:950px;
    margin:0 auto 24px;

    letter-spacing:-.5px;

    text-shadow:
        0 3px 12px rgba(0,0,0,.95),
        0 8px 30px rgba(0,0,0,.75);
}

/* Gold emphasis line beneath heading */
.matrimonial-hero .hero-content h1::after{
    content:"";
    display:block;

    width:75px;
    height:2px;

    margin:24px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8b15c,
            transparent
        );

    box-shadow:0 0 12px rgba(216,177,92,.35);
}

/* Hero description */
.matrimonial-hero .hero-content p{
    max-width:820px;
    margin:28px auto 0;

    color:#f1eeee !important;

    font-size:18px;
    line-height:1.75;

    text-shadow:
        0 2px 8px rgba(0,0,0,.95);

    background:rgba(0,0,0,.18);
    padding:8px 15px;
}

/* Hero buttons remain visually dominant */
.matrimonial-hero .hero-buttons{
    position:relative;
    z-index:5;

    margin-top:34px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

/* =========================================================
   MOBILE HERO
   ========================================================= */

@media(max-width:768px){

    .matrimonial-hero .hero-content{
        padding:45px 20px;
    }

    .matrimonial-hero .hero-tag{
        font-size:11px;
        letter-spacing:2px;
        padding:8px 14px;
    }

    .matrimonial-hero .hero-content h1{
        font-size:40px;
        line-height:1.12;
    }

    .matrimonial-hero .hero-content p{
        font-size:16px;
        line-height:1.65;
    }

    .matrimonial-hero .hero-buttons{
        flex-direction:column;
    }

    .matrimonial-hero .hero-buttons a{
        width:100%;
        max-width:330px;
    }
}

/* =====================================================
   REDSPY — PREMIUM AREAS OF EXPERTISE
====================================================== */

.expertise {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8f3 100%
        );
}


/* -----------------------------------------------------
   SECTION TITLE
------------------------------------------------------ */

.expertise .section-title {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.expertise .section-title span {

    display: block;

    margin-bottom: 14px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #c69a3b;
}

.expertise .section-title h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.1;

    color: #171010;
}

.expertise .section-title p {

    max-width: 720px;

    margin: 20px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #68615d;
}


/* -----------------------------------------------------
   GRID
------------------------------------------------------ */

.expertise-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    max-width: 1250px;

    margin: 0 auto;
}


/* -----------------------------------------------------
   CARD
------------------------------------------------------ */

.expertise-card {

    position: relative;

    padding: 34px 32px 32px;

    min-height: 270px;

    background:
        linear-gradient(
            145deg,
            #1a080b 0%,
            #26090e 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.38);

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 12px 30px
        rgba(25,8,10,0.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* GOLD TOP LINE */

.expertise-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #c69a3b,
            #e1c06d,
            #8f1728
        );
}


/* NUMBER */

.expertise-number {

    position: absolute;

    top: 22px;
    right: 25px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color:
        rgba(211,170,84,0.55);
}


/* ICON */

.expertise-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    border:
        1px solid
        rgba(198,154,59,0.65);

    background:
        rgba(198,154,59,0.08);

    color: #d3aa54;

    font-size: 20px;
}


/* HEADING */

.expertise-card h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.2;

    color: #ffffff;
}


/* DESCRIPTION */

.expertise-card p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #c8bfbc;
}


/* -----------------------------------------------------
   HOVER
------------------------------------------------------ */

.expertise-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(198,154,59,0.85);

    box-shadow:
        0 20px 45px
        rgba(25,8,10,0.18);
}

.expertise-card:hover
.expertise-icon {

    background: #97192b;

    color: #ffffff;

    border-color: #d3aa54;
}


/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 1000px) {

    .expertise-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 650px) {

    .expertise {

        padding-left: 20px;
        padding-right: 20px;
    }

    .expertise-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .expertise-card {

        min-height: auto;

        padding: 30px 26px;
    }

    .expertise .section-title h2 {

        font-size: 38px;
    }

}



}/*=========================================================
END OF FILE
PROJECT FALCON v1.0
=========================================================*/