/*





*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');


body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/*---------------------------------------
   Control For Zoom In Zoom Out 
   -----------------------------------------*/

.control-button {
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}

/*---------------------------------------
   TYPOGRAPHY              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  line-height: inherit;
}

h1,h2,h3,h4 {
  letter-spacing: -1px;
}

h5 {
  font-weight: 500;
}

h1 {
  color: #252525;
  font-size: 5em;
}

h2 {
  color: #272727;
  font-size: 3em;
  padding-bottom: 10px;
}

h3 {
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 0;
}

h4 {
  color: #454545;
  font-size: 1.8em;
  padding-bottom: 2px;
}

h6 {
  letter-spacing: 0;
  font-weight: normal;
}

p {
  color: #757575;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
}


/*---------------------------------------
   GENERAL               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #252525;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #a5c422;
  outline: none;
}

::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #000000;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  margin-top: 0;
}

.section-btn {
  background: #a5c422;
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  font-size: inherit;
  font-weight: 500;
  padding: 14px 20px;
  transition: transform 0.1s ease-in;
  transform: translateX(0);
}

.section-btn:hover {
  transform: translateY(-5px);
}

.text-align-right {
  text-align: right;
}

.text-align-center {
  text-align: center;
}

.border-top {
  border-top: 1px solid #f2f2f2;
  margin-top: 4em;
  padding-top: 2.5em;
}

.btn-gray {
  background: #393939;
}

.btn-blue {
  background: #4267b2;
}

.news-thumb {
  background: #ffffff;
  border-radius: 10px;
}
.news-thumb img {
  border-radius: 10px 10px 0 0;
}

.news-info {
  padding: 30px;
  text-align: left;
}
.news-info span {
  display: block;
  letter-spacing: 0.5px;
}
.news-info h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.author {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5em;
  margin-top: 2em;
}
.author img,
.author .author-info {
  display: inline-block;
  vertical-align: top;
}
.author-info h5 {
  margin-bottom: 0;
}
.author img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}


#about, #team, #news,
#news-detail {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

#news, #service {
  text-align: center;
}

#google-map {
  line-height: 0;
  margin: 0;
  padding: 0;
}


/*---------------------------------------
     PRE LOADER              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #575757;
  border-top-color: #ffffff;
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);}
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}



/*---------------------------------------
    MENU              
-----------------------------------------*/

header {
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  height: 45px;
}

header .col-md-8 {
  padding-right: 0;
}

header p,
header span {
  font-size: 19px;
  line-height: 24px;
  padding-top: 12px;
}

header a,
header span {
  color: #747474;
}

header span {
  font-weight: 500;
  display: inline-block;
  padding: 11px 15px;
}

header span.date-icon {
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  padding-right: 19px;
  padding-left: 19px;
}

header span i {
  color: #a5c422;
  margin-right: 5px;
}



/*---------------------------------------
    MENU              
-----------------------------------------*/

.navbar-default {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,.075);
  border: none;
  margin-bottom: 0;
  padding: 10px;
}



.navbar-default .navbar-brand .fa {
  color: #a5c422;
}

.navbar-default .navbar-nav li.appointment-btn {
  margin: 3px 0 0 20px;
}

.navbar-default .navbar-nav li.appointment-btn a {
  background: #a5c422;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 600;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-default .navbar-nav li.appointment-btn a:hover {
  background: #4267b2;
  color: #ffffff !important;
}

.navbar-default .navbar-nav li a {
  color: #555555;
  font-size: 18px;
  font-weight: 500;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.navbar-default .navbar-nav > li a:hover {
  color: #393939 !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #555555;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #393939;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.navbar-default .navbar-toggle .icon-bar {
  background: #393939;
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}

/* Dropdown Styles */
.dropdown {
position: relative;
display: inline-block;
}

.dropdown-menu {
display: none; /* Hidden by default */
position: absolute;
background-color: #fff;
min-width: 160px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
list-style-type: none;
padding: 0;
margin: 0;
border: 1px solid #ddd;
}

.dropdown-menu li {
padding: 10px 15px;
}

.dropdown-menu li a {
text-decoration: none;
color: #333;
display: block;
transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
background-color: #f2f2f2;
color: #007bff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
display: block;
}





/*---------------------------------------
    HOME              
-----------------------------------------*/

  #banner {
      position: relative;
      width: 100%;
      overflow: hidden;
  }

  .slide-container {
      display: none;
      width: 100%;
      height: 100%;
      text-align: center;
  }

  .banner-image {
      width: 100%;
      object-fit: cover;
  }

  .caption {
      position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 24px;
  }

  .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
  }

  .arrow-left {
      left: 10px;
  }

  .arrow-right {
      right: 10px;
  }

  .dots {
      text-align: center;
      padding: 10px 0;
  }

  .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      cursor: pointer;
  }

  .dot.active {
      background-color: #717171;
  }

  /* Make banner taller on mobile */
  @media (max-width: 768px) {
      #banner {
          height: 130px;
      }

      .slide-container {
          height: 100%;
      }

      .banner-image {
          height: 100%;
          object-fit: cover;
      }

      .caption {
          font-size: 1.2rem;
      }

      .arrow {
          padding: 12px;
          font-size: 1.4rem;
      }
  }



/*---------------------------------------
    GOVERNOR PROFILE             
-----------------------------------------*/

#governor {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url('../images/clouds.png');

  background-size: 2000px 600px; /* You control this */
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  position: relative;
}


/* Text Styling */
.governor h2,
.governor h3 {
  margin: 0;
  color: black;
}

/* New Flexbox Heading Styling */
.governor-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.governor-heading h2,
.governor-heading h3 {
  font-size: 20px;
  white-space: nowrap;
}

/* Link Styling */
ul.menu {
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

li {
  list-style-type: none;
}

.box-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0056b3;
  border: 2px solid #ccc;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-top: 50px;
}

.box-link h4 {
  margin: 0;
  color: #f2e4e4;
}

.box-link:hover {
  background-color: #003d80;
}

/* Desktop View */
@media (min-width: 768px) {
  #governor {
    display: flex;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
   
  }

  .governor-image img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: 40px;
  }

  .governor {
    max-width: 50%;
    padding-left: 20px;
  }

  .governor-heading {
    flex-direction: row;
    text-align: left;
  }
}
/* Mobile View */
@media (max-width: 767px) {
  #governor {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .row {
    display: flex;
    flex-direction: column;
  }

  .governor-image img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
  }

  .governor {
    text-align: center;
    margin-top: 20px;
  }

  .governor-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box-link {
    margin-top: 20px;
  }

  /* Adjust position of text under the image */
  .row .col-md-6:first-child {
    order: 2; /* Ensure text is below the image */
  }

  .row .col-md-6:last-child {
    order: 1; /* Ensure image is on top in mobile */
  }
}







/* Press Release */
.press-item {
position: relative;
overflow: hidden;
width: 100%;
max-width: 100%; /* Full width for mobile */
margin: auto;
}

.press-item img {
width: 100%;
height: auto; /* Adjust dynamically for different screen sizes */
max-height: 200px; /* Limits height for consistency */
object-fit: cover;
transition: 0.3s ease-in-out;
}

.press-item .press-text {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.7); /* Dark overlay */
color: white;
padding: 10px;
text-align: center;
font-size: 10px;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}

/* Show text on hover for desktop */
@media (min-width: 768px) {
.press-item:hover .press-text {
    opacity: 1;
}
}

/* Mobile-friendly text always visible */
@media (max-width: 767px) {
.press-item .press-text {
    opacity: 1; /* Always show text on mobile */
    font-size: 12px; /* Reduce text size */
    padding: 8px;
}
}

/*---------------------------------------
    ABOUT   RAJ BHAVAN           
-----------------------------------------*/

#about {
  background: url('../images/rajbhavan/side.png') no-repeat top center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.profile img,
.profile figcaption {
  display: inline-block;
  vertical-align: top;
  margin-top: 1em;
}
.profile img {
  border-radius: 100%;
  width: 65px;
  height: 65px;
  margin-right: 1em;
}
.profile figcaption h3 {
  margin-top: 0;
}

#about h6 {
  color: #858585;
  margin: 0;
}



/*---------------------------------------
    TEAM MEMBERS              
-----------------------------------------*/

.team-thumb {
  background-color: #f9f9f9;
  border-radius: 0 0 10px 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-info {
  padding: 20px 30px 0 30px;
}

.team-contact-info {
  border-top: 1px solid #e9e9e9;
  padding-top: 1.2em;
  margin-top: 1.5em;
}

.team-contact-info .fa {
  margin-right: 5px;
  display: inline-block;
}

.team-contact-info p {
  margin-bottom: 2px;
}

.team-contact-info a {
  color: #757575;
}

.team-thumb .social-icon li {
  font-weight: 500;
}

.team-thumb .social-icon li a {
  background: #ffffff;
  border-radius: 100%;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 2px 0 2px;
}

.team-thumb .social-icon {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.5s 0.2s;
  text-align: center;
  position: relative;
  top: 0;
}

.team-thumb:hover .social-icon {
  opacity: 1;
  transition-delay: 0.3s;
  transform: translateY(0px);
  top: -22em;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.slider-container {
    position: relative;
    width: 100%; /* Make the container take up full width of the viewport */
    height: auto; /* Height adjusts automatically based on aspect ratio */
    max-width: 1920px; /* Maximum width to prevent overflow */
    margin: auto;
    overflow: hidden;
}
.slider-images {
    display: flex;
    transition: transform 0.5s ease;
}
.slider-images img {
    width: 100%; /* Ensure images fit the container width */
    height: auto; /* Maintain the aspect ratio */
}
.slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}


/*--------------------------------------
  PHOTO GALLERY
  --------------------------------------*/
 .folder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.folder-item, .gallery-item {
    text-align: center;
    margin: 10px;
    cursor: pointer;
}

.folder-item img, .gallery-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.folder-item img:hover, .gallery-item img:hover {
    transform: scale(1.1);
}

/* Gallery Styles */
.gallery {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.gallery.active {
    display: flex;
}

/* Back Button */
.back-button {
    margin-bottom: 20px;
    padding: 10px 15px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #0056b3;
}

/* Folder and Gallery Styles */
.folder {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}

.folder-item, .gallery-item {
text-align: center;
margin: 10px;
cursor: pointer;
}

.folder-item img, .gallery-item img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 10px;
transition: transform 0.3s;
}

.folder-item img:hover, .gallery-item img:hover {
transform: scale(1.1);
}

/* Gallery Styles */
.gallery {
display: none;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}

.gallery.active {
display: flex;
}

.gallery img {
max-width: 200px;
max-height: 200px;
margin: 10px;
cursor: pointer;
}
.gallery div {
display: inline-block;
text-align: center;
}
.gallery p {
margin: 5px 0 0 0;
}

/* Back Button */
.back-button {
margin-bottom: 20px;
padding: 10px 15px;
border: none;
background-color: #f0c949;
color: #fff;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}

.back-button:hover {
background-color: #0056b3;
}

/* Lightbox Styles */
.lightbox {
display: none;
position: fixed;
z-index: 999;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}

/*---------------------------------------
   SERVICE              
-----------------------------------------*/

#service {
  background: #a5c422;
}

#service h2,
#service h4 {
  color: #ffffff;
}

#service p {
  color: #d9d9d9;
}

#service .service-thumb {
  padding: 0 22px;
}

#service .fa {
  font-size: 50px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #a5c422;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 100%;
}


/*---------------------------------------
    NEWS             
-----------------------------------------*/

#news, #news-detail {
  background: #f9f9f9;
}

#news-detail blockquote {
  margin: 30px 0;
}

.news-detail-thumb .news-image img {
  border-radius: 10px;
}

.news-detail-thumb h3 {
  margin-bottom: 8px;
}

.news-image {
  margin-bottom: 30px;
  position: relative;
}

.news-image img {
  width: 100%;
}

.news-detail-thumb ul {
  margin: 32px 12px 22px 0px;
}

.news-detail-thumb ul li {
  list-style: circle;
  font-weight: normal;
  padding: 6px 12px 6px 0px;
}

.news-sidebar {
  margin-top: 16px;
}

.news-social-share {
  text-align: center;
  padding-top: 22px;
}

.news-social-share .btn {
  border-radius: 100px;
  border: none;
  font-size: 10px;
  font-weight: 600;
  margin: 2px 6px;
  padding: 8px 14px;
}

.news-social-share .btn-primary {
  background: #3b5998;
}

.news-social-share .btn-success {
  background: #1da1f2;
}

.news-social-share .btn-danger {
  background: #dd4b39;
}

.news-social-share a .fa {
  padding-right: 4px;
}

.recent-post {
  padding-top: 2px;
  padding-bottom: 18px;
}

.recent-post .media img {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-right: 5px;
}

.recent-post .media-heading {
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
  margin-top: 5px;
}

.news-categories {
  margin-top: 8px;
}

.news-categories li a {
  color: #2b2b2b;
}

.news-ads {
  background: #ffffff;
  border-right: 4px solid #2b2b2b;
  padding: 42px;
  text-align: center;
  margin: 26px 0 26px 0;
}

.news-ads.sidebar-ads {
  border-left: 4px solid #2b2b2b;
  border-right: 0px;
}

.news-ads h4 {
  font-size: 18px;
}

.news-tags h4 {
  padding-bottom: 6px;
}

.news-categories li,
.news-tags li {
  list-style: none;
  display: inline-block;
  margin: 4px;
}

.news-tags li a {
  background: #393939;
  border-radius: 50px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  float: left;
  min-width: 30px;
  padding: 6px 12px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.news-tags li a:hover {
  background: #4267b2;
}


/*-----------------------------------------
  Logo
------------------------------------------*/
/* Styling for the menu container */
/* Default Styles */
.menu {
display: flex;
flex-direction: row; /* Horizontal by default */
list-style: none;
padding: 0;
margin: 0;
gap: 1rem;
}

.menu-item a {
text-decoration: none;
color: #000;
font-size: 18px;
padding: 0.5rem 1rem;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
transition: background-color 0.3s ease;
}

.menu-item a:hover {
background-color: #eaeaea;
}

/* Logos Container */
.logos-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
padding: 1rem;
margin-top: 20px; /* Add some space between navigation and logos */
}

.logos-list {
display: flex;
flex-wrap: wrap;
gap: 1rem;
list-style: none;
padding: 0;
margin: 0;
}

.logo-item {
display: flex;
justify-content: center;
align-items: center;
width: 250px;
height: 250px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

.logo-item:hover {
transform: scale(1.1); /* Slight zoom effect on hover */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Slight shadow effect */
}

.logo-img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
transition: transform 0.3s ease; /* Smooth transition for the image */
}

.logo-item:hover .logo-img {
transform: scale(1.1); /* Image zoom effect on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
/* Make nav items vertical for mobile */
.menu {
  flex-direction: column; /* Vertical layout */
  align-items: center;
}

.menu-item a {
  width: 100%; /* Full width links */
  text-align: center;
}

/* Logos come below nav and become vertical */
.logos-container {
  flex-direction: column;
  align-items: center;
  margin-top: 30px; /* Add space between nav and logos */
}

.logos-list {
  flex-direction: column;
  align-items: center;
}

.logo-item {
  width: 120px; /* Smaller size for mobile */
  height: 120px;
}
}

@media (max-width: 480px) {
.logo-item {
  width: 250px;
  height: 250px; /* Smaller size for very small screens */
}
}

/*---------------------------------------
    APPOINTMENT             
-----------------------------------------*/

#appointment {
  padding-top: 100px;
}

#appointment label {
  color: #393939;
  font-weight: 500;
}

#appointment .form-control {
  background: #f9f9f9;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 15px;
  transition: all ease-in-out 0.4s;
}

#appointment input,
#appointment select {
  height: 45px;
}

#appointment button#cf-submit {
  background: #a5c422;
  color: #ffffff;
  font-weight: 600;
  height: 55px;
}

#appointment button#cf-submit:hover {
  background: #393939;
  color: #ffffff;
}


/*---------------------------------------
   FOOTER              
-----------------------------------------*/
footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-size: 16px; /* Set a base font size for the footer */
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  font-size: 18px; /* Larger font size for sections */
}

.footer-section h4 {
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px; /* Larger font size for section titles */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
  font-size: 18px; /* Larger font size for list items */
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 18px; /* Larger font size for links */
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
display: flex;
flex-direction: column; /* Stack the text vertically */
justify-content: center; /* Vertically center */
align-items: center; /* Horizontally center */
text-align: center; /* Optional: Center text inside the paragraphs */
}

.footer-bottom p {
  color: #fff; /* Make text inside .footer-bottom white */
}

/* Ensure the content container takes up the full width and centers everything */
.content-container {
max-width: 1200px; /* Or any max-width you'd like */
margin: 0 auto; /* Centers the container */
padding: 20px;
}

/* Style the 'tabler' class that holds the table */
.tabler {
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 20px;
margin-top: 20px;
}

/* Make the table responsive */
table.responsive {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}

table.responsive th, table.responsive td {
padding: 10px;
border: 1px solid #ddd;
}

table.responsive th {
background-color: #f4f4f4;
}

table.responsive a {
color: #007bff; /* Add blue color for links */
text-decoration: none;
}

table.responsive a:hover {
text-decoration: underline;
}

/* Media Queries for Mobile and Smaller Screens */

/* For mobile screens and smaller tablets */
@media (max-width: 768px) {
/* Reduce the padding inside the container */
.content-container {
    padding: 10px;
}

/* Make the table's text and padding smaller */
table.responsive th, table.responsive td {
    padding: 8px;
}

/* Stack the links vertically and adjust font size */
ul {
    padding-left: 20px;
}
ul li {
    font-size: 14px;
}

/* Make the headers more compact */
h2, h3 {
    font-size: 20px;
}

/* Adjust for small screens: make links more clickable and readable */
table.responsive a {
    font-size: 14px;
}
}

/* For very small screens, like phones in portrait orientation */
@media (max-width: 480px) {
/* Further adjust table padding for smaller screens */
table.responsive th, table.responsive td {
    padding: 5px;
}

/* Stack content and make it more compact */
.content-container {
    padding: 5px;
}

/* Ensure the headers are not too large */
h2, h3 {
    font-size: 18px;
}

/* Adjust links font size for readability */
table.responsive a {
    font-size: 12px;
}

/* Stack the unordered list items vertically and adjust font size */
ul li {
    font-size: 12px;
}
}
/* Content container for centering the content */
.content-container {
max-width: 1200px;
margin: 0 auto; /* Centers the container */
padding: 20px;
}

/* Tabler class for wrapping the table */
.tabler {
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 20px;
margin-top: 20px;
}

/* Styling the table for file formats */
table.gridtable {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}

table.gridtable th, table.gridtable td {
padding: 10px;
border: 1px solid #ddd;
}

table.gridtable th {
background-color: #f4f4f4;
}

table.gridtable a {
color: #007bff; /* Blue color for links */
text-decoration: none;
}

table.gridtable a:hover {
text-decoration: underline;
}

/* Media Queries for Mobile View */
@media (max-width: 768px) {
.content-container {
    padding: 10px;
}

table.gridtable th, table.gridtable td {
    padding: 8px;
}

ul {
    padding-left: 20px;
}

ul li {
    font-size: 14px;
}

h2, h3 {
    font-size: 20px;
}

table.gridtable a {
    font-size: 14px;
}
}

@media (max-width: 480px) {
table.gridtable th, table.gridtable td {
    padding: 5px;
}

.content-container {
    padding: 5px;
}

h2, h3 {
    font-size: 18px;
}

table.gridtable a {
    font-size: 12px;
}

ul li {
    font-size: 12px;
}
}



/*---------------------------------------
   SOCIAL ICON              
-----------------------------------------*/

.social-icons {
  display: flex; /* Align icons in a row */
  gap: 10px; /* Space between icons */
  }
  
  .social-icons a {
  color: #000; /* Default icon color */
  text-decoration: none; /* Removes underline */
  font-size: 35px; /* Increase size of the icons */
  }
  
  /* Specific colors for each icon */
  .social-icons a.twitter {
  color: #1DA1F2; /* Light blue for Twitter */
  }
  
  .social-icons a.instagram {
  color: #C13584; /* Royal blue for Instagram */
  }
  
  .social-icons a.youtube {
  color: #FF0000; /* Red for YouTube */
  }
  
/* Ensures icons keep the same color on hover */
.social-icons a:hover {
color: inherit; /* Keeps the color the same on hover */
}
@media (max-width: 768px) {
    .floating-sidebar {
        right: 5px; /* Adjust for smaller screens */
        width: 120px; /* Reduce sidebar width */
    }

    .floating-sidebar h3 {
        font-size: 18px; /* Adjust heading font size */
    }

    .social-icons a {
        font-size: 35px; /* Reduce icon size on smaller screens */
    }
}

@media (max-width: 480px) {
    .floating-sidebar {
        width: 100px; /* Further reduce sidebar width */
    }

    .social-icons a {
        font-size: 30px; /* Further reduce icon size */
    }
}
  

/*---------------------------------------
   RESPONSIVE STYLES              
-----------------------------------------*/

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 1.5em;
  }

  header {
    height: inherit;
  }
  header span.date-icon {
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
  header span.email-icon {
    padding-top: 0;
  }

  .navbar-default .navbar-nav li a {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .slider .item {
    background-position: center;
  }

  header {
    padding-bottom: 10px;
  }
  header .text-align-right {
    text-align: left;
  }
  header span {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
  }
  .navbar-default .navbar-nav li.appointment-btn {
    margin-left: 15px;
  }
  .navbar-default .navbar-nav li a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .news-sidebar {
    margin-top: 2em;
  }

  #appointment-form {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  footer {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .footer-thumb {
    padding-bottom: 10px;
  }

  .border-top {
    text-align: center;
  }

  .copyright-text {
    margin-top: 10px;
  }

  .angle-up-btn {
    bottom: 10em;
  }
}

@media only screen and (max-width: 639px) {
  h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
  h2 {
    font-size: 2.1em;
  }
  h4 {
    font-size: 1.4em;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

}

