
        /* Custom styles for the navbar */
        .navbar {
          background-color: #9197a3ba; /* Dark background for professional look */
          
      }

      .navbar-brand img {
          max-width: 25%; /* Adjust logo size */
          margin: 0%;
      }

      .navbar-nav .nav-link {
          color: #000000; /* White text for better contrast */
          font-size: 20px;
          padding: 8px 15px;
          transition: color 0.3s ease;
      }

      .navbar-nav .nav-link:hover {
          color: #1410ea; /* Light grey hover effect */
      }

      .navbar-toggler {
          border: black;
          padding: 20px;
          margin-left: 170px;
      }

      .navbar-toggler-icon {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80' width='30' height='30'%3E%3Crect width='100' height='15' rx='8' fill='white'/%3E%3Crect y='30' width='100' height='15' rx='8' fill='white'/%3E%3Crect y='60' width='100' height='15' rx='8' fill='white'/%3E%3C/svg%3E");
          align-items: center;
      }
      .logo
      {
          width: 350px; /* Adjust size as needed */
          height: auto; /* Maintain aspect ratio */
          border: 2px solid #0e0e11; /* Adjust border color and width */
          border-radius: 10%;
          padding: 5px;
          
      } 
      




.banner {
    height: 100vh; /* Full viewport height */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Fallback background color */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 10s ease-in-out infinite alternate; /* Zoom animation */
}

/* Animation Keyframes */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Slight zoom effect */
    }
}

.banner-content {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.banner h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in-out; /* Fade-in effect */
    margin: 0;
}

.banner p {
    font-size: 1.2rem;
    margin-top: 20px;
    animation: fadeIn 1.5s ease-in-out; /* Slight delay on paragraph fade-in */
}

/* Fade-in Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Adjusted Gradient Overlay */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .banner p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .banner img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .banner p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}






              /* Gallery Container */
              .image-gallery {
            padding: 50px 0;
        }

        /* Image Container */
        .image-container {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
        }

        .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease-in-out;
        }

        .image-container:hover img {
            transform: scale(1.1); /* Zoom effect */
        }

        /* Text Below Images */
        .image-container .image-text {
            text-align: center;
            margin-top: 10px;
            font-size: 1.2rem;
            font-weight: 600;
        }
         







.container1 {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.programs-section1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}



.program1 {
    background-color: #9197a3ba;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}




#why-dynamic-world h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2a2a;
}

#why-dynamic-world p {
  font-size: 1rem;
  color: #555;
}

#why-dynamic-world .media img {
  border-radius: 50%;
  background-color: #f8f9fa;
}

#why-dynamic-world img {
  max-width: 100%;
  border-radius: 50%;
}

#why-dynamic-world a.btn {
  background-color: #9197a3ba;
  border: none;
  font-weight: 600;
}

#why-dynamic-world a.btn:hover {
  background-color: #34a1d8;
}

#why-dynamic-world ul {
  padding-left: 0;
}

#why-dynamic-world .media-body p {
  margin: 0;
}  







.footer {
  background-color: #1f1f1f; /* Dark background for modern look */
  color: #fff;
  padding: 40px 0;
}

.footer h5 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer p, .footer a {
  color: #ccc;
  margin-bottom: 10px;
}

.footer p a {
  color: #ccc;
  text-decoration: none;
}

.footer p a:hover {
  color: #fff; /* White on hover for email link */
  text-decoration: underline;
}

.footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #fff; /* White on hover for links */
  text-decoration: underline;
}

.footer img {
  max-width: 150px; /* Adjust the logo size */
}

.social-icon {
  width: 100px;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1); /* Slight zoom on hover */
}

.footer p {
  color: #aaa;
  margin-top: 5px;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  .footer .col-md-4 {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .footer .text-md-left {
    text-align: center !important;
  }
  
  .footer .text-md-right {
    text-align: center !important;
  }
}



.modal-dialog {
            max-width: 100%;
            width: 80%;
        }
        .modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-height: 90vh;
            overflow-y: auto;
            align-content: center;
        }
        .modal-header {
            background-color: #aab6c3;
            border-bottom: none;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .modal-title {
            font-weight: bolder;
        }
        .modal-body {
            padding: 10px;
        }
        .card-img-top {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }



        /* testamonial */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .testimonial-section {
            background-color: #f7f7f7;
            padding: 50px 0;
            text-align: center;
        }
        .testimonial-section h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #333;
        }
        .testimonial {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .testimonial img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            object-fit: cover;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        .testimonial img:hover {
            transform: scale(1.1);
        }
        .testimonial p {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 10px;
        }
        .author {
            font-weight: bold;
            color: #222;
        }

        /* countries */

header {
    text-align: center;
    padding: 20px;
    background-color: #6caac3;
    color: white;
    }
    
    h1 {
    margin: 0;
    font-size: 2.5em;
    }
    
    .province-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
    }
    
    .province {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    }
    
    .province img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #4CAF50;
    }
    
    .province h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #333;
    }
    
    .province:hover {
    transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
    .province-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    h1 {
        font-size: 2em;
    }
    }

    /* assesment form */
    /* Unique Styling for Assessment Form */
   .assessment-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
  }

  .assessment-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #1A2A6C;
  }

  .assessment-form-group {
    margin-bottom: 15px;
  }

  .assessment-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1A2A6C;
  }

  .assessment-form-input,
  .assessment-form-select,
  .assessment-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
  }

  .assessment-radio-group,
  .assessment-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .assessment-btn-submit {
    width: 100%;
    padding: 10px;
    background-color: #FF6B6B;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .assessment-btn-submit:hover {
    background-color: #d85c5c;
  }

  .assessment-agreement {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
  }

  @media (max-width: 600px) {
    .assessment-title {
      font-size: 1.5em;
    }
  }

  /* about us */
  .about-us-section {
    background-color: #f9f9f9;
}

.section-title {
font-size: 2.5rem;
font-weight: bold;
}

.section-description {
font-size: 1.2rem;
color: #555;
}

h4 {
font-weight: bold;
margin-top: 15px;
}

img {
max-width: 100%;
}

.about-us-section img {
max-width: 150px;
}

.logo {
max-width: 200px;
margin-bottom: 20px;
}







body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  }
  
  header {
  text-align: center;
  padding: 20px;
  background-color: #6caac3;
  color: white;
  }
  
  h1 {
  margin: 0;
  font-size: 2.5em;
  }
  
  .province-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  }
  
  .province {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  }
  
  .province img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #4CAF50;
  }
  
  .province h2 {
  margin: 10px 0;
  font-size: 1.5em;
  color: #333;
  }
  
  .province:hover {
  transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
  .province-gallery {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  h1 {
      font-size: 2em;
  }
  }
  
    