/* 🌐 Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
    color: #212529;
     /* Fix hero hiding behind navbar */
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
        /* More space on mobile */
    }
}

/* 🌐 Navbar */
.corporate-navbar {
    background: #ffffff;
    transition: all 0.4s ease;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.corporate-navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color: #0d1b2a !important;
}

.navbar-brand span {
    color: #0d6efd;
}

.navbar-nav .nav-link {
    color: #212529 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 0.6rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 40%;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}

/* 🌐 Buttons */
.btn-primary {
    background: linear-gradient(90deg, #0d6efd, #004aad);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #004aad, #003580);
    box-shadow: 0 4px 10px rgba(0, 64, 255, 0.2);
}

/* 🦸 Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    color: #0d1a33;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #495057;
}

.hero-btn {
    margin-top: 1rem;
}

/* 🪄 Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    position: absolute;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
    
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
    
        .service-card img {
            transition: transform 0.3s;
        }
    
        .service-card:hover img {
            transform: scale(1.05);
        }

    .tech-card {
        transition: all 0.4s ease;
    }

    .tech-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }


          .industry-card {
              background: #fff;
              transition: all 0.4s ease;
          }
    
          .industry-card:hover {
              transform: translateY(-8px);
              box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
              background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
          }

 
  .hover-shadow {
    transition: all 0.3s ease;
  }
  .hover-shadow:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
 
.client-card {
    transition: all 0.3s ease-in-out;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 120px;
    /* same height for all cards */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

@media (max-width: 576px) {
    .client-card {
        height: 100px;
    }

    .client-logo {
        max-height: 60px;
    }
}

 

 .partner-card img:hover {
     filter: grayscale(0%);
     opacity: 1;
     transform: scale(1.05);
 }


 .gradient-bg {
     background: linear-gradient(135deg, #0061ff, #60efff, #7a00ff);
     padding-top: 100px;
 }

  
 .contact-form input,
 .contact-form textarea {
     border: 1.5px solid #dee2e6;
     border-radius: 10px;
     padding: 10px 12px;
     transition: 0.3s ease;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     border-color: #007bff;
     box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
 }

 .btn-primary {
     background: linear-gradient(135deg, #6610f2, #007bff);
     border: none;
 }

 .btn-primary:hover {
     background: linear-gradient(135deg, #007bff, #6610f2);
     transform: scale(1.05);
     transition: all 0.3s ease;
 }

 .map-section iframe {
     border-radius: 15px;
 }

.gallery-item {
    width: 100%;
    height: 250px;
    /* adjust height as you like */
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crops image nicely */
    object-position: center;
    /* centers subject */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

 