:root {
    --brand-orange: #F7931E;
    --brand-black: #000000;
    --brand-dark: #111111;
    --brand-gray: #222222;
    --text-light: #f8f9fa;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 70px;
}

/* Global Reset & Typography */
body {
    background-color: var(--brand-black);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Utility Classes */
.brand-orange {
    color: var(--brand-orange) !important;
}

.bg-brand-orange {
    background-color: var(--brand-orange) !important;
}

.text-justify {
    text-align: justify;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-brand {
    background: var(--brand-orange);
    color: #fff;
    border: none;
}

.btn-brand:hover {
    background: #fff;
    color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
}

.btn-outline-light:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* Modern Navbar */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--brand-orange) !important;
    /* Gradient Text Effect */
    background: linear-gradient(45deg, #F7931E, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.3);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange) !important;
    text-shadow: 0 0 10px rgba(247, 147, 30, 0.5);
}

/* Underline Animation for Nav Links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    background-color: var(--brand-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Stylish Dropdown */
.dropdown-menu {
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
    animation: fadeInUp 0.3s ease forwards;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(247, 147, 30, 0.1);
    color: var(--brand-orange);
    padding-left: 20px;
    /* Slight slide effect */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Spacing Optimization */
section {
    position: relative;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 2.5rem !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), #000);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Cards & Services */
.service-card,
.pricing-card {
    background: var(--brand-dark);
    border: 1px solid var(--brand-gray);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card:hover i,
.pricing-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--brand-orange);
}

.service-card:hover .service-icon-wrapper i {
    color: #fff !important;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--brand-orange);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-link {
    color: var(--text-muted);
    transition: 0.3s;
    display: inline-block;
    margin: 0 10px;
}

.footer-link:hover {
    color: var(--brand-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #111;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid #333;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        animation: none;
        padding-left: 20px;
    }
}

/* =========================================
   Custom Components from Index & Services
   ========================================= */

/* Chips & Accents */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border: 1px solid rgba(247, 147, 30, 0.3);
    color: #fff;
    border-radius: 999px;
    font-size: .9rem;
    background: #111;
}

.chip i {
    color: var(--brand-orange);
}

/* Logo Cloud */
.logo-cloud {
    filter: grayscale(1) opacity(.6);
    transition: all 0.3s ease;
}

.logo-cloud:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-3px);
}

/* CTA Banner */
.cta-banner {
    background: radial-gradient(1200px 400px at 10% -20%, rgba(247, 147, 30, 0.15) 20%, transparent 60%),
        linear-gradient(90deg, #121212 0%, #0f0f0f 100%);
    border: 1px solid rgba(247, 147, 30, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

/* KPI Cards */
.kpi-card {
    background: var(--brand-dark);
    border: 1px solid #222;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.1);
    border-color: rgba(247, 147, 30, 0.3);
}

.kpi-card:hover::before {
    transform: scaleX(1);
}

.kpi-icon {
    font-size: 2rem;
    color: var(--brand-orange);
    margin-bottom: .5rem;
}

.kpi-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1;
}

.kpi-label {
    color: var(--text-muted);
    margin-top: .25rem;
    font-size: 0.9rem;
}

/* Hero Section Animations */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(247, 147, 30, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
    z-index: 0;
    animation: bgmove 8s linear infinite alternate;
}

@keyframes bgmove {
    0% {
        background-position: 60% 40%, 30% 70%;
    }

    100% {
        background-position: 70% 50%, 40% 80%;
    }
}

.logo-glow {
    filter: drop-shadow(0 0 20px rgba(247, 147, 30, 0.5));
    transition: filter 0.3s;
}

.logo-glow:hover {
    filter: drop-shadow(0 0 40px var(--brand-orange));
}

.hero-title {
    animation: fadeInUp 1s 0.2s both;
}

.hero-tagline {
    animation: fadeInUp 1s 0.5s both;
}

/* Hero Floating Icons */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 1.8rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: float-up-down 4s ease-in-out infinite;
}

.hero-floating-icon:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: scale(1.1);
    z-index: 10;
    cursor: pointer;
}

/* Specific Positions for Icons to create a "Cloud" */
.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    z-index: 5;
    animation: float-up-down 5s ease-in-out infinite reverse;
}

@keyframes float-up-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Ensure center icon keeps its centering transform */
@keyframes float-center {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.icon-5 {
    animation-name: float-center;
}

.hero-cta {
    background: linear-gradient(90deg, var(--brand-orange) 0%, #ffb347 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 40px;
    display: inline-block;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.5);
    color: #fff;
}

/* Divider */
.divider {
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: -1px;
    fill: var(--brand-black);
    /* Assume SVG fill or similar usage if applicable */
}

/* Animations */
.scroll-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(.23, 1.01, .32, 1);
}

.scroll-in.visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   Additional Page-Specific Components
   ========================================= */

padding: 2rem;
border-bottom: 1px solid #222;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-orange);
}

/* --- Icon Box (About/Contact Pages) --- */
.icon-box {
    background: #111;
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 16px rgba(247, 147, 30, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.icon-box:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.icon-box:hover i {
    transform: scale(1.2) rotate(-8deg);
}

/* --- Team Cards (About Page) --- */
.team-card {
    background: #111;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    box-shadow: 0 2px 16px rgba(247, 147, 30, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.team-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #222;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(247, 147, 30, 0.2);
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}

.team-card:hover .team-img {
    box-shadow: 0 4px 24px rgba(247, 147, 30, 0.5);
}

/* --- Portfolio & Lightbox --- */
.portfolio-card {
    background: #111;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 16px rgba(247, 147, 30, 0.1);
}

.portfolio-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
    z-index: 2;
}

.portfolio-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 1.2rem;
    /* Consistent radius */
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-card:hover .portfolio-img,
.portfolio-img:hover {
    /* Updated selector to cover both usage patterns */
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    transition: opacity 0.3s;
    font-size: 1.1rem;
    text-align: center;
    padding: 1.5rem;
}

.portfolio-card:hover .portfolio-overlay,
.portfolio-img:hover .portfolio-overlay {
    opacity: 1;
}

/* Process Section Steps */
.process-card {
    background: var(--brand-dark);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.process-card:hover .brand-orange {
    transform: scale(1.2);
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(247, 147, 30, 0.4));
}

.process-card .brand-orange {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--brand-orange);
}

/* --- Contact Page --- */
.contact-form-card {
    /* Assuming this class might be used or adding for future */
    background: #111;
    border: 1px solid #222;
    border-radius: 1rem;
    padding: 2rem;
}

.form-control {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0.8rem;
    padding: 0.8rem 1.2rem;
}

.form-control:focus {
    background: #222;
    color: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(247, 147, 30, 0.25);
}

/* --- Whatsapp Float --- */
.whatsapp-float {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    font-size: 2.2rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

/* --- Footer Newsletter Input --- */
.newsletter-input {
    background: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    transition: border 0.2s;
}

.newsletter-input:focus {
    border: 1.5px solid var(--brand-orange);
    outline: none;
}. f e a t u r e - h o v e r   {  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         c u r s o r :   p o i n t e r ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         / *   S l i g h t   g l a s s   e f f e c t   * /  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
 }  
  
 . f e a t u r e - h o v e r : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;  
         b o r d e r - c o l o r :   v a r ( - - b r a n d - o r a n g e ) ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 2 4 7 ,   1 4 7 ,   3 0 ,   0 . 2 ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ;  
 }  
  
 . f e a t u r e - h o v e r   . b i   {  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;  
 }  
  
 . f e a t u r e - h o v e r : h o v e r   . b i   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
         c o l o r :   v a r ( - - b r a n d - o r a n g e ) ;  
         / *   E n s u r e   i c o n   s t a y s   o r a n g e   o r   g l o w s   * /  
         f i l t e r :   d r o p - s h a d o w ( 0   0   5 p x   r g b a ( 2 4 7 ,   1 4 7 ,   3 0 ,   0 . 5 ) ) ;  
 }  
 