    /* ===================================
    RESET
    =================================== */

    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }
    
   /* ===================================
        VARIABLES
    =================================== */

    :root{
    --primary-blue:#0d2c54;
    --primary-gold:#d4a017;
    --light-bg:#f5f5f5;
    --white:#ffffff;
    }

    /* ===================================
    BODY
    =================================== */

    html{
    scroll-behavior:smooth;
    }

    body{
    font-family: Georgia, serif;
    background:var(--light-bg);
    }

    

    /* ===================================
    HEADER
    =================================== */

    header{
        background:var(--white);
        display:flex;
        align-items:center;
        padding:12px 40px;
        box-shadow:0 2px 10px rgba(0,0,0,0.08);
    }

    /* ===================================
    LOGO
    =================================== */

    .logo-section img{
        width:105px;
        height:auto;
        display:block;
    }

    /* ===================================
    COMPANY DETAILS
    =================================== */

    .logo-text{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        min-width:400px;
        margin-left:10px;
    }

    /* COMPANY NAME */

    .company-name{
        font-family:Georgia, serif;
        font-size:22px;
        font-weight:700;
        color:var(--primary-blue);
        letter-spacing:1px;
    }

    .initial{
        font-size:28px;
        font-weight:700;
    }

    /* ===================================
    CONSULTANCY ROW
    =================================== */

    .consultancy-row{
        display:flex;
        align-items:center;
        justify-content:center;
        margin-top:5px;
    }

    .line{
        width:60px;
        height:2px;
        background:var(--primary-gold);
    }

    .star{
         color:var(--primary-gold);
        font-size:10px;
        margin:0 8px;
    }

    .consultancy{
        color:var(--primary-blue);
        font-size:9px;
        font-weight:900;
        letter-spacing:5px;
        margin:0 8px;
    }

    /* ===================================
    TAGLINE ROW
    =================================== */

    .tagline-row{
        display:flex;
        align-items:center;
        justify-content:center;
        margin-top:8px;
    }

    .tag-line{
        width:35px;
        height:2px;
         background:var(--primary-gold);;
    }

    .tagline{
        margin:0 10px;
        color:var(--primary-blue);
        font-size:13px;
        font-family:Georgia, serif;
        font-weight:600;
    }


    /* ===================================
    NAVIGATION
    =================================== */

    nav{
        display:flex;
        align-items:center;
        gap:30px;
        margin-left:60px;
    }

    nav a{
        text-decoration:none;
        color:var(--primary-blue);
        font-size:16px;
        font-weight:600;
        position:relative;
        transition:0.3s;
    }

    nav a:hover{
        color:var(--primary-gold);
    }

    /* ACTIVE PAGE */

    .active{
         color:var(--primary-blue);
    }

    .active::after{
        content:"";
        position:absolute;
        left:0;
        bottom:-10px;
        width:100%;
        height:3px;
        background:var(--primary-gold);
        border-radius:5px;
    }

    /* ===================================
    WHATSAPP BUTTON
    =================================== */

    .whatsapp-btn{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;
    background:var(--primary-gold);
    color:#000;

    padding:14px 28px;
    border-radius:12px;

    font-size:16px;
    font-weight:600;

    transition:0.3s;
}

.whatsapp-btn i{
    font-size:18px;
    color:#000;
}

.whatsapp-btn:hover{
    background:var(--primary-gold);
    transform:translateY(-2px);
}


/* ===================================
MOBILE MENU BUTTON FOR HEADER
=================================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:24px;
    color:var(--primary-blue);
    cursor:pointer;
}

/* ===================================
TABLET
=================================== */

@media (max-width:1200px){

    nav{
        gap:20px;
        margin-left:30px;
    }

    nav a{
        font-size:15px;
    }

    .logo-text{
        min-width:auto;
    }

}

/* ===================================
SMALL MOBILE
=================================== */

@media (max-width:480px){

    .company-name{
        font-size:14px;
    }

    .initial{
        font-size:18px;
    }

    .tagline{
        font-size:10px;
    }

    .logo-section img{
        width:65px;
    }
}

 /* ===================================
   HERO SECTION
=================================== */

.hero{
    background-image:url("../images/hero-office.webp");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    min-height:680px;

    display:flex;
    align-items:flex-start;

    padding:70px 120px 70px;

    position:relative;
}

/* LEFT BLUE OVERLAY */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,31,84,0.55) 0%,
        rgba(0,31,84,0.48) 20%,
        rgba(0,31,84,0.35) 40%,
        rgba(0,31,84,0.18) 65%,
        rgba(0,31,84,0.06) 85%,
        transparent 100%
    );

    z-index:1;
}

/* RIGHT LIGHT OVERLAY */

.hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to left,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.12) 15%,
        rgba(255,255,255,0.05) 30%,
        transparent 50%
    );

    z-index:1;
    pointer-events:none;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    max-width:750px;
}

/* WELCOME TEXT */

.hero-welcome{
    display:flex;
    align-items:center;
    gap:10px;
    
    color:var(--primary-gold);

    font-size:16px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;
}

.hero-welcome::before{
    content:"";

    width:25px;
    height:2px;

    background:var(--primary-gold);

    display:block;
}

.hero-welcome::after{
    display:none;
}

/* MAIN HEADING */

.hero h1{
    font-family:Georgia, serif;

    font-size:44px;
    line-height:1.15;

    color:#ffffff;

    margin-top:18px;
    margin-bottom:15px;
}

/* COMPANY NAME */

.company-heading{
    display:block;
    white-space:nowrap;
}

/* CONSULTANCY TEXT */

.consultancy-heading{
    color:var(--primary-gold);
    display:block;
    font-size:0.85em;
}

.consultancy-heading::after{
    content:"";
    display:block;
    width:50px;
    height:2px;
    background:var(--primary-gold);
    margin-top:8px;
}

/* SERVICES */

.hero-services{
    color:#ffffff;
    font-size:16px;
    font-weight:530;
    line-height:1.8;
    margin-bottom:30px;
    opacity:0.9;
    word-spacing:10px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;    
}

.separator{
    color:var(--primary-gold);
    }



/* DESCRIPTION */

.hero p{
    color:#f2f2f2;

    font-size:19px;
    line-height:1.8;

    max-width:520px;

    margin-bottom:35px;
}

/* ===================================
   HERO BUTTONS
=================================== */

.hero-buttons{
    display:flex;
    gap:22px;
    margin-top:10px;
}

.hero-btn,
.hero-btn-outline{
    width:280px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:12px;

    font-size:18px;
    text-decoration:none;

    transition:all 0.3s ease;
}

.hero-btn{
    background:#d4a017;
    color:#000;
    font-weight:700;
}

.hero-btn:hover{
    background:#e2b12d;
    transform:translateY(-2px);
}

.hero-btn-outline{
    background:transparent;
    border:2px solid #d4a017;
    color:#ffffff;
    font-weight:600;
}

.hero-btn-outline:hover{
    background:#d4a017;
    color:#000;
}

.hero-btn i,
.hero-btn-outline i{
    font-size:18px;
}

/* ==========================
   SERVICE STRIP
========================== */

.service-strip{
    width:88%;
    max-width:1350px;

    margin:-30px auto 50px;

    background:#ffffff;
    border-radius:18px;

    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;

    padding:20px 25px;

    box-shadow:0 12px 35px rgba(0,0,0,0.10);

    position:relative;
    z-index:10;
}

/* ==========================
   SERVICE ITEM
========================== */

.service-item{
    display:flex;
    align-items:center;
    gap:14px;

    color:#0d2c54;
    font-size:16px;
    font-weight:600;

    position:relative;

    transition:all 0.3s ease;
    min-width:260px;
    flex-shrink:0;
    justify-content:center;

}

.service-item:hover{
    transform:translateY(-4px);
}

.service-item:hover span{
    color:#d4af37;
}

/* ==========================
   DIVIDERS
========================== */

.service-item::after{
    display:none;
}

/* ==========================
   ICONS
========================== */

.service-item i{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#f8e7b7,#d4af37);

    color:#0d2c54;

    font-size:22px;

    box-shadow:0 6px 18px rgba(212,175,55,0.20);

    transition:all 0.3s ease;
}

.service-item:hover i{
    transform:translateY(-5px) scale(1.05);

    box-shadow:0 12px 25px rgba(212,175,55,0.35);
}

/* ==========================
   SERVICE TEXT
========================== */

.service-item span{
    font-size:15px;
    font-weight:600;
    letter-spacing:0.3px;
}

/* ==========================
   SERVICE STIP SLIDES
========================== */

.service-strip{
    position:relative;
    overflow:hidden;
}

.service-track{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;
    animation:scrollServices 50s linear infinite;
}

.service-track:hover{
    animation-play-state:paused;
}

@keyframes scrollServices{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Left Fade */
.service-strip::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:80px;
    height:100%;
    background:linear-gradient(to right,#fff,transparent);
    z-index:2;
}

/* Right Fade */
.service-strip::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:80px;
    height:100%;
    background:linear-gradient(to left,#fff,transparent);
    z-index:2;
}


/* ===========================
   SERVICES SECTION
=========================== */

.services-section{
    padding:0px 8% 90px;
    background:#f8f9fc;
}

.section-header{
    text-align:center;
    margin-bottom:65px;
}

.section-tag{
    color:#caa34d;
    font-size:14px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:42px;
    color:#001b4d;
    margin-top:12px;
    line-height:1.2;
}

/* ===========================
   SERVICES GRID
=========================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

/* ===========================
   SERVICE CARD
=========================== */

.service-card{
    background:#ffffff;

    padding:35px 28px;

    border-radius:20px;

    text-align:center;

    border-top:4px solid #d4af37;

    min-height:280px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    transition:all 0.35s ease;
}

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);
}

/* ===========================
   ICON
=========================== */

.icon{
    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #f8e7b7,
        #d4af37
    );

    color:#001b4d;

    font-size:34px;

    box-shadow:
        0 10px 25px rgba(212,175,55,0.25);

    transition:all 0.3s ease;
}

.service-card:hover .icon{
    transform:scale(1.08);
}

/* ===========================
   TITLE
=========================== */

.service-card h3{
    font-size:26px;
    color:#001b4d;

    margin-bottom:14px;

    font-weight:700;

    line-height:1.3;
}

/* ===========================
   DESCRIPTION
=========================== */

.service-card p{
    font-size:14px;
    line-height:1.6;
    max-width:280px;
    margin:auto;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:992px){

    .section-header h2{
        font-size:38px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .service-card{
        min-height:260px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .services-section{
        padding:70px 6%;
    }

    .section-header{
        margin-bottom:45px;
    }

    .section-header h2{
        font-size:32px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        min-height:auto;
        padding:30px 22px;
    }

    .icon{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .service-card h3{
        font-size:22px;
    }
}

/* ==========================
   WHY CHOOSE JRS
========================== */

.why-us-section{
    background:#001f5b;
    color:#fff;
    padding:70px 8%;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.why-us-section::after{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-300px;
    right:-250px;

    background:radial-gradient(
        circle,
        rgba(212,175,55,0.12),
        transparent 70%
    );

    pointer-events:none;
}

.why-us-section::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-250px;
    left:-150px;

    background:radial-gradient(
        circle,
        rgba(212,175,55,0.08),
        transparent 70%
    );

    pointer-events:none;
}

/* Heading */

.why-us-left span{
    display:inline-block;
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.why-us-left h2{
    font-size:52px;
    font-weight:700;
    line-height:1.15;
    color:#fff;
    margin-bottom:20px;
}

/* Gold Divider */

.why-divider{
    width:100px;
    height:3px;
    background:#d4af37;
    margin:0 auto 30px;
}

/* Subtitle */

.why-subtitle{
    max-width:950px;
    margin:0 auto 20px;
    color:rgba(255,255,255,0.78);
    font-size:18px;
    line-height:1.9;
}

/* ==========================
   TRUST STATS
========================== */

.trust-stats{
    display:flex;
    justify-content:center;
    gap:100px;
    margin:0 auto 50px;
}

.stat h3{
    font-size:48px;
    font-weight:700;
    color:#d4af37;
    margin-bottom:8px;
    line-height:1;
}

.stat span{
    color:rgba(255,255,255,0.75);
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}



/* Cards Grid */

.why-us-right{
    display:grid;
    grid-template-columns:repeat(5,minmax(200px,1fr));
    gap:25px;
    max-width:1350px;
    margin:auto;
}

/* ==========================
   PREMIUM CARDS
========================== */

.feature{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:30px 22px;
    min-height:240px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    backdrop-filter:blur(10px);
    position:relative;
    overflow:hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease,
        background .4s ease;
}

/* Gold Accent Line */

.feature::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:3px;
    background:#d4af37;
    transition:width .4s ease;
}

.feature:hover::before{
    width:100%;
}

/* Hover Effect */

.feature:hover{
    transform:translateY(-8px);

    border-color:#d4af37;

    background:rgba(255,255,255,0.08);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        0 0 25px rgba(212,175,55,0.12);
}

.feature:hover::before{
    width:100%;
}

/* ==========================
   ICON
========================== */

.feature-icon{
    width:85px;
    height:85px;

    border:2px solid #d4af37;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    transition:all .4s ease;
}

.feature-icon i{
    color:#d4af37;
    font-size:36px;
    transition:all 0.4s ease;
}

.feature:hover .feature-icon{
    background:rgba(212,175,55,0.08);
}

.feature:hover .feature-icon i{
    transform:scale(1.12);
    color:#e8c866;
}

/* ==========================
   TITLE
========================== */

.feature h4{
    font-size:22px;
    line-height:1.35;
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

.feature:hover h4{
    color:#ffffff;
}

/* ==========================
   DESCRIPTION
========================== */

.feature p{
    font-size:13px;
    line-height:1.8;
    color:rgba(255,255,255,0.70);
    margin:0;
}

/* ==========================
   SUBTLE CARD SEPARATION
========================== */

.feature:nth-child(odd){
    background:rgba(255,255,255,0.045);
}

.feature:nth-child(even){
    background:rgba(255,255,255,0.055);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .why-us-right{
        grid-template-columns:repeat(3,1fr);
    }

    .trust-stats{
        gap:60px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .why-us-section{
        padding:80px 6%;
    }

    .why-us-left h2{
        font-size:40px;
    }

    .why-subtitle{
        font-size:16px;
        margin-bottom:50px;
    }

    .trust-stats{
        gap:35px;
        margin-bottom:50px;
    }

    .stat h3{
        font-size:36px;
    }

    .stat span{
        font-size:11px;
    }

    .why-us-right{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .feature{
        min-height:auto;
        padding:25px 20px;
    }

    .feature-icon{
        width:70px;
        height:70px;
    }

    .feature-icon i{
        font-size:28px;
    }

    .feature h4{
        font-size:20px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .trust-stats{
        flex-direction:column;
        gap:25px;
    }

    .why-us-right{
        grid-template-columns:1fr;
    }

    .why-us-left h2{
        font-size:32px;
    }

    .why-subtitle{
        font-size:15px;
    }
}
  

















































































































































































/* ===================================
MOBILE
=================================== */

@media (max-width:768px){

    header{
        padding:15px 20px;
        flex-wrap:wrap;
        justify-content:space-between;
    }

    .logo-section img{
        width:75px;
    }

    .logo-text{
        min-width:auto;
        margin-left:10px;
        align-items:flex-start;
    }

    .company-name{
        font-size:16px;
    }

    .initial{
        font-size:20px;
    }

    .consultancy{
        font-size:7px;
        letter-spacing:2px;
    }

    .tagline{
        font-size:11px;
    }

    .line{
        width:30px;
    }

    .tag-line{
        width:20px;
    }

    

    /* Hamburger Button */

    .menu-toggle{
        display:block;
    }

    /* Hide Menu */

    .navbar{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:flex-start;

        margin-top:15px;
        padding-top:15px;

        border-top:1px solid #eee;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        padding:10px 0;
        width:100%;
    }

    .whatsapp-btn{
        display:flex;
        margin-top:15px;
        width:100%;
        justify-content:center;
        padding:12px;
    }
}

@media(max-width:768px){
    .active::after{
        display:none;
    }
}