
/*  Light Theme */
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #092247;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #1a1a1a;
    --dark: #ffffff;
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

html {
    scroll-behavior: smooth;
    background: var(--light);
    -ms-overflow-style: none;       
    scrollbar-width: none;          
}

body {
    margin: 0;
    height: 100vh;
    background: var(--light);
    color: var(--dark);
    -ms-overflow-style: none;       
    scrollbar-width: none;          
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Spinner */
#spinner {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999;
     will-change: opacity; 
}

#spinner:not(.show) {
    opacity: 0;
    transition: opacity 0.2s ease; 
    pointer-events: none; 
}

.spinner-content {
    text-align: center;
}

/* Text  */
.servlogic {
    font-size: 2rem;
    color: #092247;
    font-family: Arial, sans-serif;
    font-weight: 600;
}
.technologies {
    font-size: 1.5rem;
    color: #06A3DA;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

@media (max-width: 480px) {
    .spinner-content h2 {
        font-size: 1.6rem;
    }
    .technologies {
        font-size: 1.2rem;
    }
}

/* Wave Animation */
.wave-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    
}

.wave-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    border-radius: 2px;
    transform-origin: center;
    opacity: 0.5;
}

[data-theme="dark"] .wave-line {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.wave-line:nth-child(1) {
    left: 15px;
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
    animation: waveMotion1 3s ease-in-out infinite;
}

[data-theme="dark"] .wave-line:nth-child(1) {
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 50%, #2563eb 100%);
}

.wave-line:nth-child(2) {
    left: 30px;
    background: linear-gradient(180deg, #166534 0%, #22c55e 50%, #15803d 100%);
    animation: waveMotion2 3s ease-in-out infinite -0.75s;
}

[data-theme="dark"] .wave-line:nth-child(2) {
    background: linear-gradient(180deg, #22c55e 0%, #4ade80 50%, #16a34a 100%);
}

.wave-line:nth-child(3) {
    left: 45px;
    background: linear-gradient(180deg, #dc2626 0%, #ef4444 50%, #b91c1c 100%);
    animation: waveMotion3 3s ease-in-out infinite -1.5s;
}

[data-theme="dark"] .wave-line:nth-child(3) {
    background: linear-gradient(180deg, #ef4444 0%, #f87171 50%, #dc2626 100%);
}

.wave-line:nth-child(4) {
    left: 60px;
    background: linear-gradient(180deg, #be185d 0%, #ec4899 50%, #9d174d 100%);
    animation: waveMotion4 3s ease-in-out infinite -2.25s;
}

[data-theme="dark"] .wave-line:nth-child(4) {
    background: linear-gradient(180deg, #ec4899 0%, #f472b6 50%, #be185d 100%);
}

@keyframes waveMotion1 {
    0% { transform: translateX(0) rotate(0deg); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
    25% { transform: translateX(20px) rotate(2deg); border-radius: 60% 40% 60% 40% / 70% 30% 70% 30%; }
    50% { transform: translateX(-15px) rotate(-1deg); border-radius: 40% 60% 40% 60% / 50% 70% 50% 70%; }
    75% { transform: translateX(25px) rotate(3deg); border-radius: 70% 30% 70% 30% / 60% 40% 60% 40%; }
    100% { transform: translateX(0) rotate(0deg); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
}

@keyframes waveMotion2 {
    0% { transform: translateX(0) rotate(0deg); border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%; }
    25% { transform: translateX(-18px) rotate(-2deg); border-radius: 30% 70% 30% 70% / 40% 60% 40% 60%; }
    50% { transform: translateX(22px) rotate(2deg); border-radius: 60% 40% 60% 40% / 70% 30% 70% 30%; }
    75% { transform: translateX(-12px) rotate(-1deg); border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; }
    100% { transform: translateX(0) rotate(0deg); border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%; }
}

@keyframes waveMotion3 {
    0% { transform: translateX(0) rotate(0deg); border-radius: 60% 40% 60% 40% / 30% 70% 30% 70%; }
    25% { transform: translateX(16px) rotate(1deg); border-radius: 70% 30% 70% 30% / 50% 50% 50% 50%; }
    50% { transform: translateX(-20px) rotate(-3deg); border-radius: 30% 70% 30% 70% / 60% 40% 60% 40%; }
    75% { transform: translateX(18px) rotate(2deg); border-radius: 50% 50% 50% 50% / 70% 30% 70% 30%; }
    100% { transform: translateX(0) rotate(0deg); border-radius: 60% 40% 60% 40% / 30% 70% 30% 70%; }
}

@keyframes waveMotion4 {
    0% { transform: translateX(0) rotate(0deg); border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%; }
    25% { transform: translateX(-14px) rotate(-1deg); border-radius: 40% 60% 40% 60% / 30% 70% 30% 70%; }
    50% { transform: translateX(19px) rotate(2deg); border-radius: 70% 30% 70% 30% / 60% 40% 60% 40%; }
    75% { transform: translateX(-16px) rotate(-2deg); border-radius: 30% 70% 30% 70% / 50% 50% 50% 50%; }
    100% { transform: translateX(0) rotate(0deg); border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%; }
}
@media (max-width: 768px) {
  .wave-container {
    display: none;
  }
}

.hero {
    min-height: 100vh;
    position: relative;
    animation: gradientShift 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F7FA 0%, #E4E8F0 100%);
    padding: 2rem 0;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(6, 163, 218, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

[data-theme="dark"] .hero-content {
    color: var(--text-primary);
}
.logo-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.logo-img { display: none; width: 70%; height: auto;
}

/* default light */
.logo-light { display: block; }

/* dark theme */
:root[data-theme="dark"] .logo-light { display: none; }
:root[data-theme="dark"] .logo-dark  { display: block; }


.tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #003366;
    margin-top: 1rem;
}

[data-theme="dark"] .tagline {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .logo-title { font-size: 5rem; }
    .logo-subtitle { font-size: 2.8rem; }
    .tagline { font-size: 2.9rem; }
    .hero-content { text-align: left; }
}

@media (min-width: 992px) {
    .tagline { font-size: 3.1rem; }
}

@media (max-width: 575.98px) {
    .logo-title { font-size: 2.5rem; }
    .logo-subtitle { font-size: 1.5rem; }
    .tagline { font-size: 1.5rem; }
}

h1, h2, .fw-bold {
    font-weight: 800;
    color: var(--dark);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] .fw-bold {
    color: var(--text-primary);
}

h3, h4, .fw-semi-bold {
    font-weight: 700 !important;
    color: var(--dark);
}

[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] .fw-semi-bold {
    color: var(--text-primary);
}

h5, h6, .fw-medium {
    font-weight: 600 !important;
    color: var(--dark);
}

[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .fw-medium {
    color: var(--text-primary);
}

.btn {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover { box-shadow: inset 0 0 0 0 var(--primary); }
.btn-secondary:hover { box-shadow: inset 0 0 0 0 var(--secondary); }

.btn-square { width: 36px; height: 36px; }
.btn-sm-square { width: 30px; height: 30px; }
.btn-lg-square { width: 48px; height: 48px; }

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #F5F7FA 0%, #E4E8F0 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-theme="dark"] .navbar {
    background: var(--bg-primary) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Navbar Logo */
.navbar-brand img {
    height: 55px;
    transition: filter 0.3s ease, height 0.3s ease;
}

[data-theme="dark"] .navbar-brand img {
    filter: brightness(1.6);
}

.navbar-toggler-container {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

/* Navbar Toggler and Cancel Button */
.navbar-toggler, .cancel-btn {
    border: none;
    padding: 0.5rem;
    color: var(--primary);
    font-size: 1.25rem;
    background: transparent;
}

.navbar-toggler:focus, .cancel-btn:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .fa, .cancel-btn .fa {
    color: var(--primary);
}

/* Navbar Links */
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0 !important;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none !important;
    transition: color 0.3s ease;
    overflow: hidden;
}

[data-theme="dark"] .navbar-dark .navbar-nav .nav-link {
    color: var(--text-primary);
}

/* Underline  */
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease, bottom 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Sticky and Scrolled Navbar */
.sticky-top.navbar-dark {
    background: #ffffff;
}

[data-theme="dark"] .sticky-top.navbar-dark {
    background: rgba(15, 15, 15, 0.98) !important;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0 !important;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

[data-theme="dark"] .sticky-top.navbar-dark .navbar-nav .nav-link {
    color: var(--text-primary);
}

.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.sticky-top.navbar-dark .navbar-nav .nav-link::after {
    bottom: 15px;
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.sticky-top .navbar-dark.navbar-brand img {
    height: 50px !important;
}

/* Theme Toggler */
.theme-toggle-container {
    position: relative;
    z-index: 1001;
}

.theme-toggle {
    color: var(--primary);
    font-size: 1.25rem;
}

[data-theme="dark"] .theme-toggle {
    color: var(--text-primary);
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 10px !important;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, #F5F7FA 0%, #E4E8F0 100%);
        border-radius: 0 0 10px 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0px 0 !important;
       margin-top: 0;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 1000;
    }

    [data-theme="dark"] .navbar-collapse {
        background: var(--bg-secondary);
    }

    .navbar-nav {
        width: 100%;
        padding: 0.5rem 0;
         display: flex;
        flex-direction: column;
        align-items: center; 
        justify-content: center; 
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.55rem 1rem !important;
        margin: 0.07rem 0;
        font-size: 1.15rem !important;
    }


    .navbar-dark .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-brand img {
        height: 40px;
    }

    .theme-toggle-container {
        position: static;
        margin-left: 1rem;
    }

    .navbar.scrolled .navbar-brand img {
        height: 30px;
    }
    .sticky-top.navbar-dark .navbar-nav .nav-link {
     padding: 0.55rem 1rem !important;
        margin: 0.07rem 0;
    color: var(--dark);
}
}

/* Small Screens */
@media (max-width: 575.98px) {
    .navbar {
        padding: 10px 15px !important;
    }

    .navbar-collapse {
        padding: 0.25rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem;
    }
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    color: inherit;  
    font-size: 1.25rem;
    padding: 0.5rem;
    margin-right: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle i {
    color: var(--dark);
    font-size: 15px;
}
@media (max-width: 991.98px) {
   
    .theme-toggle {
        margin-left: 1rem;
    }
}
/* sections */
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

[data-theme="dark"] .section-title::after {
    background: var(--bg-primary);
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% { left: 0; }
    50% { left: 145px; }
    100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; }
    50% { left: 50%; margin-left: 45px; }
    100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% { left: 0; }
    50% { left: 85px; }
    100% { left: 0; }
}

@keyframes section-title-run {
    0% { left: 0; }
    50% { left: 145px; }
    100% { left: 0; }
}

@keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; }
    50% { left: 50%; margin-left: 45px; }
    100% { left: 50%; margin-left: -75px; }
}

@keyframes section-title-run-sm {
    0% { left: 0; }
    50% { left: 85px; }
    100% { left: 0; }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 84, 143, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
    border-left: 4px solid var(--secondary-color);
    z-index: 2;
}

[data-theme="dark"] .feature-item {
    background: var(--bg-secondary);
    box-shadow: 0 8px 32px var(--shadow-dark);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 84, 143, 0.15);
    border-left-color: green;
}

[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-left-color: var(--secondary);
    background: var(--bg-tertiary);
}

.feature-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--dark);
    background: rgba(0, 174, 239, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 174, 239, 0.2);
}

[data-theme="dark"] .feature-icon i {
    color: var(--text-primary);
    background: rgba(6, 163, 218, 0.2);
    border: 1px solid rgba(6, 163, 218, 0.4);
}

.choose {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
    overflow: hidden;
}

[data-theme="dark"] .choose {
    color: var(--text-primary);
}

.choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

[data-theme="dark"] .choose::before {
    background: rgba(0, 0, 0, 0.7);
}

.choose > * {
    position: relative;
    z-index: 1;
}

.projects {
    padding: 60px 0;
    background: var(--light);

}

[data-theme="dark"] .projects {
    background: var(--bg-primary);
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 999;

}

.project-card {
    background: linear-gradient(to top, #F5F9FF, #E1F0FF, #C9E4FF);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

[data-theme="dark"] .project-card {
    background: linear-gradient(to top, #1a1a1a, #2a2a2a, #333333);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.project-card:hover::before { left: 100%; }

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .project-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.6s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .project-img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    filter: brightness(0.9);
}

.project-card:hover .project-img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .project-card:hover .project-img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    filter: brightness(1);
}

.project-content {
    padding-left: 30px;

}

.project-content h3 {
    color: #091E3E;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

[data-theme="dark"] .project-content h3 {
    color: var(--text-primary);
}

.project-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.6s ease;
}

.project-card:hover .project-content h3::after { width: 100%; }

.project-description {
    color: black;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

[data-theme="dark"] .project-description {
    color: var(--text-secondary);
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.project-stats span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: black;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .project-stats span {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.project-stats span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

[data-theme="dark"] .project-stats span:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project-stats i {
    font-size: 1.1rem;
    color: #4ecdc4;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

[data-theme="dark"] .btn-outline-primary {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .btn-outline-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-outline-primary:hover::before { left: 0; }

.project-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

[data-theme="dark"] .project-number {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .section-title h2 { font-size: 2.5rem; }
    .project-card { padding: 25px; margin-bottom: 40px; }
    .project-content { padding-left: 0; margin-top: 30px; }
    .project-content h3 { font-size: 1.5rem; }
    .project-stats { flex-direction: column; }
    .project-stats span { justify-content: center; }
}

.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
    background: linear-gradient(to right, #87CEEB, #E0F7FA);
    border-radius: 10px;
    z-index: 999;
}

[data-theme="dark"] .service-item {
    background: linear-gradient(to right, #2a2a2a, #333333);
    border: 1px solid var(--border-color);
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i { transform: rotate(45deg); }

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn { bottom: -24px; opacity: 1; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    justify-content: center;
    max-width: 1350px; 
    margin: 40px auto 0 auto; 
    padding: 0 20px;
}
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 10px;
    }
}



.industry-card {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 84, 143, 0.1);
    position: relative;
    border: 1px solid #e0e6ed;
    z-index: 999;
}

[data-theme="dark"] .industry-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

[data-theme="dark"] .industry-card::before {
    background: var(--gradient-dark);
}

.industry-card:hover::before { opacity: 0.1; }

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 84, 143, 0.15);
    color: #000000;
}

[data-theme="dark"] .industry-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    color: var(--text-primary);
    border-color: var(--primary);
}

.industry-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background: rgba(0, 174, 239, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 2px solid rgba(0, 174, 239, 0.2);
}

[data-theme="dark"] .industry-card i {
    color: var(--secondary);
    background: rgba(6, 163, 218, 0.2);
    border: 2px solid rgba(6, 163, 218, 0.4);
}

.industry-card h5 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

[data-theme="dark"] .industry-card h5 {
    color: var(--text-primary);
}

.industry-card p {
    color: #000000;
    line-height: 1.6;
}

[data-theme="dark"] .industry-card p {
    color: var(--text-secondary);
}

.footer {
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.footer-section h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

[data-theme="dark"] .footer-section h5 {
    color: var(--secondary);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

[data-theme="dark"] .footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 174, 239, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 239, 0.3);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

[data-theme="dark"] .social-links a:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.contacts {
    border-radius: 10px;
    z-index: 999;
}
.inp{
    background-color: #eef9ff47 ;
    border: 1px solid #777d85;
    border-radius: 5px;

}
[data-theme="dark"] .inp {
    background-color: #eef9ff47  !important;
    border: 1px solid #777d85   !important;
    border-radius: 5px;
}
.careers-link-container {
    background: linear-gradient(to right, #a5f3fc, #bae6fd);
    border: 2px solid rgba(0, 174, 239, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

[data-theme="dark"] .careers-link-container {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(6, 163, 218, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.careers-link-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.12);
    border-color: var(--gradient-light);
}

[data-theme="dark"] .careers-link-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border-color: var(--primary);
}

.careers-link-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

[data-theme="dark"] .careers-link-title {
    color: var(--text-primary);
}

.careers-link-description {
    color: black;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

[data-theme="dark"] .careers-link-description {
    color: var(--text-secondary);
}

.careers-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

[data-theme="dark"] .careers-page-btn {
    color: var(--text-primary);
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.3);
}

.careers-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    color: darkcyan;
    text-decoration: none;
}

[data-theme="dark"] .careers-page-btn:hover {
    color: #ffffff;
    background: var(--secondary);
}

.careers-page-btn i { font-size: 1.1rem; }

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease;
}

[data-theme="dark"] .back-to-top {
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.3);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

[data-theme="dark"] .back-to-top:hover {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.4);
}

[data-theme="dark"] .text-primary { color: var(--text-primary) !important; }
[data-theme="dark"] .text-secondary { color: var(--text-secondary) !important; }
[data-theme="dark"] .bg-primary { background: var(--bg-primary) !important; }
[data-theme="dark"] .bg-secondary { background: var(--bg-secondary) !important; }

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-secondary)!important;
    color: var(--text-primary)!important;
    border: 1px solid var(--border-color)!important;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    background: var(--bg-tertiary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(6, 163, 218, 0.3);
}

[data-theme="dark"] .card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .card-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}
[data-theme="dark"] .dropdown-menu {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .dropdown-item { color: var(--text-primary); }
[data-theme="dark"] .dropdown-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }

[data-theme="dark"] .page-link {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .page-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .list-group-item:hover { background: var(--bg-tertiary); }

[data-theme="dark"] .nav-tabs { border-bottom: 1px solid var(--border-color); }
[data-theme="dark"] .nav-tabs .nav-link {
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

[data-theme="dark"] .nav-tabs .nav-link:hover { border-color: var(--primary); color: var(--primary); }
[data-theme="dark"] .nav-tabs .nav-link.active {
    background: var(--bg-primary);
    border-color: var(--primary);
    color: var(--text-primary);
}

/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    height: 15%;
    width: 100%;
    background: #06A3DA;
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
}

.cookie-message {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-accept-btn {
    background: #fff;
    color: #06A3DA;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.cookie-accept-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-message {
        font-size: 0.9rem;
    }
    
    .cookie-accept-btn {
        width: 100%;
        max-width: 200px;
    }
}

