/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and container setup */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Header styles */
header{
  width:100%;
  height: 100vh;
  background:linear-gradient(rgba(0,0,0,0.8),rgba(146, 143, 143, 0.2)),
          url('images.jpeg');
  background-size:cover ;
 
}
nav{
  width:100%;
  height:100px;
  
  color: rgb(255, 253, 253);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
button{
  background-color: #ff6347;
  color: #fff;
  border: none;
  padding: 0.7rem 1.7rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover{
  background-color: #00d0ff;
  color: black;
}
.logo{
  font-size: x-small;
  letter-spacing:2px ;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.menu a{
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  font-size: 20;
}
  
.menu a:hover:before{
  width:90%;
}
.register a{
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  font-size: 20;
  background: indianred;
  border-radius: 8px;
  transition:0.4s;
}
.register a:hover{
  background: transparent;
  border: 1px solid indianred;
}
.h-txt{
  font-family:Arial, Helvetica, sans-serif;
  max-width: 650px;
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  text-align: center;
  background:linear-gradient(rgba(39, 36, 36, 0.8),rgba(0,0,0,0.2));
  color: rgb(251, 247, 247);
 
background-size:cover ;
}
.h-txt a{
  background: indianred;
  border-radius: 4px;
  color: #f9f9fb;
  font-size: x-large;
  justify-content: space-around;
  text-decoration: none;
}
.h-txt h1{
font-size:3.5em;
}
.h-txt span{
  letter-spacing:5px;
}
.logo img{
    height:100px;
  width:100px;
  border-radius:50%;
    padding: auto;
   
    margin-top: 0cap;
}

#categories{
    padding: 50px;
    background-color: #f4f4f4;
    background:linear-gradient(rgba(0,0,0,0.8),rgba(226, 217, 217, 0.2)),
          url('gir.jpeg');
          background: cover;
  }
  #categories h2{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f7f6f6;
  }
  .categories-card{
    background: #f4f1f1;
    border: 2px solid#ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);}
    .menu a:hover{
      color: #ff6347;
    }
   
  
  .categories-card h3{
    font-size: 1.8rem;
    color: #007bff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .categories-card p{
    font-size: 1.1rem;
    color:#555;
    margin: 5px;
  }
  /* Main section overview */
#branches {
    text-align: center;
    background-color: #e3e3e3;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    padding: 50px;
    background-color: #f4f4f4;
    font-size: x-large;
}
#branches p{
  color: #909898;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/* Branch list */

#branch-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.branch h2{
text-align: center;
}
.branch p{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: x-large;
}
.branch-item {
    background-color: #b69292;
    padding:0 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #f0e5e5;
    border: 2px solid#ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    width: 250px;
 
}

.branch-item h3 {
    color: #007bff;
    font-size: 1.8rem;
    
}

.branch-item p {
    margin: 0.25rem 0;
    font-size: 1.1rem;
    color:#555;
    margin: 5px;
}
#timing-section {
    padding: 50px 0;
    background-color: #f4f4f9;
    text-align: center;
  }
 
  
  .scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff5733 transparent;
  }
  
  .scroll-container::-webkit-scrollbar {
    height: 8px;
  }
  
  .scroll-container::-webkit-scrollbar-thumb {
    background-color: #ff5733;
    border-radius: 10px;
  }
  
  .scroll-container::-webkit-scrollbar-track {
    background-color: #f4f4f9;
  }
  
  .timing-card {
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .timing-card:hover {
    transform: scale(1.05);
  }
  
  .timing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  
  
  .timing-card p {
    padding: 0 20px;
    font-size: 1em;
    color: #666;
  }
  
  .read-more {
    text-decoration: none;
    color: #fff;
    background-color: #ff5733;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #ff704d;
  }
  footer {
    background-color: #151515;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #0066cc;
}

/* Section styles */
section {
    margin-top: 30px;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.container{
  background-color: #b69292;
  background:linear-gradient(rgba(39, 36, 36, 0.8),rgba(0,0,0,0.2));
  
}
.container h2{
 font-family: 'Times New Roman', Times, serif;
 font-style: oblique;
 text-size-adjust: 300px;
}
#events{
  background:linear-gradient(rgba(40, 38, 38, 0.8),rgba(66, 61, 61, 0.2)),
          url('im4.jpeg');
  background-size:cover ;
  

}
#events li,p{
  color: #ddd;
}



ul {
    list-style: none;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

ul li a {
    color: #0066cc;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
  background-color: #151515;
  color: white;
  padding: 30px 0;
  text-align: center;
  margin-top: 50px;
}

.footer-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 16px;
}

.footer-content .socials {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.footer-content .socials li {
  margin: 0 10px;
}

.footer-content .socials a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-content .socials a:hover {
  color: #ff6347;
}

.footer-bottom {
  background-color: #9e9e9e;
  padding: 10px 0;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.socials img{
  width: 45px;
  transition: transform 0.3s ease
}

.socials img:hover{
  transform: scale(1.08);
}
.container h2{
  font-size: x-large;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
  background-color: #e3e3e3;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  padding: 50px;
 }
 .events li{
    color: #ccc7c7;
 }
