﻿body {
    font-family: sans-serif;
    color: white;
    background-color: black;
  }
.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;
  }
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
  }
.logo img {
    width: 100px;
  }
.info-block {
    display: flex;
    align-items:center;
    gap: 20px;
    padding: 20px 20px;
  }
.info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7dadf;
    font-size: 22px;
  }
.info-text {
    display: flex;
    flex-direction: column;
  }
.info-title {
    color: white;
    font-size: 12px;
    
  }
.info-detail {
    font-weight: bold;
    font-size: 14px;
  }
img{
    width: 100%;
}
.topnav {
    background: linear-gradient(to right, #4b6cb7, #182848); /* Blue Gradient */
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 10px;
    flex-wrap: wrap;
    border-bottom: 2px solid #ffffff22;
}

    .topnav a {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: background-color 0.3s ease, transform 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .topnav a:hover {
            background-color: #ffffff;
            color: #1e1e1e;
            transform: scale(1.05);
        }

        .topnav a::before {
            font-size: 20px;
        }

        /* Optional: specifically add emoji to Smart Chat only */
        .topnav a.chat::before {
            content: '💬';
        }

 