        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f7fc;
            text-align: center;
        }
		.con {
         display: flex;
         justify-content: space-around;
         align-items: center;
         width: 100%;
	     border-bottom: 2px solid #0056b3;
        }

.logo img {
    height: 80px;
}
nav ul {  
    list-style: none;
    display: flex;
    gap: ;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
    padding: 10px 15px;
    
}
nav ul li a::after {
         content: "";
         position: absolute;
         left: 0;
         bottom: -3px;
         width: 100%;
         height: 2px;
         background-color: #0056b3;
         transform: scaleX(0);
         transition: transform 0.3s ease-in-out;
        }

        nav ul li a:hover {
         color: #0056b3;
        }

        nav ul li a:hover::after {
         transform: scaleX(1);
        }
        .btn {
          padding: 10px 20px;
          border-radius: 5px;
          font-size: 16px;
          text-decoration: none;
          transition: transform 0.3s ease-in-out, background 0.3s ease;
          display: inline-block;
        }

        .primary {
          background-color: blue;
          color: white;
          border: none;
        }

        .btn:hover {
          transform: scale(1.1);
          background: #0056b3;
        }
		.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}
        .he {
            background: linear-gradient(135deg, #1565c0, #1e88e5);
            color: white;
            padding: 20px;
            font-size: 1.8em;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
        .industries {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 50px;
            flex-wrap: wrap;
        }
        .industry {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .industry img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }
        .industry:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .industry h2 {
            font-size: 1.5em;
            color: #1565c0;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .industry {
            animation: fadeInUp 0.8s ease-in-out;
        }
        .footer {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            padding: 60px 10%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            text-align: left;			
        }

        .footer div {
            min-width: 250px;
        }

        .footer h3 {
            margin-bottom: 15px;
            color: #fff;
            border-bottom: 3px solid blue;
            display: inline-block;
            padding-bottom: 8px;
            font-size: 20px;
            font-weight: bold;
        }

        .footer p, .footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            font-size: 15px;
            transition: all 0.3s ease;
            margin: 8px 0;
        }

        .footer a:hover {
            color: #f8b400;
            transform: translateX(5px);
        }
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
        }

        .contact-info a:hover {
            color: #f8b400;
        }

        .address {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            font-style: normal;
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            background-color: #0d1b2a;
            color: #bbb;
            font-size: 14px;
            border-top: 2px solid #f8b400;
        }

        .footer-bottom a:hover {
            color: #f8b400;
        }

@media screen and (max-width: 768px) {
    header {
        padding: 13px 20px;
    }
	header a{
		z-index: 30;		
	}
    .logo{
		z-index: 30;
	}
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
		color: white;
        background: white;
        padding: 10px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li a{
		color: white;
	}
    nav ul li {
        text-align: center;
        padding: 10px 0;
		z-index: 9;
		background: blue;		
    }

    .menu-toggle {
        display: block;
		cursor: pointer;
    }
}