/* 
* Main Stylesheet
* Company Name - Web & Mobile Development
*/

/* ======= Base Styles ======= */
:root {
    /* Primary Brand Colors */
    --primary-color: #00476d;        /* Logo primary blue */
    --primary-dark: #003459;         /* Deep blue for hover states */
    --primary-light: #0066a0;        /* Lighter blue for accents */
    
    /* Secondary Colors */
    --secondary-color: #555555;      /* Medium gray */
    --secondary-light: #AAAAAA;      /* Light gray */
    
    /* Neutral Colors */
    --light-color: #f8f9fa;         /* Very light background */
    --dark-color: #000000;          /* Charcoal/Near black */
    --white-color: #FFFFFF;         /* Pure white */
    
    /* Status Colors */
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    
    /* Background and Text */
    --body-bg: #ffffff;
    --body-color: #000000;
    --text-muted: #555555;
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --border-radius: 0.375rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 71, 109, 0.15);
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: var(--body-font);
    color: var(--body-color);
    background-color: var(--body-bg);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  .btn {
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .section-subtitle {
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }
  
  /* ======= Enhanced Header & Navigation ======= */
  .navbar {
    padding: 1rem 0;
    background: transparent !important;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
  }
  
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 3s ease;
  }
  
  .navbar:hover::before {
    left: 100%;
  }
  
  .navbar.scrolled {
    background: transparent !important;
    box-shadow: none;
    transform: translateY(0);
  }
  
  .navbar-brand {
    position: relative;
    z-index: 3;
  }
  
  .navbar-brand img {
    max-height: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 71, 109, 0.1));
  }
  
  .navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 71, 109, 0.2));
  }
  
  .navbar-nav {
    position: relative;
    z-index: 3;
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 109, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
  }
  
  .navbar-light .navbar-nav .nav-link:hover::before {
    opacity: 1;
  }
  
  .navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 71, 109, 0.2);
  }
  
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 71, 109, 0.3);
  }
  
  .navbar-light .navbar-nav .nav-link.active::before {
    display: none;
  }
  
  .navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    background: rgba(0, 71, 109, 0.05);
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover {
    background: var(--primary-color);
    transform: scale(1.05);
  }
  
  .navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
  }
  
  /* Mobile Menu Enhancement */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 71, 109, 0.15);
  }
  
  @media (max-width: 991px) {
    .navbar-light .navbar-nav .nav-link {
      margin: 0.2rem 0;
      text-align: center;
    }
  }
  
  /* ======= Enhanced Hero Section with Animations ======= */
  .hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #001a2e 100%);
    color: white;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  /* Animated Background Elements */
  .hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }
  
  .shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
  }
  
  .shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
  }
  
  .shape-4 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 25%;
    animation-delay: 3s;
  }
  
  .shape-5 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 60%;
    animation-delay: 4s;
  }
  
  .shape-6 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 70%;
    animation-delay: 5s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.7;
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
      opacity: 1;
    }
  }
  
  .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
  }
  
  @keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
  }
  
  /* Particle System */
  #particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
  }
  
  @keyframes particleFloat {
    0% {
      transform: translateY(100vh) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) translateX(100px);
      opacity: 0;
    }
  }
  
  /* Hero Content */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  
  .hero-text-content {
    animation: slideInLeft 1s ease-out;
  }
  
  .hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.2s both;
  }
  
  .badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .title-line {
    display: block;
    animation: slideInLeft 1s ease-out both;
  }
  
  .title-line:nth-child(1) { animation-delay: 0.4s; }
  .title-line:nth-child(2) { animation-delay: 0.6s; }
  .title-line:nth-child(3) { animation-delay: 0.8s; }
  
  .title-line.highlight {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
  }
  
  .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 1s both;
  }
  
  /* Hero Stats */
  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Hero Buttons */
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1.4s both;
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .btn-hero-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: white;
  }
  
  .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
  }
  
  .btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
  }
  
  .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
  }
  
  /* Hero Visual */
  .hero-visual {
    animation: slideInRight 1s ease-out 0.6s both;
  }
  
  .hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
  }
  
  .card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .card-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.5s;
  }
  
  .card-3 {
    top: 50%;
    right: 0;
    animation-delay: 3s;
  }
  
  .card-4 {
    bottom: 0%;
    right: 35%;
    animation-delay: 4.5s;
  }
  
  @keyframes cardFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  /* Colored icons for floating cards */
  .card-1 .card-icon i {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }
  
  .card-2 .card-icon i {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  }
  
  .card-3 .card-icon i {
    color: #e91e63;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
  }
  
  .card-4 .card-icon i {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  }
  
  .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-main-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .graphic-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    border-top-color: #00d4ff;
  }
  
  .circle-2 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    border-right-color: #0099cc;
    animation-direction: reverse;
    animation-duration: 8s;
  }
  
  .circle-3 {
    width: 100px;
    height: 100px;
    top: 100px;
    left: 100px;
    border-bottom-color: #00d4ff;
    animation-duration: 6s;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .code-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .code-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    margin: 8px 0;
    border-radius: 2px;
    animation: codeType 3s ease-in-out infinite;
  }
  
  .code-line:nth-child(1) { animation-delay: 0s; }
  .code-line:nth-child(2) { animation-delay: 0.5s; width: 80px; }
  .code-line:nth-child(3) { animation-delay: 1s; width: 40px; }
  .code-line:nth-child(4) { animation-delay: 1.5s; width: 70px; }
  
  @keyframes codeType {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 3;
  }
  
  .scroll-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
  }
  
  .scroll-arrow {
    font-size: 1.2rem;
    color: #00d4ff;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* Animation Keyframes */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-stats {
      gap: 1.5rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .floating-card {
      display: none;
    }
    
    .hero-main-graphic {
      width: 250px;
      height: 250px;
    }
    
    .circle-1 {
      width: 250px;
      height: 250px;
    }
    
    .circle-2 {
      width: 170px;
      height: 170px;
      top: 40px;
      left: 40px;
    }
    
    .circle-3 {
      width: 90px;
      height: 90px;
      top: 80px;
      left: 80px;
    }
  }
  
  /* ======= About Section ======= */
  .about-preview {
    padding: 80px 0;
  }
  
  /* ======= Modern About Section ======= */
  .about-preview-modern {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .about-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
  
  .floating-code-block {
    position: absolute;
    width: 100px;
    height: 60px;
    background: rgba(0, 71, 109, 0.1);
    border-radius: 8px;
    padding: 10px;
    animation: floatUpDown 6s ease-in-out infinite;
  }
  
  .code-block-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .code-block-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
  }
  
  .floating-code-block .code-line {
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    border-radius: 2px;
    opacity: 0.6;
  }
  
  .floating-code-block .code-line:nth-child(1) { width: 80%; }
  .floating-code-block .code-line:nth-child(2) { width: 60%; }
  .floating-code-block .code-line:nth-child(3) { width: 90%; }
  
  .floating-tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: floatRotate 8s ease-in-out infinite;
  }
  
  .tech-icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 1s;
  }
  
  .tech-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
  }
  
  .tech-icon-3 {
    bottom: 25%;
    right: 5%;
    animation-delay: 2s;
  }
  
  @keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
  }
  
  @keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
  }
  
  .about-visual-container {
    position: relative;
    z-index: 2;
  }
  
  .about-main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 71, 109, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 71, 109, 0.1);
    transition: all 0.4s ease;
  }
  
  .about-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 71, 109, 0.15);
  }
  
  .about-main-card .card-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(0, 71, 109, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 71, 109, 0.05), rgba(0, 212, 255, 0.05));
  }
  
  .card-dots {
    display: flex;
    gap: 8px;
  }
  
  .card-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .card-dots .dot.red { background: #ff5f57; }
  .card-dots .dot.yellow { background: #ffbd2e; }
  .card-dots .dot.green { background: #28ca42; }
  
  .about-card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
  }
  
  .about-main-card .card-content {
    padding: 25px;
  }
  
  .company-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .company-metrics .metric-item {
    text-align: center;
  }
  
  .company-metrics .metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }
  
  .company-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 5px;
    margin-bottom: 10px;
  }
  
  .metric-progress {
    height: 4px;
    background: rgba(0, 71, 109, 0.1);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .metric-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    border-radius: 2px;
    width: 0%;
    animation: progressLoad 2s ease-out 1s forwards;
  }
  
  @keyframes progressLoad {
    to { width: 100%; }
  }
  
  .tech-stack-visualization {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .tech-orbit {
    position: relative;
    width: 200px;
    height: 200px;
  }
  
  .center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 5;
  }
  
  .orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 71, 109, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: orbitRotate 20s linear infinite;
  }
  
  .orbit-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
  }
  
  .orbit-2 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation-delay: 5s;
  }
  
  .orbit-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
  }
  
  .orbit-4 {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation-delay: 15s;
  }
  
  @keyframes orbitRotate {
    0% { transform: translateX(-50%) rotateZ(0deg); }
    100% { transform: translateX(-50%) rotateZ(360deg); }
  }
  
  .floating-stats-card {
    position: absolute;
    top: -130px;
    right: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 71, 109, 0.1);
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
    animation: floatUpDown 4s ease-in-out infinite;
    animation-delay: 2s;
  }
  
  .stats-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .stats-chart {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 40px;
  }
  
  .chart-bar {
    width: 8px;
    background: linear-gradient(to top, var(--primary-color), #00d4ff);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1.5s ease-out forwards;
    transform: scaleY(0);
    transform-origin: bottom;
  }
  
  .chart-bar:nth-child(1) { animation-delay: 0.2s; }
  .chart-bar:nth-child(2) { animation-delay: 0.4s; }
  .chart-bar:nth-child(3) { animation-delay: 0.6s; }
  .chart-bar:nth-child(4) { animation-delay: 0.8s; }
  .chart-bar:nth-child(5) { animation-delay: 1s; }
  
  @keyframes chartGrow {
    to { transform: scaleY(1); }
  }
  
  .about-content-modern {
    position: relative;
    z-index: 2;
  }
  
  .lead-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .about-features {
    margin-bottom: 2.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 71, 109, 0.1);
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
    background: rgba(255, 255, 255, 0.9);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
  }
  
  .feature-content p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .about-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .client-avatars {
    display: flex;
    align-items: center;
  }
  
  .client-avatars .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-color);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 71, 109, 0.1);
  }
  
  .client-avatars .avatar:first-child {
    margin-left: 0;
  }
  
  .client-avatars .plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
  }
  
  .client-text {
    display: flex;
    flex-direction: column;
  }
  
  .client-text strong {
    color: var(--dark-color);
    font-size: 0.9rem;
  }
  
  .client-text span {
    color: var(--secondary-color);
    font-size: 0.8rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-floating-elements {
      display: none;
    }
    
    .company-metrics {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .tech-orbit {
      width: 150px;
      height: 150px;
    }
    
    .center-node {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
    }
    
    .orbit-item {
      width: 30px;
      height: 30px;
      font-size: 1rem;
    }
    
    .floating-stats-card {
      position: relative;
      top: 0;
      right: 0;
      margin-top: 20px;
    }
    
    .social-proof {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .feature-item {
      flex-direction: column;
      text-align: center;
    }
    
    .feature-item:hover {
      transform: translateY(-5px);
    }
  }
  
  /* ======= Services Section ======= */
  .services-preview {
    padding: 80px 0;
  }
  
  .service-card {
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 71, 109, 0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
  }
  
  .service-icon {
    margin-bottom: 1.5rem;
  }
  
  .service-detail {
    padding: 80px 0;
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
  }
  
  .service-list li {
    margin-bottom: 0.75rem;
  }
  
  .tech-stack .badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* ======= Products Section ======= */
  .products-preview {
    padding: 80px 0;
  }
  
  .product-card {
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 71, 109, 0.05);
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
  }
  
  .product-detail {
    padding: 80px 0;
  }
  
  /* ======= Portfolio Section ======= */
  .portfolio-preview {
    padding: 80px 0;
  }
  
  .portfolio-item {
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 71, 109, 0.05);
    transition: var(--transition);
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
  }
  
  .portfolio-item img {
    height: 200px;
    object-fit: cover;
  }
  
  .filter-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  .filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* ======= Contact Section ======= */
  .contact-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.07) 0%, rgba(0,153,204,0.07) 100%);
    backdrop-filter: blur(6px);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 71, 109, 0.10);
  }
  .contact-preview .card {
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 24px rgba(0, 71, 109, 0.10);
    border: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .contact-preview .card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 71, 109, 0.18);
  }
  
  .contact-info li {
    margin-bottom: 1rem;
  }
  
  .contact-form .form-control {
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
  }
  
  .contact-form textarea.form-control {
    min-height: 150px;
  }
  
  .contact-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  /* ======= CTA Section ======= */
  .cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
  }
  
  /* ======= Enhanced Page Header ======= */
  .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #001a2e 100%);
    padding: 120px 0 80px;
    padding-top: 8rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
  }
  
  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.3) 0%, transparent 50%),
      linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: headerAnimation 8s ease-in-out infinite;
  }
  
  @keyframes headerAnimation {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 1; }
  }
  
  .page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
      linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
    opacity: 0.3;
  }
  
  @keyframes gridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
  }
  
  .page-header .container {
    position: relative;
    z-index: 2;
  }
  
  .page-header-content {
    text-align: center;
    animation: pageHeaderSlideUp 1s ease-out;
    padding-top: 3rem;
  }
  
  @keyframes pageHeaderSlideUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .page-header h1 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 3.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
  }
  
  @keyframes titleGlow {
    0% { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.2); }
    100% { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.4); }
  }
  
  .page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .page-header-icon {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
  }
  
  @keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .page-breadcrumb {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 3;
  }
  
  .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
  }
  
  .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }
  
  .breadcrumb-item.active {
    color: #00d4ff;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: '→';
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding: 120px 0 60px;
      min-height: 300px;
    }
    
    .page-header h1 {
      font-size: 2.5rem;
    }
    
    .page-header p {
      font-size: 1.1rem;
    }
    
    .page-header-icon {
      font-size: 3rem;
    }
  }
  
  /* ======= Team Section ======= */
  .team-section {
    padding: 80px 0;
  }
  
  .team-member {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  .team-member h5 {
    margin-bottom: 0.5rem;
  }
  
  .team-member p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* ======= Testimonials Section ======= */
  .testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  .testimonial-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-item p {
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-item h5 {
    margin-bottom: 0.25rem;
  }
  
  .testimonial-item small {
    color: var(--secondary-color);
  }
  
  /* ======= Footer ======= */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
  }
  
  footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  footer ul li {
    margin-bottom: 0.75rem;
  }
  
  footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
  }
  
  footer a:hover {
    color: white;
    text-decoration: none;
  }
  
  .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
  }
  
  /* ======= Animations ======= */
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ======= Utility Classes ======= */
  .bg-light {
    background-color: var(--light-color) !important;
  }
  
  .bg-dark {
    background-color: var(--dark-color) !important;
  }
  
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  .rounded {
    border-radius: var(--border-radius) !important;
  }
  
  .shadow {
    box-shadow: var(--box-shadow) !important;
  }
  
  .min-vh-75 {
    min-height: 75vh;
  }
  
  .object-fit-cover {
    object-fit: cover;
  }

/* ======= Project Image Slider ======= */
.project-slider {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.project-slider .carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-slider .carousel-control-prev,
.project-slider .carousel-control-next {
  background-color: rgba(0, 71, 109, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  opacity: 0.8;
  transition: var(--transition);
}

.project-slider .carousel-control-prev {
  left: 15px;
}

.project-slider .carousel-control-next {
  right: 15px;
}

.project-slider .carousel-control-prev:hover,
.project-slider .carousel-control-next:hover {
  background-color: var(--primary-color);
  opacity: 1;
}

.project-slider .carousel-control-prev-icon,
.project-slider .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.project-slider .carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
}

.project-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 3px;
  background-color: var(--white-color);
  opacity: 0.5;
  border: 2px solid var(--primary-color);
}

.project-slider .carousel-indicators button.active {
  background-color: var(--primary-color);
  opacity: 1;
}

/* Modal Enhancements */
.modal-content {
  border: none;
  box-shadow: 0 20px 40px rgba(0, 71, 109, 0.15);
  border-radius: var(--border-radius);
}

.modal-header {
  border-bottom: 1px solid var(--secondary-light);
  background-color: var(--light-color);
}

.modal-title {
  color: var(--primary-color);
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid var(--secondary-light);
  background-color: var(--light-color);
}

.project-details h5 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.project-details ul {
  color: var(--secondary-color);
}

.project-details ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .project-slider .carousel-item img {
    height: 250px;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}

/* ======= Smoothness & Polish Enhancements ======= */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Improved Body Transitions */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Enhanced Button Transitions */
.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 71, 109, 0.3);
}

.btn:active {
  transform: translateY(0);
}

/* Enhanced Card Animations */
.card, .service-card, .product-card, .portfolio-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.card:hover, .service-card:hover, .product-card:hover, .portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 71, 109, 0.15);
}

/* Smooth Section Animations */
section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Link Animations */
a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  transform: translateY(-1px);
}

/* Image Hover Effects */
img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card img:hover, .portfolio-item img:hover {
  transform: scale(1.05);
}

/* Form Input Enhancements */
.form-control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--secondary-light);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 71, 109, 0.25);
  transform: translateY(-2px);
}

/* Enhanced Modal Animations */
.modal.fade .modal-dialog {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.8) translateY(-50px);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* Loading States */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Parallax Effect for Hero Section */
.hero-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  transition: all 0.3s ease;
}

h1:hover, h2:hover, h3:hover {
  color: var(--primary-color);
}

/* Smooth Badge Animations */
.badge {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 71, 109, 0.2);
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

/* Social Icons Enhancement */
.social-icons a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 71, 109, 0.3);
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.05) 2px,
    rgba(255, 255, 255, 0.05) 4px
  );
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Portfolio Filter Enhancement */
.filter-buttons .btn {
  position: relative;
  overflow: hidden;
}

.filter-buttons .btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Enhanced Navbar on Scroll */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Micro-interactions */
.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-toggler:hover {
  transform: scale(1.1);
}

/* Performance Optimizations */
* {
  -webkit-tap-highlight-color: transparent;
}

.card, .btn, img {
  will-change: transform;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ======= Enhanced Visual Effects & Micro-Animations ======= */

/* Section Reveal Animations */
.section-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 71, 109, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card .card-body {
  position: relative;
  z-index: 2;
}

.service-icon {
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-color), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

/* Enhanced Portfolio Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 71, 109, 0.8), rgba(0, 212, 255, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card .card-body {
  position: relative;
  z-index: 2;
}

.portfolio-card:hover .card-body {
  color: white;
}

/* Tech Stack Badges Enhancement */
.tech-stack .badge {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  position: relative;
  overflow: hidden;
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 5px rgba(0, 71, 109, 0.3); }
  100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
}

.tech-stack .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.tech-stack .badge:hover::before {
  left: 100%;
}

/* Animated Section Titles */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #00d4ff);
  transition: width 0.6s ease;
}

.section-title.animated::after {
  width: 100%;
}

/* Enhanced About Section */
.about-preview img {
  position: relative;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 71, 109, 0.2), rgba(0, 212, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.about-preview:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* Floating Elements */
.floating-element {
  animation: floatUpDown 4s ease-in-out infinite;
}

.floating-element:nth-child(even) {
  animation-delay: 2s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Interactive Contact Form */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 71, 109, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 0.5rem;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* Testimonial Cards Enhancement */
.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card .card-body {
  position: relative;
  z-index: 2;
}

/* Enhanced Footer */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--dark-color) 25%, transparent 25%, transparent 75%, var(--dark-color) 75%),
              linear-gradient(45deg, var(--dark-color) 25%, transparent 25%, transparent 75%, var(--dark-color) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.1;
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

/* Loading Animations */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00d4ff;
  animation: spin 1s ease-in-out infinite;
}

/* Hover Effects for Images */
.hover-zoom {
  overflow: hidden;
  border-radius: 15px;
}

.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom:hover img {
  transform: scale(1.1);
}

/* Progress Bars */
.progress-bar-animated {
  background: linear-gradient(45deg, var(--primary-color), #00d4ff);
  position: relative;
  overflow: hidden;
}

.progress-bar-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
  animation: progressMove 2s linear infinite;
}

@keyframes progressMove {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

/* Call-to-Action Enhancement */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Navigation Active States */
.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link.active::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* Enhanced Modal Animations */
.modal-dialog {
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Parallax Scroll Effects */
.parallax-element {
  transform: translateZ(0);
  transition: transform 0.1s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--primary-color), #00d4ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

/* Text Animations */
.typing-animation {
  overflow: hidden;
  border-right: 2px solid var(--primary-color);
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary-color); }
}

/* Enhanced Button Ripple Effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Performance Optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .floating-element,
  .shape,
  .graphic-circle,
  .grid-pattern,
  .particle {
    animation: none !important;
  }
  
  .service-card:hover .service-icon {
    transform: none !important;
  }
}

  /* ======= Modern Services Section ======= */
  .services-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 71, 109, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .section-badge {
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .section-badge .badge-text {
    background: rgba(0, 71, 109, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 71, 109, 0.2);
  }
  
  .digital-title {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  
  .service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 71, 109, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .service-card-modern:hover::before {
    opacity: 1;
  }
  
  .service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 109, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
  }
  
  .service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .service-icon-modern {
    position: relative;
  }
  
  .icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .icon-container i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
  }
  
  .icon-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: iconRotate 3s linear infinite;
  }
  
  @keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .service-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-light);
    background: rgba(0, 71, 109, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-content {
    position: relative;
    z-index: 2;
  }
  
  .service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
  }
  
  .service-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .feature-tag {
    background: rgba(0, 71, 109, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 71, 109, 0.2);
    transition: all 0.3s ease;
  }
  
  .service-card-modern:hover .feature-tag {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .service-card-modern:hover .service-hover-effect {
    transform: scaleX(1);
  }
  
  .btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
  }
  
  .btn-modern-primary:hover::before {
    left: 100%;
  }
  
  .btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 71, 109, 0.4);
    color: white;
  }
  
  /* Service Card Animations */
  .service-card-modern[data-service="web"]:hover .icon-container {
    animation: webPulse 1s ease-in-out infinite alternate;
  }
  
  .service-card-modern[data-service="mobile"]:hover .icon-container {
    animation: mobileBounce 1s ease-in-out infinite alternate;
  }
  
  .service-card-modern[data-service="design"]:hover .icon-container {
    animation: designRotate 2s linear infinite;
  }
  
  .service-card-modern[data-service="cloud"]:hover .icon-container {
    animation: cloudFloat 2s ease-in-out infinite alternate;
  }
  
  .service-card-modern[data-service="ai"]:hover .icon-container {
    animation: aiGlow 1.5s ease-in-out infinite alternate;
  }
  
  .service-card-modern[data-service="consulting"]:hover .icon-container {
    animation: consultingPulse 1.2s ease-in-out infinite alternate;
  }
  
  @keyframes webPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
  }
  
  @keyframes mobileBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
  }
  
  @keyframes designRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes cloudFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-3px) scale(1.05); }
  }
  
  @keyframes aiGlow {
    0% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
  }
  
  @keyframes consultingPulse {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.08); filter: brightness(1.2); }
  }
  
  @media (max-width: 768px) {
    .digital-title {
      font-size: 2.5rem;
    }
    
    .service-card-modern {
      padding: 1.5rem;
    }
    
    .icon-container {
      width: 50px;
      height: 50px;
    }
    
    .icon-container i {
      font-size: 1.2rem;
    }
    
    .service-number {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }

  /* ======= Modern Portfolio Section ======= */
  .portfolio-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .portfolio-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 80% 20%, rgba(0, 71, 109, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .portfolio-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
  }
  
  .portfolio-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 71, 109, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
  }
  
  .portfolio-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .portfolio-card-modern:hover .portfolio-image {
    transform: scale(1.1);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 71, 109, 0.8), rgba(0, 212, 255, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
  }
  
  .portfolio-card-modern:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .portfolio-view-btn {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    align-self: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .portfolio-view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }
  
  .portfolio-content {
    padding: 2rem;
  }
  
  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
  }
  
  .portfolio-client {
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(0, 71, 109, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 500;
  }
  
  .portfolio-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .portfolio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .portfolio-tech-stack .tech-badge {
    background: rgba(0, 71, 109, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 71, 109, 0.2);
    transition: all 0.3s ease;
  }
  
  .portfolio-card-modern:hover .portfolio-tech-stack .tech-badge {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .portfolio-metrics {
    display: flex;
    gap: 1.5rem;
  }
  
  .portfolio-metrics .metric {
    text-align: center;
  }
  
  .portfolio-metrics .metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
  }
  
  .portfolio-metrics .metric-label {
    font-size: 0.7rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .portfolio-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .portfolio-card-modern:hover .portfolio-hover-effect {
    transform: scaleX(1);
  }
  
  /* Portfolio Card Animations */
  .portfolio-card-modern:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .portfolio-card-modern:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .portfolio-card-modern:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  @media (max-width: 768px) {
    .portfolio-image-container {
      height: 200px;
    }
    
    .portfolio-content {
      padding: 1.5rem;
    }
    
    .portfolio-header {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .portfolio-metrics {
      gap: 1rem;
    }
    
    .portfolio-metrics .metric-value {
      font-size: 1rem;
    }
  }

  /* ======= Modern Product Cards ======= */
  .product-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  .product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 109, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
  }
  
  .product-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .product-card-modern:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .product-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 71, 109, 0.1);
  }
  
  .product-status.live {
    color: #28a745;
  }
  
  .product-status.live i {
    color: #28a745;
    animation: pulse 2s infinite;
  }
  
  .product-status.development {
    color: var(--primary-color);
  }
  
  .product-status.development i {
    color: var(--primary-color);
    animation: spin 2s linear infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .product-content {
    padding: 2rem;
  }
  
  .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
  }
  
  .product-category {
    background: rgba(0, 71, 109, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .product-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .product-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .product-tech-stack .tech-badge {
    background: rgba(0, 71, 109, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 71, 109, 0.2);
    transition: all 0.3s ease;
  }
  
  .product-card-modern:hover .product-tech-stack .tech-badge {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .product-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 71, 109, 0.05);
    border-radius: 15px;
  }
  
  .product-metrics .metric {
    text-align: center;
    flex: 1;
  }
  
  .product-metrics .metric-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
  }
  
  .product-metrics .metric-label {
    font-size: 0.7rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .product-actions {
    display: flex;
    gap: 1rem;
  }
  
  .btn-product-primary,
  .btn-product-secondary {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
  }
  
  .btn-product-primary {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border: none;
    color: white;
  }
  
  .btn-product-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 109, 0.3);
    color: white;
  }
  
  .btn-product-secondary {
    background: rgba(0, 71, 109, 0.1);
    border: 1px solid rgba(0, 71, 109, 0.2);
    color: var(--primary-color);
  }
  
  .btn-product-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .product-image-container {
      height: 180px;
    }
    
    .product-content {
      padding: 1.5rem;
    }
    
    .product-header {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .product-actions {
      flex-direction: column;
    }
    
    .product-metrics {
      padding: 0.8rem;
    }
    
    .product-metrics .metric-value {
      font-size: 1rem;
    }
  }

  /* ======= Product Page Additional Elements ======= */
  .product-info-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--secondary-color);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 71, 109, 0.1);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .stat-icon i {
    color: white;
    font-size: 1.2rem;
  }
  
  .stat-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .stat-content p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .product-info-section {
      padding: 2rem;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .stat-card {
      padding: 1rem;
    }
  }

  /* ======= Contact Page Styles ======= */
  .contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 71, 109, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .contact-info-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
  }
  
  .contact-methods {
    margin: 2rem 0;
  }
  
  .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 71, 109, 0.1);
  }
  
  .contact-method:last-child {
    border-bottom: none;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    color: white;
    font-size: 1.2rem;
  }
  
  .contact-details h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .contact-details p {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
  }
  
  .social-icons-modern {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 71, 109, 0.1);
    border: 1px solid rgba(0, 71, 109, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  .contact-form-wrapper {
    height: 100%;
  }
  
  .contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
  }
  
  .form-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .modern-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 71, 109, 0.2);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .modern-input:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 109, 0.1);
  }
  
  .form-floating > .modern-input:focus ~ label,
  .form-floating > .modern-input:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
  }
  
  .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 109, 0.25);
  }
  
  /* Map Section */
  .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 71, 109, 0.1);
  }
  
  .map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .map-content {
    text-align: center;
    color: white;
  }
  
  .map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .map-content h4 {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .map-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  /* FAQ Section */
  .modern-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  .modern-accordion .accordion-button {
    background: transparent;
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .modern-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 71, 109, 0.05);
    color: var(--primary-color);
  }
  
  .modern-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
  }
  
  .modern-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003459'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .modern-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary-color);
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .contact-info-wrapper,
    .contact-form-card {
      padding: 2rem;
      margin-bottom: 2rem;
    }
    
    .contact-method {
      padding: 1rem 0;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
    }
    
    .social-icons-modern {
      justify-content: center;
    }
    
    .map-placeholder {
      height: 300px;
    }
    
    .map-content i {
      font-size: 2rem;
    }
    
    .contact-section .floating-element {
      width: 40px;
      height: 40px;
    }
  }

  /* ======= Enhanced Home Contact Section ======= */
  .contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 71, 109, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
      linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridFloat 30s linear infinite;
    opacity: 0.5;
  }
  
  .contact-info-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
  }
  
  @keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }
  
  .contact-methods {
    margin: 2rem 0;
  }
  
  .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 71, 109, 0.1);
    transition: all 0.3s ease;
  }
  
  .contact-method:hover {
    transform: translateX(10px);
    padding-left: 10px;
  }
  
  .contact-method:last-child {
    border-bottom: none;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  
  .contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .contact-method:hover .contact-icon::before {
    transform: translateX(100%);
  }
  
  .contact-icon i {
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
  }
  
  .contact-details h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .contact-details p {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
  }
  
  .social-icons-modern {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 71, 109, 0.1);
    border: 1px solid rgba(0, 71, 109, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .social-icon:hover::before {
    opacity: 1;
  }
  
  .social-icon:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
  }
  
  .social-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover i {
    color: white;
  }
  
  .contact-form-wrapper {
    height: 100%;
  }
  
  .contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .form-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .form-title h3 {
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .modern-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 71, 109, 0.2);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .modern-input:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 109, 0.1), 0 8px 25px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .form-floating > .modern-input:focus ~ label,
  .form-floating > .modern-input:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  }
  
  .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 109, 0.25);
  }
  
  /* Floating elements for digital feel */
  .contact-section .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 71, 109, 0.1));
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
    pointer-events: none;
  }
  
  .contact-section .floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }
  
  .contact-section .floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
  }
  
  .contact-section .floating-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
  }
  
  .contact-section .floating-element:nth-child(4) {
    bottom: 25%;
    right: 5%;
    animation-delay: 1s;
  }

  /* ======= Modern About Page Styles ======= */
  .about-company {
    position: relative;
    overflow: hidden;
  }
  
  .about-company::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 71, 109, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .about-image-container img {
    transition: transform 0.3s ease;
  }
  
  .about-image-container:hover img {
    transform: scale(1.05);
  }
  
  .about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 71, 109, 0.1));
    border-radius: 20px;
    pointer-events: none;
  }
  
  .about-image-container .floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 71, 109, 0.2));
    border-radius: 50%;
    animation: floatUpDown 4s ease-in-out infinite;
  }
  
  .about-image-container .floating-element:nth-child(3) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .about-image-container .floating-element:nth-child(4) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
  }
  
  .about-stats {
    margin-top: 3rem;
  }
  
  .about-stats .stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .about-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 71, 109, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .about-stats .stat-card:hover::before {
    opacity: 1;
  }
  
  .about-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 71, 109, 0.15);
  }
  
  .about-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
  }
  
  .about-stats .stat-icon i {
    color: white;
    font-size: 1.5rem;
  }
  
  .about-stats .stat-number {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }
  
  .about-stats .stat-label {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  /* Mission & Vision Cards */
  .mission-vision {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(0, 71, 109, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .mission-card,
  .vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 71, 109, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .mission-card::before,
  .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 71, 109, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mission-card:hover::before,
  .vision-card:hover::before {
    opacity: 1;
  }
  
  .mission-card:hover,
  .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 109, 0.15);
  }
  
  .mission-icon,
  .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .mission-card:hover .mission-icon,
  .vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .mission-icon i,
  .vision-icon i {
    color: white;
    font-size: 2rem;
  }
  
  .mission-title,
  .vision-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .mission-text,
  .vision-text {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  .mission-hover-effect,
  .vision-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .mission-card:hover .mission-hover-effect,
  .vision-card:hover .vision-hover-effect {
    transform: translateX(100%);
  }
  
  @media (max-width: 768px) {
    .about-stats .stat-card {
      padding: 1rem;
    }
    
    .about-stats .stat-icon {
      width: 50px;
      height: 50px;
    }
    
    .about-stats .stat-icon i {
      font-size: 1.2rem;
    }
    
    .about-stats .stat-number {
      font-size: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
    }
    
    .mission-icon,
    .vision-icon {
      width: 60px;
      height: 60px;
    }
    
    .mission-icon i,
    .vision-icon i {
      font-size: 1.5rem;
    }
    
    .mission-title,
    .vision-title {
      font-size: 1.5rem;
    }
  }

/* ======= Modal Styles ======= */
.project-slider .carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.project-details h5 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-details ul {
    list-style: none;
    padding-left: 0;
}

.project-details ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.project-details ul li:before {
    content: "▸";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.product-modal-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-status-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-status-large.live {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.product-status-large.development {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.product-category-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-stack-large {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-badge-large {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 71, 109, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 71, 109, 0.1);
}

.metric-value-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.metric-label-large {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(0, 71, 109, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
    width: 1.5rem;
    text-align: center;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    line-height: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
    .project-slider .carousel-item img {
        height: 250px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack-large {
        justify-content: center;
    }
}

/* ======= End: Modal Styles ======= */

/* Service Modal Styles */
.service-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 71, 109, 0.15);
}

.service-modal-header {
  background: linear-gradient(135deg, var(--primary-color), #00d4ff);
  color: white;
  border: none;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-modal-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.modal-title-section .modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.modal-subtitle {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  color: white;
}

.service-modal-header .btn-close {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.service-modal-header .btn-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.service-modal-body {
  padding: 2.5rem;
  background: #f8f9fa;
}

.service-details h6 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 71, 109, 0.1);
}

.service-overview p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.service-features-detailed {
  margin-bottom: 2rem;
}

.technology-stack {
  margin-bottom: 2rem;
}

.service-sidebar {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 71, 109, 0.1);
  height: fit-content;
}

.service-metrics {
  margin-bottom: 2rem;
}

.service-process h6 {
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 71, 109, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(0, 71, 109, 0.1);
  transform: translateX(5px);
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content strong {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--secondary-color);
  line-height: 1.4;
}

.service-modal-footer {
  background: white;
  border: none;
  padding: 2rem;
  border-top: 1px solid rgba(0, 71, 109, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-modal-footer .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
}

.service-modal-footer .btn-outline-secondary {
  color: var(--secondary-color);
  border-color: rgba(0, 71, 109, 0.2);
}

.service-modal-footer .btn-outline-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

/* Modal animations */
.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* Responsive modal styles */
@media (max-width: 768px) {
  .service-modal-header {
    padding: 1.5rem;
  }
  
  .modal-header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .service-modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .modal-title-section .modal-title {
    font-size: 1.5rem;
  }
  
  .service-modal-body {
    padding: 1.5rem;
  }
  
  .service-sidebar {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .service-modal-footer {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-modal-footer .btn {
    width: 100%;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
}
