
/* GENERAL STYLE*/

/* Global Styling */
h1, h2 {
  text-align: center;
  color: #030405db;
  margin-bottom: 20px;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}
/* NAVBAR SECTION */
.navbar {
  background-color: #007bff; 
  padding: 15px 30px; 
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; 
  margin: 0 auto;
}

.logo-img {
  height: 50px;
  border-radius: 10px;
  transition: transform 0.3s ease; 
}

.logo-img:hover {
  transform: scale(1.1); 
}

.navbar-brand {
  font-family: 'Roboto', sans-serif; 
  font-size: 1.8rem; 
  font-weight: bold;
  color: #eaedef; 
  text-decoration: none; 
  display: inline-block;
  transition: all 0.3s ease-in-out; 
}

.navbar-brand:hover {
  color: #0cfa44; 
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

.navbar-toggler {
  background: none;
  border: none;
  font-size: 2rem; 
  color: white;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}

.navbar-toggler:hover {
  transform: rotate(90deg); 
}

.navbar-collapse {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease-in-out; 
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  border-radius: 20px; 
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px); 
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.search-input {
  padding: 8px 15px; 
  border: 1px solid #ccc;
  border-radius: 20px; 
  outline: none;
  transition: box-shadow 0.3s ease;
}

.search-input:focus {
  box-shadow: 0 0 5px #007bff; 
}

.search-button {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff; 
  padding: 7px 15px; 
  border-radius: 20px; 
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.search-button:hover {
  background-color: #007bff;
  color: white;
}



/* navbar Responsive Design */


@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem; 
    text-align: center; 
  }
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: #007bff;
    position: absolute;
    top: 90px; 
    left: 0;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    z-index: 10;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .nav-item {
    margin: 5px 0;
  }
}


 /* ANIMATION SECTION */

  .placeholder {
    display: block;
    background-color: #e0e0e0;
    height: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  
  .col-12 {
    width: 100%;
  }
  
  /* Glow effect */
  .placeholder-glow .placeholder {
    animation: glow 1.5s infinite linear;
  }
  
  @keyframes glow {
    0% {
      background-color: #007bff;
    }
    50% {
      background-color: #c8ced5;
    }
    100% {
      background-color: #dde8f4;
    }
  }
  
  /* Wave effect */
  .placeholder-wave .placeholder {
    position: relative;
    animation: wave 5s infinite linear;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
  }
  
  @keyframes wave {
    0% {
      background-position: -200px 0;
    }
    100% {
      background-position: 200px 0;
    }
  }
  
  .placeholder-wave .placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    animation: wave 1.5s infinite linear;
  }
  
  /* HERO, ABOUT AND PROFILE SECTIONS */
/* HERO SECTION */
.background-section {
  background-image: linear-gradient(rgba(229, 228, 238, 0.812), rgba(239, 239, 240, 0.5)), url('background_image.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 25vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Roboto', sans-serif;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
/* icon control */
.icon-column i {
  display: block; 
  margin-bottom: 15px; 
  font-size: 24px; 
  color: #007bff; 
  flex-direction: column;
}

/* Hero Title */
.background-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}

/* Hero Subtitle */
.background-section p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  animation: move-text 15s linear infinite;
  position: relative;
  color: #06090c;
}

/* Text Scrolling Animation */
@keyframes move-text {
  0% {
    right: 100%;
  }
  100% {
    right: -100%;
  }
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section responsiveness */

/* For tablets and medium devices */
@media (max-width: 768px) {
  .background-section {
    height: 30vh; 
    padding: 15px;
  }
  .background-section h1 {
    font-size: 2.5rem; 
  }
  .background-section p {
    font-size: 1.2rem; 
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .background-section {
    height: 25vh; 
    padding: 10px;
    margin: 10px; 
  }
  .background-section h1 {
    font-size: 1.8rem; 
  }
  .background-section p {
    font-size: 1rem; 
    white-space: normal; 
  }
}
/* Landscape mode specific styles */
@media (min-width: 480px) and (max-width: 768px) {
  .background-section h1 {
    font-size: 2.2rem;  
  }
}
/* General mobile styles (small screens) */
@media (max-width: 479px) {
  .background-section h1 {
    font-size: 1.8rem; /* Smaller font for small devices */
  }
}

/* Specific to landscape mode */
@media (min-width: 480px) and (max-width: 768px) and (orientation: landscape) {
  .background-section h1 {
    font-size: 2.2rem;
  }
}

/* Portrait mode for mid-range devices */
@media (min-width: 480px) and (max-width: 768px) and (orientation: portrait) {
  .background-section h1 {
    font-size: 2rem;
  }
}

  /* CARD/PROFILE AND ABOUT US SECTIONS*/
  
   /* Row Container with Flex */
.row, .row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

/* Card Styling */

.card {
  border: 1px solid #007bff;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(184, 209, 236, 0.1);
  overflow: hidden;
  width: 100%; 
  max-width: 300px; 
  margin-bottom: 20px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  background-image: linear-gradient(rgba(228, 229, 238, 0.812), rgba(239, 239, 240, 0.5)),url('background_image.JPG');
  background-repeat: no-repeat; 
  background-size: cover; 
  background-position: center; 
}
.card-img-top {
  border: 5px solid #05f65a;
  border-radius: 50%; 
  padding: 10px; 
  object-fit: cover;
  animation: pulse 2s infinite ease-in-out; /* Applying pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(1); 
    border-color: #FFD700; 
  }
  50% {
    transform: scale(1.1); 
    border-color: #007bff; 
  }
  100% {
    transform: scale(1); 
    border-color: #FFD700; 
  }
}
/* Image inside the card (circular) */
.card img {
  width: 60%; 
  height: auto;
  border-radius: 50%; 
  margin: 20px 0; 
}

/* Card Body Styling */
.card-body {
  padding: 15px;

}


/* Title Styling */
.card-title {
  font-size: 1rem;
  margin: 0 0 10px;
}

/* Card Text Styling */
.card-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.8rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0056b3;
}

/* Profile Styling */
#profile {
  background-color: #0056b3;
  border-radius: 10%;
  margin-right: 25%;
  padding: 10px;
  background-color: #72b4f65c;
  border: 1px solid #759d86;
  font-weight: 1rem;
}

/* About Section Styling */
.container-fluid {
  flex: 1;
  padding: 20px;
  background-color: #72b4f65c;
  text-align: center;
  border: 1px solid #089d2d;
  border-radius: 10px;
}

/* About Us Title */
.container-fluid h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* About Us Text */
.container-fluid p {
  font-size: 1.2rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Adjust card size for mobile */
  .card {
    width: 100%;  
    max-width: 100%;
    margin-bottom: 15px;
  }

  .container-fluid {
    padding: 15px;
  }
}

#profile {
  padding: 10px;
  background-color: #72b4f65c;
  border: 1px solid #007bff;
  font-weight: 1rem;
  list-style-type: none; 
  display: flex; 
  justify-content: space-around; 
  align-items: center;
}


#profile li {
  margin: 5px; 
}

#profile a {
  text-decoration: none; 
  color: #007bff; 
  font-weight: bold; 
  padding: 5px 10px; 
  border: 1px solid transparent; 
  border-radius: 5px; 
  transition: all 0.3s ease; 
}


#profile a:hover {
  background-color: #007bff; 
  color: white; 
  border-color: #0056b3; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

  /* About us container*/

  .container-fluid {
    flex: 1;
    padding: 30px;
    background-color: #f4f8fc;
    text-align: center;
    border: 1px solid #007bff;
    border-radius: 15px;
    position: relative;
    color: #004085;
}

.container-fluid h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #007bff;
}

.container-fluid p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.container-fluid strong {
    color: #007bff;
}



.icon-container {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #007bff;
}


.icon-container {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem; 
  color: #007bff; 
  display: flex;
  gap: 15px; 
}

.icon-container i {
  animation: pulseIcon 1.5s infinite; 
  transition: transform 1s ease-in-out; 
}

/* Keyframes for the pulse effect */
@keyframes pulseIcon {
  0% {
    transform: scale(1); 
    color: #007bff;
  }
  50% {
    transform: scale(1.2); 
    color: #d717d1;
  }
  100% {
    transform: scale(1); 
  }
}

.icon-container i:hover {
  animation: none; 
}

.quotes-section {
    margin-top: 30px;
    padding: 15px;
    background-color: #e9f4ff;
    border-radius: 10px;
    border: 1px solid #007bff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.quotes-section blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #0056b3;
    margin: 10px 0;
}
  
 

  .row1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }


  /* PROJECT AND CAROUSEL SECTIONS*/

     
    /* PROJECT SECTION*/
    .projects-container {
      max-width: 1800px; 
      margin: 0 auto;
      padding: 40px; 
      background-color: #f9f9f9; 
      border-radius: 10px; 
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
      background-image: linear-gradient(rgba(228, 229, 238, 0.812), rgba(239, 239, 240, 0.5)),url('background_image.JPG');
      background-repeat: no-repeat; 
      background-size: cover; 
      background-position: center; 
      
    }
    
    .projects-container h1 {
      text-align: center;
      margin-bottom: 30px; 
      font-size: 2.5em; 
      color: #007bff; 
      font-family: 'Roboto', sans-serif; 
      
    }
    
    .projects-grid {
      display: grid;
      gap: 25px; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      
    }
    
    .project-card {
      background-color: #ffffff;
      border: 1px solid #ddd; 
      border-radius: 12px; 
      padding: 20px; 
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
      transition: transform 0.3s ease, box-shadow 0.3s ease; 
      
    }
    
    .project-card:hover {
      transform: translateY(-10px); 
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); 
    }
    
    .project-card h2 {
      font-size: 1.8em; 
      margin-bottom: 15px;
      color: #007bff; 
      font-family: 'Roboto', sans-serif; 
    }
    
    .project-card p {
      font-size: 1em;
      color: #666; 
      line-height: 1.6; 
    }
    
    .project-link {
      display: inline-block;
      margin-top: 15px;
      color: #007bff;
      text-decoration: none;
      font-weight: 600; 
      transition: color 0.3s ease; 
    }
    
    .project-link:hover {
      color: #35037e; 
      text-decoration: underline; 
    }
    
    @media (max-width: 768px) {
      .projects-grid {
        display: flex;
        flex-direction: column;
        gap: 20px; 
      }
    
      .project-card {
        padding: 15px; 
      }
    }
      
    
      /* CAROUSEL SECTION*/
      .carousel {
        width: 90%;
        max-width: 900px; 
        margin: 50px auto;
        overflow: hidden;
        border-radius: 15px; 
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
        position: relative;
        background-color: #f8f9fa; 
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        border-radius: 15px; 
        width: 100%;
    }
    
    .carousel-item {
        min-width: 100%;
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        position: relative;
    }
    
    .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px; 
        object-fit: cover; 
    }
    
    .carousel-buttons {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        padding: 0 10px;
    }
    
    .carousel-buttons button {
        background-color: rgba(0, 0, 0, 0.6); 
        color: white;
        border: none;
        padding: 12px 16px; 
        cursor: pointer;
        pointer-events: auto;
        border-radius: 50%; 
        font-size: 1.2rem; 
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    }
    
    .carousel-buttons button:hover {
        background-color: rgba(0, 0, 0, 0.8); 
        transform: scale(1.1); 
    }
    
    .carousel-dots {
        text-align: center;
        margin-top: 15px;
    }
    
    .carousel-dots button {
        background-color: #e0e0e0;
        border: none;
        width: 14px; 
        height: 14px;
        margin: 0 6px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    }
    
    .carousel-dots button:hover {
        background-color: #007bff; 
        transform: scale(1.2); 
    }
    
    .carousel-dots button.active {
        background-color: #007bff; 
        box-shadow: 0 2px 6px rgba(0, 123, 255, 0.5); 
    }
    
    /* Carousel Responsive Design */
    @media (max-width: 768px) {
        .carousel {
            max-width: 100%; 
            border-radius: 10px; 
        }
    
        .carousel-buttons button {
            padding: 10px; 
            font-size: 1rem;
        }
    
        .carousel-dots button {
            width: 12px;
            height: 12px;
        }
    }
   
    /* VIDEOS SECTION*/
  
    .educative-videos {
      padding: 25px;
      background-color: #f5f8fc; 
      color: #333;
      margin: 0 auto; 
      border-radius: 12px; 
      border: 2px solid #007bff; 
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
      max-width: 1500px; 
    }
    
    .educative-videos h2 {
      text-align: center;
      margin-bottom: 15px;
      font-size: 2em; 
      color: #007bff; 
    }
    
    .educative-videos p {
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.2em;
      color: #555; 
    }
    
    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      gap: 25px; 
    }
    
    .video-category {
      background: #fff;
      padding: 20px;
      border-radius: 12px; 
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease; 
    }
    
    .video-category:hover {
      transform: translateY(-5px); 
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
    }
    
    .video-category h3 {
      margin-bottom: 12px;
      font-size: 1.3em;
      color: #007bff; 
    }
    
    .video-category iframe {
      width: 100%;
      height: 250px; 
      border: none;
      border-radius: 8px; 
    }
    
    .video-category p {
      margin-top: 15px;
      font-size: 1em;
      color: #666; 
    }
  /* Videos Responsive Design */
    @media (max-width: 768px) {
      .video-category iframe {
        height: 200px;
      }
    }
    
    @media (max-width: 480px) {
      .video-category iframe {
        height: 160px;
      }
    }
    /* CONTACT US SECTION*/
  
.container-fluid {
  padding: 15px;
  margin: 0 auto;
  width: 80%;
}

.contact-section {
  padding: 60px 20px;
  background-color: #f4f8fb;
  font-family: 'Arial', sans-serif;
}

.contact-section h1,
.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.contact-mediums {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.medium {
  flex: 1;
  max-width: 300px;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medium:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.medium i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 15px;
}

.medium p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;

}

.contact-form button {
  padding: 15px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.contact-form button:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-mediums {
    flex-direction: column;
    align-items: center;
  }

  .medium {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .contact-section h1,
  .contact-section h2 {
    font-size: 1.8rem;
  }

  .medium p {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}

/* FOOTER US SECTION*/
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .social-links, .professional-links {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.2s, color 0.2s;
  }
  
  .social-icon:hover {
    transform: scale(1.2);
    color: #1abc9c;
  }
  
  .footer-text {
    margin-top: 15px;
    font-size: 14px;
    color: #bdc3c7;
  }

  .vertical-line {
    width: 1px;         
    height: 30px;      
    background-color: #0be14b;  
      
  }

  /*  QUICK-LINK SECTION*/
  .quick-links {
    margin-bottom: 1px;
  }

  .quick-links h5 {
    color: #f6f4f4e9;
    text-align: center;
    margin-bottom: 15px;
  }

  .quick-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .quick-links li {
    padding: 0.3rem 0.6rem; 
    background: #efeded;
    border: 1px solid #555;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    margin-left: 1.8rem;
    margin-right: 1.8rem;
    


  }

  .quick-links li:hover {
    transform: translateY(-5px);
  }

  .quick-links a {
    text-decoration: none;
    color: #050d10;
    font-size: 1em;
  }

  .quick-links a:hover {
    color: #140dd4;
    font-weight: bold;

  }

  .footer-bottom {
    text-align: center;
    font-size: 0.9em;
    border-top: 2px solid #b72121;
    padding-top: 10px;
    margin-top: 1px;
    
  }

  @media (max-width: 480px) {
    .quick-links li {
      padding: 10px;
    }

    .quick-links a {
      font-size: 0.9em;
    }
  }

  /* ACKNOWLEDGEMENT SECTION*/
  .acknowledgment {
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    border-top: 2px solid #ccc;
    text-align: center;
}

.acknowledgment {
  margin-right: 25%;
  margin-left: 25%;
  margin-top: 1%;
  border-radius: 5%;

}
.acknowledgment h2 {
  margin-bottom: 10px;

}
.acknowledgment p {
  margin: 5px 0;
}
.acknowledgment a {
  color: #007bff;
  text-decoration: none;
}
.acknowledgment a:hover {
  text-decoration: underline;
}

  