/* General Styles */



@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Frank+Ruhl+Libre:wght@300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
}



#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    height: 8vh;
    background-color: white;
}

/* Logo */
#logo img {
    width: 120px;
    height: 90px !important;
}




/* Hide the hamburger icon on larger screens */
#menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 8vh;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 10px 0;
    }

    #nav-links a {
        display: block;
        margin: 10px 0;
    }

    #menu-toggle {
        display: block;
    }

    /* Show menu when active */
    #nav-links.active {
        display: flex;
    }
}

/* Navigation Links */
#nav-links {
    flex: 1;
    text-align: center;
    color: #10acc2;
}

#nav-links a {
  color: #10acc2;
    margin: 0 15px;
    text-decoration: none;
    font-size: 24px !important;
}


/* When scrolling, apply a black background */
.scrolled {
    background: black !important;
}

/* Navigation Links */
#nav-links a {
    position: relative;
    color: #10acc2;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

#nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #88e627; /* Change color if needed */
    transition: width 0.3s ease, left 0.3s ease;
}

#nav-links a:hover::after {
    width: 100%;
    left: 0;
}

#nav-links a:hover {
    color: #10acc2; /* Optional: Change text color on hover */
}


#call-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

.flag-icon {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.call-number {
    margin-right: 10px;
    font-size: 14px;
    color: #10acc2;
}


@media (max-width: 768px) {
    #header {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 5%;
    }

    /* Hide number in responsive */
    #call-info {
        display: none;
    }
}
#menu-toggle{
  color: #10acc2;
  background-color: white;
}

.cover  {
    height: 100vh;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.05)), to(rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
    background: url('../assests/homehero.jpeg') no-repeat center center/cover;
    padding: 20px 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 500px;
    width: 100%;
    color: white;
 
  }



.cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
   
    z-index: 1;
}

.cover * {
    position: relative;
    z-index: 2;
}

  

  @media all and (max-width:800px) {
    body {
      font-size: 0.9rem;
    }
  
    .flex-form {
      width: 100%;
    }
  
    input[type="search"] {
      flex-basis: 100%;
    }
  
    .flex-form > * {
      font-size: 0.9rem;
    }
  
    header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      padding: 10px !important;
    }
  
    header h2 {
      margin-bottom: 15px;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .cover {
      padding: 20px;
    }
  
    #madeby {
      padding: 30px 20px;
    }
  }
  
  @media all and (max-width:360px) {
    header nav li{
      margin: 0 10px;
    }
  
    .flex-form {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
    }
  
    input[type="search"] {
      flex-basis: 0;
    }
  
    label {
      display: none;
    }
  }
  .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-container {
    width: 50%;
    height: 400px;
}

.form-container {
    width: 50%;
    padding: 40px;
    background: #fff;
}

.form-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #007BFF;
    color: #fff;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .map-container,
    .form-container {
        width: 100%;
    }
}

/*Footer */

body {
  background-color: #212121;
  text-align: center;
  font-size: 20px !important;
}

  /* Social Media Section */
  .footer-social {
    max-width: 2100px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #10acc2;
    color: white;
  }
  
  .footer-social .social-icons a {
    color: white;
    margin: 0 0px;
    font-size: 2-px;
    transition: 0.3s;
    padding-right: 30px;
  }
  
  .footer-social .social-icons a:hover {
    color: #88e627;
    padding-right: 10px !important;
  }
  
  /* Footer Links */
  .footer-links {
    padding: 40px 20px;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: auto;
  }
  
  .footer-row {
   
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;

  }
  
  .footer-col h6 {
    font-weight: bold;
    text-transform: uppercase;
    color: #88e627;
    letter-spacing: 2px;
  }
  
  .footer-col hr {
    width: 50px;
    height: 2px;
    background-color:#10acc2;
    margin: 10px auto;
  }
  
  .footer-col p {
    margin: 5px 0;
    color: white;
  }
  
  .footer-col a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    color: white;
  }
  
  .footer-col a:hover {
    color: #10acc2;
  }
  .footer-col i{
    color: #88e627;
  }
  
  /* Footer Copyright */
  .footer-copyright {
    background-color: rgb(37, 37, 37);
    padding: 15px;
    color: whitesmoke;
  }
  
  .footer-copyright a {
    color: wheat;
    text-decoration: none;
  }
  
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  #foot{
    color: white !important;
  }
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-social {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-row {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      margin-bottom: 30px;
    }
  }
