/* Portfolio Carousel Styles */
#portfolioSlider {
    width: 100%;
}

#portfolioSlider .carousel-item {
    padding: 0;
}

#portfolioSlider .card {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#portfolioSlider .card-img-top {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#portfolioSlider .carousel-control-prev,
#portfolioSlider .carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.3);
}

#portfolioSlider .carousel-control-prev:hover,
#portfolioSlider .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

#portfolioSlider .card {
    margin: 0 auto;
    max-width: 600px;
}

#portfolioSlider .carousel-indicators {
    bottom: -50px;
}

#portfolioSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6c757d;
    margin: 0 5px;
}

#portfolioSlider .carousel-indicators button.active {
    background-color: #007bff;
}


.portfolio-card {
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #2b3035;
    color: #fff;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.badge {
    font-size: 0.8rem;
    padding: 0.5em 1em;
}


/* Portfolio Carousel Styles */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

/* Portfolio Styles */
.portfolio-item {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    height: 250px;
    object-fit: cover;
}

.portfolio-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
    padding: 80px 0;
}

/* Custom styles */
:root {
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --accent-color: #ff007a;
    --bg-dark: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    padding-top: 70px;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.navbar {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 122, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
}

#services .card,
.portfolio-card,
.card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
}

/* Quote Calculator Styles */
.quote-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    border-radius: 24px;
}

.service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
    cursor: pointer;
}

.service-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.service-toggle.active {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.price-display {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    background-color: var(--bs-dark);
    color: var(--bs-light);
    padding: 40px 0;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in.active {
    opacity: 1;
}

.slide-in {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.slide-in.active {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 40px 0;
    }
}

/* Process & Use Case Card Styles */
.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: default;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.process-card .bg-primary {
    transition: all 0.3s ease;
}

.process-card:hover .bg-primary {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

#use-cases .card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
}

#use-cases .card:hover {
    border-color: var(--secondary-color);
}

/* Logo Scrolling Styles */
.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-scroll {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

.logo-item {
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.logo-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Image Zoom Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Ensure Logo Item is Clickable */
.logo-item {
    cursor: pointer;
}/ *   . . .   e x i s t i n g   s t y l e s   . . .   * /  
  
 / *   - - -   A d m i n   D a s h b o a r d   S t y l e s   - - -   * /  
 . d a s h b o a r d - s t a t s - r o w   {  
         m a r g i n - b o t t o m :   2 r e m ;  
 }  
  
 . s t a t - c a r d   {  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         p a d d i n g :   1 . 5 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         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 ,   b o x - s h a d o w   0 . 3 s   e a s e ;  
 }  
  
 . s t a t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 . s t a t - i c o n   {  
         w i d t h :   5 0 p x ;  
         h e i g h t :   5 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         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 ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   1 . 5 r e m ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 . s t a t - c o n t e n t   h 3   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   2 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 . s t a t - c o n t e n t   p   {  
         m a r g i n :   0 ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
 }  
  
 . d a s h b o a r d - t a b l e - c a r d   {  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         o v e r f l o w :   h i d d e n ;  
         p a d d i n g :   1 r e m ;  
 }  
  
 . t a b l e - c u s t o m   {  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
         m a r g i n - b o t t o m :   0 ;  
 }  
  
 . t a b l e - c u s t o m   t h e a d   t h   {  
         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 2 ) ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         l e t t e r - s p a c i n g :   1 p x ;  
         p a d d i n g :   1 r e m ;  
 }  
  
 . t a b l e - c u s t o m   t b o d y   t d   {  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   1 r e m ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
 }  
  
 . t a b l e - c u s t o m   t b o d y   t r : h o v 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 2 ) ;  
 }  
  
 . s t a t u s - b a d g e   {  
         p a d d i n g :   0 . 4 r e m   0 . 8 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
 }  
  
 . s t a t u s - d r a f t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   1 9 3 ,   7 ,   0 . 1 5 ) ;  
         c o l o r :   # f f c 1 0 7 ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   1 9 3 ,   7 ,   0 . 3 ) ;  
 }  
  
 . s t a t u s - s u b m i t t e d   {  
         b a c k g r o u n d :   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 1 5 ) ;  
         c o l o r :   # 2 8 a 7 4 5 ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 3 ) ;  
 }  
  
 . s t a t u s - a p p r o v e d   {  
         b a c k g r o u n d :   r g b a ( 2 3 ,   1 6 2 ,   1 8 4 ,   0 . 1 5 ) ;  
         c o l o r :   # 1 7 a 2 b 8 ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 3 ,   1 6 2 ,   1 8 4 ,   0 . 3 ) ;  
 }  
  
  
 / *   - - -   C l i e n t   P r o p o s a l   V i e w   S t y l e s   - - -   * /  
 . p r o p o s a l - c o n t a i n e r   {  
         m a x - w i d t h :   1 0 0 0 p x ;  
         m a r g i n :   3 r e m   a u t o ;  
 }  
  
 . p r o p o s a l - h e a d e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - b o t t o m :   3 r e m ;  
         p a d d i n g - b o t t o m :   2 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
 }  
  
 . p r o p o s a l - t i t l e   {  
         f o n t - s i z e :   2 . 5 r e m ;  
         f o n t - w e i g h t :   8 0 0 ;  
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - a c c e n t ) ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . p r o p o s a l - m e t a   {  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - s i z e :   1 . 1 r e m ;  
 }  
  
 . f e a t u r e - c a t e g o r y - c a r d   {  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         p a d d i n g :   0 ;  
         / *   L e t   h e a d e r / b o d y   h a n d l e   p a d d i n g   * /  
         m a r g i n - b o t t o m :   2 r e m ;  
         o v e r f l o w :   h i d d e n ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . f e a t u r e - c a t e g o r y - h e a d 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 3 ) ;  
         p a d d i n g :   1 . 5 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
 }  
  
 . f e a t u r e - c a t e g o r y - h e a d e r   h 3   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 . f e a t u r e - l i s t   {  
         l i s t - s t y l e :   n o n e ;  
         p a d d i n g :   0 ;  
         m a r g i n :   0 ;  
 }  
  
 . f e a t u r e - i t e m   {  
         p a d d i n g :   1 . 2 5 r e m   1 . 5 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         t r a n s i t i o n :   b a c k g r o u n d   0 . 2 s   e a s e ;  
 }  
  
 . f e a t u r e - i t e m : l a s t - c h i l d   {  
         b o r d e r - b o t t o m :   n o n e ;  
 }  
  
 . f e a t u r e - i t e m : h o v 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 2 ) ;  
 }  
  
 . f e a t u r e - i n f o   h 5   {  
         m a r g i n :   0   0   0 . 2 5 r e m   0 ;  
         f o n t - s i z e :   1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . f e a t u r e - i n f o   p   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
 }  
  
 . f e a t u r e - c o s t   {  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
         f o n t - s i z e :   1 . 1 r e m ;  
 }  
  
 . c l i e n t - r e q u e s t - b a d g e   {  
         b a c k g r o u n d :   r g b a ( 0 ,   2 1 0 ,   2 5 5 ,   0 . 1 5 ) ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         f o n t - s i z e :   0 . 7 r e m ;  
         p a d d i n g :   0 . 2 r e m   0 . 6 r e m ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - r i g h t :   0 . 5 r e m ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
 }  
  
 . a d d - r e q u e s t - a r e a   {  
         p a d d i n g :   1 . 5 r e m ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
 }  
  
 . p r o p o s a l - a c t i o n s   {  
         p o s i t i o n :   s t i c k y ;  
         b o t t o m :   2 0 p x ;  
         b a c k g r o u n d :   r g b a ( 1 5 ,   2 3 ,   4 2 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         p a d d i n g :   1 . 5 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         m a r g i n - t o p :   3 r e m ;  
         a n i m a t i o n :   s l i d e U p   0 . 5 s   e a s e - o u t ;  
 }  
  
 @ k e y f r a m e s   s l i d e U p   {  
         f r o m   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 5 0 p x ) ;  
                 o p a c i t y :   0 ;  
         }  
  
         t o   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
                 o p a c i t y :   1 ;  
         }  
 }  
 