* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #f0f0f0;
    font-family: Arial, sans-serif;

    
    
}

header {
    background: #F3904F;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #3B4371, #F3904F);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #3B4371, #F3904F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    text-align: center;
    padding: 1em;
    
}

header h1 {
    margin: 0;
    font-size: 5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-family: 'Raleway', sans-serif;
    
}
header h2 {
    margin: 0;
    font-size: 4em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    
    
}


.logo-img {
    display: flex;
    width: 150px;
    height: 150px;
    margin: auto;
    
}    

.icon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content:center;
    align-items: center;
    margin-top: 100px;
    gap: 20px;
}

.icon {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    
}
.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
   
}

.icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: #535353;
    
}
a:link {
    text-decoration: none;
  }
  
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  a:active {
    text-decoration: underline;
  }
  a:hover {
    background-color: rgb(234, 96, 65);
  }
.icon:hover {
    transform: scale(1.2);
    
}



/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    header h2 {
        font-size: 1.2em;
    }

    .icon-container {
        margin-top: 30px;
        gap: 30px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

    .icon span {
        font-size: 0.7em;
    }
}

.map-container {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
}

.map-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        padding: 15px;
    }

    .map-container h2 {
        font-size: 20px;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container {
        padding: 10px;
    }

    .map-container h2 {
        font-size: 18px;
    }

    .map-container iframe {
        height: 300px;
    }
}
