/*Site Colours
#f7f7f7; (white)
#00FAA8; green
#289DD2; blue
#4A4A4A; dark
#9c9a9a; grey
#ff0055: red
 */

body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #9c9a9a;
}

#navandhome {
    background: linear-gradient(to bottom, #289DD2, #289DD2);
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    display: block;
}

nav {
    background-color: transparent;
    padding: 20px;
}

.logo {
    width: 500px;
    height: auto;
    position: absolute;
}
  
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: right;
}
  
nav ul li {
    display: inline;
    margin-right: 20px;
}
  
nav ul li a {
    font-size: xx-large;
    text-decoration: none;
    color: #FFF;
}

nav ul li a:hover {
    color: #00FAA8;
}

.dropdown img{
    width: 25px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content img{
    padding-right: 5px;
    width: 25px;
}

.dropdown-content a {
    color: #f7f7f7;
    padding: 9px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #00FAA8;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    padding: 50px;
}

#flag {
    display: none;
}

#home {
    background: transparent;
    margin-top: 5%;
}

#home h1 {
    font-size: xx-large;
    color: #00FAA8;
}

#home h2 {
    margin-top: 5%;
    font-size: xx-large;
    color: #f7f7f7;
}

.cta-button {
    margin-top: 5%;
    display: inline-block;
    background-color: #00FAA8;
    color: #4A4A4A;
    text-decoration: none;
    padding: 20px 20px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent; /* Add transparent border */
    font-weight: bold;
    font-size: xx-large;
}

.cta-button:hover {
    background-color: #289DD2;
    color: #f7f7f7;
    border-color: #f7f7f7;
    border-width: 1px;
}

.cta-button-cancel {
    display: inline-block;
    background-color: #ff0055;
    color: #f7f7f7;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent; /* Add transparent border */
    font-weight: bold;
}

.cta-button-cancel:hover {
    border-color: #f7f7f7;
    border-width: 1px;
    }

.form-popup{
    background: linear-gradient(to bottom, #4A4A4A, #1A1A1A);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-popup label {
    line-height: 2.5;
    color: #289DD2;
}

.form-popup h2{
    color:#00FAA8;
}

.form-popup input[type="text"],
.form-popup input[type="email"],
.form-popup textarea {
    width: 90%; 
    padding: 10px; 
    margin-bottom: 3px;
    border: 1px solid #ddd;
    border-radius: 3px; 
    font-family: Arial, sans-serif;
}

.form-popup textarea {
    vertical-align: top; /* Aligns the textarea with the top of the label */
}

#services {
    color: #4A4A4A;
    font-size: xx-large;
    background: #Ffffff;
    border-width: 20px;
    padding: 15px 0;
    border-radius: 20px;
    margin: -45px auto 0px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    text-align: center;
}

#services h2 {
    color:#4A4A4A; /* Color for the service title */
    margin-bottom: 15px;
}

#line-container {
    max-width: 90%;
}

.service {
    display: inline-block;
    width: 17%;
    padding: 20px;
    margin: 10px;
    text-align: center;
    vertical-align: top;
}

.service img {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
}

.service h3 {
    color: #289DD2; /* Color for the service title */
    font-size: 33px;
    margin-bottom: 15px;
}

.service p {
    color: #9c9a9a; /* A lighter color for the text */
    font-size: 23px; /* Smaller text */
}

#why {
    background: #1A1A1A;
}

.card {
    border-width: 20px;
    border-radius: 20px;
    display: inline-block;
    width: 17%;
    padding: 20px;
    margin: 10px;
    text-align: center;
    vertical-align: top;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card h2 {
    color: #00FAA8;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.card p {
    color: #f7f7f7;
    font-size: 0.85em;
}

#contact {
    color: #4A4A4A;
    text-align: left;
    background-color: #Ffffff;
}

#contact h2 {
    text-align: left;
    font-size: 50px;
}

#contact p {
    text-align: left;
    font-size: 30px;
}

/* --------------------------------------------- */
footer {
    background: linear-gradient(to bottom, #636363, #1A1A1A);
    color: #d0cdcd;
    padding: 20px;
    text-align: center;
}

footer a{
    color: inherit;
    text-decoration: none;
    padding: 0px 10px;
}

footer a:hover,
footer a:focus {
    color: #00FAA8;
}

.icon-green,
.icon {
    display: inline-block;
}

.icon-green {
    display: none;
}

footer a:hover .icon-green,
footer a:focus .icon-green {
    display: inline-block;
}

footer a:hover .icon,
footer a:focus .icon {
    display: none;
}
/* --------------------------------------------- */

/* Main container for the policy */
.policy-container {
    width: 80%;
    margin: 20px auto;
    padding: 1%;
    background-color:#f7f7f7;
}

/* Header styles for the policy */
.policy-header h2 {
    color: #4A4A4A;
    text-align: center;
    margin-bottom: 30px;
}

/* Section styles for the policy */
.policy-section {
    margin-bottom: 20px;
    background-color: #f7f7f7;
    padding: 1px;
    width: 95%;
    text-align: justify;
}

.policy-section h2 {
    color: #289DD2;
    margin-bottom: 10px;
    font-weight: 100;
}

/* Paragraph text within sections */
.policy-section p {
    color: #4A4A4A;
    line-height: 1.6;
}

.watsapp {
    display: block;
    
}

.phone {
    display: none;
}

.phone-number {
    display: none;
    background-color: #00FAA8;
    color: #4A4A4A;
    text-decoration: none;
    padding: 5px 10px;
    margin-top: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent; /* Add transparent border */
    font-weight: bold;
    z-index: 1;
    font-size: smaller;
}

.phone:hover .phone-number {
    display: block;
}∂


.mail {
    display: block;
}

.centered-items {
    display: flex;
    justify-content: center; /* Horizontally center the items */
    align-items: center; /* Vertically center the items */
}


@media (max-width: 900px) {
    body {
    font-size: 14px;
    }
    
    nav ul {
        display: none;
    }
    
    #flag {
        display: block;
        margin-top: 5%;
        float: right;
        opacity: 0.8;
    }

    #flag a {
        margin-right: 15px;
    }



    #home {
        margin-top: 30%;
    }
    
    #home h1 {
        margin-top: 25%;
    }
    
    #home h2 {
        margin-top: 20%;
    }

    .logo {
    width: 90%;
    padding: 0px;
    margin-top: 15%;
    }
    
    section {
    padding: 15px;
    }

    .cta-button {
    padding: 3px 10px;
    margin-top: 15%;
    margin-bottom: 25px;
    }

    .cta-button-cancel {
    padding: 3px 10px;
    font-size: 0.85em;
    margin-bottom: 25px;
    }



    #services {
    margin-top: -45px;
    padding: 5px 5px;
    }

    #services h2 {
    margin: 5px 0px;
    font-size: 0.95em;
    }

    .service {
    width: 40%;
    padding: 5px;
    margin: 0px;
    }
    
    .service img {
    width: 40px;
    height: auto;
    margin-bottom: 5px;
    }
    
    .service h3 {
    font-size: 0.65em;
    margin-top: 0px;
    margin-bottom: 5px;
    }
    
    .service p {
    font-size: 0.60em;
    padding-bottom: 8px;
    }
    
    #contact h2 {
    font-size: 2em;
    }
    
    #contact p {
    font-size: 2em;
    }

}


    
