    body {
        margin: 0;
    }
        header {
            background-color: dodgerblue;
            color: white;
            padding: 5px;
            text-align: center;
        }

        .logo {
            width: 80px;
            height: 60px;
            border-radius: 50%;
        }
        
        .address {
            font-size: 16px;
            margin-top: 10px;
        }
        
@media (max-width: 768px) {
    .logo {
        width: 70px;
            height: 50px;
            border-radius: 50%;
    }
}

/* Style for text animation section */
.text-animation {
    overflow: hidden; /* Hide overflowing content */
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background */
}

/* Style for text container */
.text-container {
    white-space: nowrap; /* Prevent text wrapping */
    animation: slide-left 10s linear infinite; /* Animation settings */
}

/* Style for text color */
.text-container p {
    color: blue; /* Text color */
}

/* Keyframes for animation */
@keyframes slide-left {
    from {
        transform: translateX(100%); /* Start position */
    }
    to {
        transform: translateX(-100%); /* End position */
    }
}


        
.banner {
    text-align: center;
}

.banner img {
    max-width: 90%;
    max-height: 100vh;
    display: block;
    margin: 10px auto;
    border: 10px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

            .contact-details {
            background-color: #080D34;
            color: white;
            padding: 20px;
            text-align: center;
            
        }
        
        h2 {
            margin-bottom: 10px;
        }
        
        .contact-info {
            font-size: 18px; 
            margin-top: 10px; 
        }

.tps_head_section {
    background-image: linear-gradient(lightblue, white, ivory);  
  }
  
  .head_top_left {
    float: left; 
    padding-left: 10px;  
  }
  
  .head_top_right {
    float: right; 
    padding-right: 10px;  
  }
  
  .tps_logo {
      text-decoration:none;
  }
  
  .logo {
      display: block;
      margin: 0 auto;
      width: 60px;
      height: 60px;
}

     .title {
         white-space: nowrap;
         color: blue; 
         text-shadow: 2px 2px 5px red; 
         text-align: center; 
         align-items: center;
         font-family: aharoni; 
         margin: 0; 
         padding: 0px;
         font-size: 34px;
     }
     
     .sub_title {
        white-space: nowrap;
        color: SlateBlue; 
        text-align: right; 
        margin: 0; 
        padding: 3px;
        
     }
     
     .header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; 
    color: #fff;
    padding: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
}

.header_logo img {
    margin: 0 20px;
    width: 80px;
    height: 60px;
    padding: 0;
}

.header-heading {
    margin: 0;
    display: inline;
    color: blue; 
    text-shadow: 2px 2px 5px red; 
    font-family: aharoni;
    font-size: 34px;
}

.header-desktop-subtitle {
  margin: 0 10px;
  font-family: fantasy;
  font-size: 18px;
  color: brown;
  margin-left: auto;
}
     
@media (max-width: 769px) {
    .head_top_left {
    padding-left: 5px; 
    font-size: 12px;
  }
  
  .header {
    padding: 7px 0;
}
  
  .head_top_right {
    padding-right: 5px;
    font-size: 12px;
  }

     .title {
         font-size: 20px;
     }
     
     .sub_title {
        font-size: 13px;
        
     }
     
     .address_section {
         padding: 7px; 
     }
     
     .header_logo img {
    margin: 0 20px;
    width: 60px;
    height: 40px;
    padding: 0;
}
     
     .header-heading {
    font-size: 24px;
}
.header-desktop-subtitle {
  display: none;
}
}

 .menu-header {
  list-style-type: none;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
  background-color: brown;
  animation-duration: 0.5s; /* Adjust the duration as needed */
  animation-timing-function: ease-out;
}

.menu-header.show {
  display: flex;
  flex-direction: column;
  animation-name: slideLeft;
}

.menu-header.hide {
  animation-name: slideRight;
}

@keyframes slideLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}


.menu-header-item {
    float: left;
    border-right: 1px solid #bbb;
}

.menu-header-item:last-child {
    border-right: none;
}

.menu-header-item a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 12px 5px;
    text-decoration: none;
}

.menu-header-item a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.active {
    background-color: #04AA6D;
}

.menu-header-item.dropdown {
    display: inline-block;
}

.menu-header-item.dropdown:after {
    content: '';
    border: 6px solid transparent;
    border-top: 6px solid white;
    margin-left: 0px;
    margin-right: 2px;
    display: inline;
    vertical-align: bottom;
    horizontal-align: center;
}

.menu-header-item.dropdown:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00FFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: blue;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 2px solid white;
}

.dropdown-content a:hover {
    background-color: #FFFF00;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* New styles for mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 10px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon,
.close-icon {
    display: none;
    color: red;
    font-size: 30px;
    padding: 5px 2px;
    text-align: center;
    text-decoration: none;
    z-index: 9999;
    transform: scale(1);
    transition: transform 0.9s, opacity 0.9s;
    position: absolute;
    top: 2px;
    right: 10px;
}

/* Media query for small screens */
@media (max-width: 768px) {
    .menu-header {
        display: none;
        top: 0;
        position: fixed;
        width: 100%;
        height: auto;
        z-index: 999;
    }

    .mobile-menu {
        display: block;
    }

    ul {
        display: flex;
        flex-direction: column;
    }

    .menu-header-item,
    .menu-header-item.dropdown {
        display: block;
    }

    .mobile-menu-icon {
        display: block;
    }

    .close-icon {
        display: none;
    }

    .dropdown-content {
        position: relative;
    }

    .menu-header-item {
        border-right: none;
        padding: 7px 15px;
    }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    max-width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    max-width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the max-width calculation */
}

.footer-column {
    margin: 10px;
    flex: 1;
    min-width: 200px;
    background-color: #34495e;
    padding: 10px;
    border-radius: 5px;
    max-width: calc(100% - 20px); /* Ensure columns don't exceed the width */
    box-sizing: border-box; /* Ensure padding is included in the max-width calculation */
}

.footer-heading {
    background-color: #1abc9c;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    font-size: 18px;
    margin: -10px -10px 10px -10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3b5998;
    padding: 10px;
    border-radius: 5px;
    max-width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the max-width calculation */
}

.footer-bottom div {
    flex: 1;
    text-align: center;
}

.footer-bottom .left {
    text-align: left;
}

.footer-bottom .right {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 5px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .left, .footer-bottom .center, .footer-bottom .right {
        text-align: center;
        margin: 5px 0;
    }
}


