* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #201c1b;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAVIGATION BAR (unchanged as per your request) */
nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin-bottom: 100%;
    top: 0;
}
.d ul a:hover{
    color: white;
    transform: scale(1.1);
  }
.a {
    display: flex;
    height: 70px;
    background-color: #201c1b;
    color: #09aba0;
    padding: 10px;
    width: auto;
}

.c {
    padding-top: 15px;
    align-items: center;
    margin-left: 28.5%;
}

.d {
    display: flex;
    background-color: #09aba0;
    width: auto;
    justify-content: center;
    padding: 5px;
    gap: 30px;
}

.d ul li a {
    color: #201c1b;
    text-decoration: none;
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.d ul {
    gap: 30px;
}

.contact-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #201c1b, #201c1b);
    color: white;
    text-align: center;
    padding-top: 50px;
}

.contact-container {
    max-width: 800px;
    margin-left: 24%;
    margin-top: 100px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 3px 7px #09aba0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.info-item {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
    text-transform: none;
}

.info-item p a {
    text-decoration: none;
    color: white;
}

.colr {
    color: #09aba0;
}

.info-item:hover {
    transform: scale(1.05);
}

.social-media {
    margin-top: 20px;
}

.social-media h3 {
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 40px; /* Set the size of the social media icons */
    height: auto;
    transition: transform 0.3s;
}

.social-media img:hover {
    transform: scale(1.1); /* Enlarge icon on hover */
}

.aaaa {
    font-size: 30px;
}
.frame{
    margin-left: 260px;
    padding-bottom: 20px;
    box-shadow: 2px 3px 7px #09aba0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* MOBILE VIEW */
@media (max-width: 768px) {
    

    .contact-container {
        margin-left: 0;
        margin-top: 80px;
        padding: 20px;
    }

    h2 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        width: 100%;
        margin: 10px 0;
    }

    .social-media img {
        width: 35px;
    }
    .frame{
        width: 200px;
        height: 150px;
        margin-left: 80px;
        margin-right: 73px;
    }
}
@media (max-width:500px){
    .a{
        width:500px;
        height:60px;
        
    }
    .b{
        height:40px;
        
    }
    .aaaa{
        font-size: 20px;
    }
    .c{
        font-size: 15px;
        margin-left: 20px;
        margin-right: 0px;
        margin-bottom: 20px;
        flex-grow: inherit;
    }
}
