*{

    font-size:medium;

}

a {
     text-decoration: none;
 }


 .menu-icon {
     display: none;
     font-size: 28px;
     cursor: pointer;
 }

 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background-color: #f9f9f9;
     padding: 30px 100px;
 }

 nav ul {
     display: flex;
     list-style: none;
     gap: 20px;
 }

 h1 {
     max-height: 60px;
 }


 nav ul li {
     list-style: none;
     display: inline-block;
     padding: 10px 20px;
 }

 nav ul li a {
     color: #000;
     position: relative;
     padding: 5px 0;
 }

 nav ul li a:hover {
     color: #fd4766;
 }

 nav ul li a:after {
     content: "";
     position: absolute;
     left: 0;
     width: 0;
     height: 3px;
     background: #fd4766;
     transition: 0.3s;
     bottom: 0;

 }

 nav ul li a:hover:after {
     width: 100%;

 }

 nav h1 {
     font-size: 30px;
     font-weight: 600;
     margin-left: 10%;
 }

 nav ul {
     display: flex;
     gap: 20px;
     list-style: none;
 }

 nav ul li {
     list-style: none;
     display: inline-block;
     padding: 10px 20px;
 }

 nav ul li a {
     color: #1d1d24;
     position: relative;
     padding: 5px 0;
 }



 nav ul li a:after {
     content: "";
     position: absolute;
     left: 0;
     width: 0;
     height: 3px;
     background: #fd4766;
     transition: 0.3s;
     bottom: 0;
 }

 nav ul li a:hover:after {
     width: 100%
 }

.h1,button {
    cursor: pointer;
    
    color: #fff;

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 2px;

    padding: 16px 40px;

    margin-right: 50px;

    border-radius: 500px;

    display: inline-block;

    font-weight: 500;

    transition: all 0.4s ease-in-out;

    background-size: 152% 100%;

    background: #fd4766;

    border: 2px solid #fd4766;

}



.h1,button:hover {

    background: transparent;

    border-color: #fd4766;

    color: #fd4766;

}



.h1,button:hover {

    background: #fff;

    color: #00abf0;

    transform: scale(1.05);

}

 .contact-section {
     padding: 80px 8%;
     background-color: #f9f9f9;
     color: #1f1f25;
 }

 .contact-section h2 {
     text-align: center;
     font-size: 36px;
     color: #000;
     margin-bottom: 20px;
 }

 .contact-section form {
     max-width: 600px;
     margin: auto;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .contact-section input,
 .contact-section textarea {
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 5px;
     font-size: 16px;
     resize: vertical;
 }

 .contact-section button {
     padding: 14px;
     border: none;
     background-color: #fd4766;
     color: white;
     font-size: 16px;
     border-radius: 5px;
     cursor: pointer;
 }

 .contact-section button:hover {
     background-color: #e03e5b;
 }

 .footer {
     padding: 4px;
     margin-top: 3%;
 }

 .footer a {
     width: 40px;
     height: 40px;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     border: 2px solid #00abf0;
     border-radius: 50%;
     font-size: 20px;
     color: #000;
     text-decoration: none;
     position: relative;
     overflow: hidden;
     z-index: 1;
     transition: 0.5s;
 }

 .footer a::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #00abf0;
     z-index: -1;
     transition: 0.5s;
 }

 .footer a:hover::before {
     width: 100%;
 }

 /* Map container styling */
 .map-container {
     margin-top: 40px;
     padding: 0 8%;
     text-align: center;
 }

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

 /* Make iframe responsive */
 .map-container iframe {
     width: 100%;
     max-width: 100%;
     height: 400px;
     border-radius: 10px;
     border: 1px solid #ccc;
 }


 /* Responsive Design */
 @media (max-width: 768px) {

     nav {
         display: flex;
         flex-direction: column;
         align-items: center;
         padding: 20px;
         text-align: center;
     }

     nav ul {
         flex-direction: column;
         padding: 0;
         margin: 10px 0;
         gap: 10px;
     }

     nav ul li {
         margin: 10px 0;
     }

     .menu-icon {
         display: block;
     }

     .nav-links {
         display: none;
         flex-direction: column;
         align-items: center;
         width: 100%;
         margin-top: 10px;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links li {
         margin: 10px 0;
     }


     nav h1 {
         margin-left: 0;
         font-size: 24px;
     }

     .h1,button {
         margin-top: 10px;
         margin-right:50%;
     }

     .home {
         position: static;
         padding: 40px 20px;
         text-align: center;
     }

     .home .home-content {
         font-size: 13px;
         letter-spacing: 2px;
         margin-bottom: 15px;
     }

     .home h1 {
         font-size: 36px;
         line-height: 42px;
         width: 100%;
     }

     .home p {
         width: 100%;
         font-size: 14px;
     }

     .h1 button {
         flex-direction: column;
         align-items: center;
         padding: 0;
         margin-top: 20px;
         margin-left: 0;
     }

     .button a {
         width: 80%;
         margin: 10px 0;
     }

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

     .footer {
         margin-top: 40px;
         text-align: center;
     }

     .footer a {
         margin: 0 5px;
     }
 }