:root {
    --bg-color: #0d0d0d;
    --text-color: #f0f0f0;
    --primary-color: #FF7B00;
    /* Safety Orange */
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --gray-color: #888888;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* LOGO STYLE UPDATE */
.nav-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    background-color: white;
    /* Ensure visibility if transparent/black text */
    border-radius: 50%;
    /* Make it circular */
    padding: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition-bounce);
}

.nav-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    border: 1px solid var(--text-color);
    padding: 0.8em 1.5em;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    /* Initial state for JS to pick up */
    will-change: transform;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-color) 0%, transparent 60%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-color);
    display: block;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn-large {
    color: var(--bg-color);
    background-color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-large:hover {
    padding-right: 4rem;
    background-color: #e06b00;
}

/* Reveal Animations */
.reveal-text,
.card,
.stat-item,
.image-block {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.reveal-text.active,
.card.active,
.stat-item.active,
.image-block.active {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(2) {
    transition-delay: 0.1s;
}

.card:nth-child(3) {
    transition-delay: 0.2s;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Marquee */
.marquee-container {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 1rem 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.1);
    margin: -2rem 0 5rem 0;
    border-top: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* Services */
.services {
    padding: 5rem 5%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    color: var(--text-color);
}

.outline-text {
    -webkit-text-stroke: 1px var(--text-color);
    color: transparent;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--gray-color);
}

/* About Section & Image Integration */
.about {
    padding: 10rem 5%;
    background-color: var(--secondary-color);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.image-block {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 123, 0, 0.1);
    /* Orange tint */
    pointer-events: none;
    transition: var(--transition-smooth);
}

.image-block:hover::after {
    opacity: 0;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2);
    transition: var(--transition-smooth);
}

.image-block:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Footer */
footer {
    padding: 5rem 5%;
    border-top: 1px solid #333;
    text-align: center;
}

.email-link {
    font-size: clamp(2rem, 5vw, 6rem);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.email-link:hover {
    color: var(--primary-color);
}

.socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hover-active {
    transform: scale(3);
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .text-block h2 {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }
}/ *   M o b i l e   N a v i g a t i o n   &   R e s p o n s i v e   I m p r o v e m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   {  
  
         / *   M o b i l e   M e n u   T o g g l e   B u t t o n   * /  
         . m e n u - t o g g l e   {  
                 d i s p l a y :   f l e x ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   6 p x ;  
                 c u r s o r :   p o i n t e r ;  
                 z - i n d e x :   1 0 0 1 ;  
                 / *   A b o v e   n a v   m e n u   * /  
                 w i d t h :   3 0 p x ;  
                 h e i g h t :   2 5 p x ;  
         }  
  
         . m e n u - t o g g l e   s p a n   {  
                 d i s p l a y :   b l o c k ;  
                 w i d t h :   1 0 0 % ;  
                 h e i g h t :   2 p x ;  
                 b a c k g r o u n d - c o l o r :   v a r ( - - t e x t - c o l o r ) ;  
                 t r a n s i t i o n :   v a r ( - - t r a n s i t i o n - s m o o t h ) ;  
         }  
  
         / *   T o g g l e   A n i m a t i o n   * /  
         . m e n u - t o g g l e . a c t i v e   s p a n : n t h - c h i l d ( 1 )   {  
                 t r a n s f o r m :   r o t a t e ( 4 5 d e g )   t r a n s l a t e ( 5 p x ,   6 p x ) ;  
         }  
  
         . m e n u - t o g g l e . a c t i v e   s p a n : n t h - c h i l d ( 2 )   {  
                 o p a c i t y :   0 ;  
         }  
  
         . m e n u - t o g g l e . a c t i v e   s p a n : n t h - c h i l d ( 3 )   {  
                 t r a n s f o r m :   r o t a t e ( - 4 5 d e g )   t r a n s l a t e ( 5 p x ,   - 6 p x ) ;  
         }  
  
         / *   M o b i l e   N a v   M e n u   * /  
         . n a v - l i n k s   {  
                 d i s p l a y :   f l e x ;  
                 / *   O v e r r i d e   p r e v i o u s   d i s p l a y : n o n e   i f   s e t   v i a   j s   * /  
                 p o s i t i o n :   f i x e d ;  
                 t o p :   0 ;  
                 r i g h t :   - 1 0 0 % ;  
                 w i d t h :   8 0 % ;  
                 h e i g h t :   1 0 0 v h ;  
                 b a c k g r o u n d - c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 j u s t i f y - c o n t e n t :   c e n t e r ;  
                 a l i g n - i t e m s :   c e n t e r ;  
                 g a p :   2 r e m ;  
                 t r a n s i t i o n :   v a r ( - - t r a n s i t i o n - s m o o t h ) ;  
                 b o r d e r - l e f t :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
                 b o x - s h a d o w :   - 1 0 p x   0   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         }  
  
         . n a v - l i n k s . a c t i v e   {  
                 r i g h t :   0 ;  
         }  
  
         . n a v - l i n k s   a   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
  
         / *   L a y o u t   A d j u s t m e n t s   * /  
         . s p l i t - l a y o u t   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   3 r e m ;  
         }  
  
         . t e x t - b l o c k   h 2   {  
                 f o n t - s i z e :   3 r e m ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . t e x t - b l o c k   p   {  
                 t e x t - a l i g n :   c e n t e r ;  
                 p a d d i n g :   0   1 r e m ;  
         }  
  
         . s t a t s   {  
                 j u s t i f y - c o n t e n t :   c e n t e r ;  
                 g a p :   2 r e m ;  
         }  
  
         . s t a t - i t e m   . n u m b e r   {  
                 f o n t - s i z e :   3 r e m ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . s t a t - i t e m   . l a b e l   {  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . h e r o - c o n t e n t   {  
                 p a d d i n g :   0 ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . h e r o - c o n t e n t   h 1   {  
                 f o n t - s i z e :   1 3 v w ;  
                 / *   R e s p o n s i v e   f o n t   s i z e   * /  
         }  
  
         / *   D i s a b l e   C u s t o m   C u r s o r   o n   T o u c h   D e v i c e s   * /  
         . c u r s o r - d o t ,  
         . c u r s o r - o u t l i n e   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         *   {  
                 c u r s o r :   a u t o   ! i m p o r t a n t ;  
         }  
 }  
 / *   L O G O   R E P L A C E M E N T   S T Y L E   * /  
 . n a v - l o g o   {  
         h e i g h t :   1 2 0 p x   ! i m p o r t a n t ;  
         w i d t h :   a u t o   ! i m p o r t a n t ;  
         m a x - w i d t h :   2 5 0 p x ;  
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ;  
         b o r d e r :   n o n e   ! i m p o r t a n t ;  
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ;  
         p a d d i n g :   0   ! i m p o r t a n t ;  
         o b j e c t - f i t :   c o n t a i n ;  
         m a r g i n - t o p :   1 5 p x ;  
 }  
  
 . n a v - l o g o : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 )   ! i m p o r t a n t ;  
 }  
 