@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding-top: 80px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    flex: 0 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links .inquiry-btn {
    display: none;
}

.nav-links a:hover {
    color: #ff3700;
}

.inquiry-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.inquiry-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.active-link a {
    color: #ff3700;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
    }

    .nav-right {
        display: none;
        /* Hide desktop inquiry button on mobile */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: left;
        padding-top: 20px;
        gap: 10px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        transform: none;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        text-align: left;
        width: 100%;
        padding: 15px 25px;
    }

    .nav-links li a:hover {
        color: #0056b3;
        background-color: rgb(233, 233, 233);
    }

    .nav-links .inquiry-btn {
        display: inline-block;
        /* Show inquiry button in mobile menu */
        padding: 15px 30px;
        /* Reduced padding for smaller width */
        font-size: 18px;
        /* Slightly smaller font */
        color: #fff;
        margin: 0 20px;
        text-align: center;
    }

    .nav-links li:last-child {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}



.inn-innovation-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.inn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.inn-image-container {
    flex: 0 0 400px;
}

.inn-gear-image {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    border-radius: 8px;
    background-image:
        radial-gradient(circle at 80px 80px, #666 2px, transparent 2px),
        radial-gradient(circle at 120px 120px, #666 2px, transparent 2px),
        radial-gradient(circle at 200px 100px, #666 2px, transparent 2px),
        radial-gradient(circle at 280px 150px, #666 2px, transparent 2px),
        radial-gradient(circle at 150px 200px, #666 2px, transparent 2px),
        radial-gradient(circle at 320px 80px, #666 2px, transparent 2px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px, 110px 110px, 70px 70px;
    position: relative;
    overflow: hidden;
}

.inn-gear-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 20px solid #999;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, transparent 30deg, #999 30deg, #999 60deg, transparent 60deg),
        conic-gradient(from 90deg, transparent 30deg, #999 30deg, #999 60deg, transparent 60deg),
        conic-gradient(from 180deg, transparent 30deg, #999 30deg, #999 60deg, transparent 60deg),
        conic-gradient(from 270deg, transparent 30deg, #999 30deg, #999 60deg, transparent 60deg);
}

.inn-content {
    flex: 1;
}

.inn-title {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.inn-subtitle {
    font-size: 18px;
    color: #764ba2;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.5;
}

.inn-description {
    color: #666666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 25px;
}

.inn-features-list {
    list-style: none;
    margin-top: 30px;
}

.inn-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666666;
    font-size: 16px;
}

.inn-feature-item::before {
    content: '●';
    color: #333333;
    margin-right: 12px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .inn-container {
        flex-direction: column;
        gap: 40px;
    }

    .inn-image-container {
        flex: none;
    }

    .inn-image-container img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .inn-gear-image {
        height: 250px;
    }

    .inn-title {
        font-size: 32px;
    }

    .inn-innovation-section {
        padding: 60px 20px;
    }
}



.service-process {
    padding: 80px 0;
    background-color: #ffffff;
}

.serv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.process-step:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.process-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: rotate(10deg);
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0 15px 0;
    transition: color 0.3s ease;
    flex-shrink: 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:hover .step-number {
    color: #3498db;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80px;
    padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-process {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        padding: 25px 15px;
        height: 300px;
    }

    .step-number {
        height: 30px;
        font-size: 1.3rem;
        margin: 15px 0 10px 0;
    }

    .step-description {
        height: 70px;
        font-size: 0.95rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .process-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .serv-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .process-step {
        height: 280px;
        padding: 20px 10px;
    }

    .step-number {
        height: 28px;
        font-size: 1.2rem;
        margin: 12px 0 8px 0;
    }

    .step-description {
        font-size: 0.9rem;
        height: 65px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}



/*Footer*/

.footer {
    background: #3E8F88;
    color: white;
    padding: 40px 80px;
    position: relative;
    margin:0 auto;
    min-height: 75vh;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 220px;
    margin: 20px;
  }
  .about{
    line-height: 1.3;
    font-size: 1rem;
    color: rgb(225, 225, 225);
  }
  .footer-section h4 {
    margin-bottom: 15px;
    font-style: bold;
    font-size: 1.3rem;
    color: #ffffff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: rgb(225, 225, 225);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  
 
  .footer-section .logo {
    height: 40px;
    margin-bottom: 10px;
  }
  

  .footer-section ul li a:hover {
    color: #f3ff10;
  }
  
   .footer-contact{
    font-size: 14px;
  }
  .footer-contact a{
    text-decoration:none;
    color: rgb(225, 225, 225);
  }
  .footer-contact a:hover{
    color: #f3ff10;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom p{
    margin-top: 20px;
  }
  .scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    transition: all 0.3s ease;
  }
  
  .scroll-top:hover {
    background-color: #0056b3;
  }
  .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
  }
  
  @media screen and (max-width: 768px) {
    .footer {
      padding: 30px 40px;
      min-height: auto;
    }
  
    .footer-container {
      align-items: flex-start;
      padding: 10px;
    }
  
    .footer-section {
      margin: 20px 0;
      width: 100%;
    }
  
    .footer-bottom {
      font-size: 0.9rem;
      padding-top: 10px;
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 20px;
    }
    .about{
      margin-top: 50px;
    }
    .footer-section .logo {
      display: block;
    }
    
  }
  