* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {

  background: #efefef;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {

 
  max-width: 1365px;
  margin: auto;
  background: #fff;
 
}

/* Top Header */
.top-header {
  background: #23284d;
  color: #fff;
  padding: 10px 18px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 30px;
  font-size: 12px;
  font-weight: 400;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-header {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 5px;
  padding: 5px 0 5px;
}

.logo-box {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.white-bg {
 
  border-radius:8px;
  padding: 5px;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  text-align: center;
margin:0px;
}

.site-title h1 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  line-height: 2;
align:center;
padding:5px 10px;
}




/* Navbar */
.navbar {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: bold;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding:0px 12px;

}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 18px 12px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.menu > li > a:hover {
  color: #1c53a3;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 12px 14px;
  color: #222;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.submenu li a:hover {
  background: #f2f6fb;
  color: #1c53a3;
}

.dropdown:hover .submenu {
  display: block;
}

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 1fr 330px;
  min-height: 420px;
}

.slider-section {
  background: #fff;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Important Links */
.important-links {
  background: #22315b;
  color: #fff;
  position: relative;
}

.important-links h2 {
  text-align: center;
  font-size: 30px;
  padding: 22px 10px 14px;
  font-weight: 700;
}

.links-box {
  background: #fff;
  margin: 0 14px 14px;
  border: 1px solid #d8d8d8;
  max-height: 600px;
  overflow-y: auto;
  padding: 10px 12px;
}

.links-box ul li {
  border-bottom: 1px solid #e4e4e4;
  padding: 15px 2px;
}

.links-box ul li:last-child {
  border-bottom: none;
}

.links-box ul li a {
  color: #1b60c7;
  font-size: 16px;
  line-height: 1.45;
}

.new-badge {
  display: inline-block;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-right: 6px;
  font-weight: bold;
}

.side-arrow {
  position: absolute;
  top: 90px;
  right: -18px;
  width: 28px;
  height: 48px;
  background: #79a8c0;
  color: #fff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content{
width:100%;
height:auto;
padding:0px;
margin:0px;
}
.content img{
border: 1px solid white;
padding:0px;
margin-top:10px;


}

/* Footer */
.footer {
  background: #23284d;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-header {
    grid-template-columns: 160px 1fr 160px;
  }

  .logo-box {
    width: 160px;
    height: 160px;
  }

  .govt-circle {
    width: 130px;
    height: 130px;
  }

  .site-title h1 {
    font-size: 28px;
  }

  .main-content {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
  }

  .main-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-box {
    margin: auto;
  }

  .site-title h1 {
    font-size: 23px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {

    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .menu.show {
    display: flex;
  }

  .menu > li {
  
width:100%;

}
  .menu > li > a {
 width:100%;
    padding: 14px 18px;
    border-top: 1px solid #eee;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .dropdown.active .submenu {
    display: block;
  }

  .dropdown:hover .submenu {
    display: none;
  }

  .slide {
    height: 280px;
  }

}

             


  /* CONTENT SECTION */
                   .content {
                        margin: 10px;
                        display: flex;
                        align-items: flex-start;
                        gap: 20px;
                        border: 4px solid #4CAF50;
                        border-radius: 8px;
                        overflow: hidden;
                        box-shadow: 0 4px 8px rgba(0,0,0,0.1);

                    }

                        .content img {
                            width: 300px;
                            height: 300px;
                            border-radius: 10px;
                            object-fit: cover;
                            padding: 20px 20px;
                            margin: 50px;
                            align: left;
                        }

                    .content-text {
                        max-width: 800px;
                        font-family: Arial, Helvetica, sans-serif;
                        font-size: 16px;
                        color: #333333;
                        line-height: 1.5;
                        letter-spacing: 1px;
                        text-align: left;
                        padding:50px 15px;

                       
                    }


                    #h1 {
                        color: light pink;
                        font-size: 22px;
                    }

                    table {
                        width: 100%;
                        border-collapse: collapse;
                        text-align: center;
                    }

                    td {
                        width: 33.33%;
                        padding: 10px;
                        margin: 0px;
                        align: left;
                    }

                    .department ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        max-width: 300px;
                        border: 4px solid #4CAF50;
                        border-radius: 8px;
                        overflow: hidden;
                        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                    }

                        .department ul li {
                            padding: 20px 10px;
                            border-bottom: 1px solid #ddd;
                            background-color: #e0f0d9;
                            transition: background-color 0.3s ease;
                            font-family: "Playfair Display", serif;
                            font-size: 20px;
                            color: dark gray;
                        }

                    .department li:last-child {
                        border-bottom: none;
                    }

                    .department li:hover {
                        background-color: #2c6e49;
                        cursor: pointer;
                    }
                    /*.department{
                background-color: #f0f8ff; /* Soft blue background */
                    padding: 30px;
                    text-align: center;
                    border-radius: 12px;
                    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                    max-width: 600px;
                    margin: 40px;
                    }

                    */
                    .department {
                      
                        border-radius: 20px;
                        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
                        transition: transform 0.3s ease;
                        background-color: #2c6e49;
                        align: left;
                        margin: 0px;
                        padding: 5px 5px;
                        font-family: "Dancing Script", cursive;
                        
                    }

                    .department img:hover {
                        transform: scale(1.02);
                    }

                    .fancy-heading {
                        align: center;
                        margin: 0px;
                        padding: 0px;
                        font-size: 4em;
                        color: white;
                        margin-bottom: 0px;
                        font-family: "Allura", cursive;
                        text-shadow: 2px 2px 2px rgba(0,0,0,0.1);
                    }

                        .fancy-heading img {
                            align: left;
                            margin: 0px;
                            padding: 0px;
                        }

                    .department {
                        background-color: #2c6e49;
                    }

               


                    button {
                        width: 170px; /* sets button width */
                        height: 50px; /* sets button height */
                        font-size: 14px; /* controls text size */
                        background-color: #e0f0d9;
                        color: gray;
                        border: 2px solid gray;
                        border-radius: 5px; /* rounded corners */
                        cursor: pointer;
                        font-weight: 70%;
                    }

                        button:hover {
                            background-color: #b33a3a; /* darker on hover */
                        }

        .testimonial-section {
                        padding: 60px 20px;
                        text-align: center;
                        background-color: #fff;
                    }

                        .testimonial-section h2 {
                            font-family: "Playfair Display", serif;
                            color: #a52a2a;
                            font-size: 36px;
                            margin-bottom: 40px;
                        }

                    .testimonial-container {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: center;
                        gap: 20px;
                    }

                    .testimonial-card {
                        background-color: #fff8f0;
                        border: 1px solid #e2c4b6;
                        border-radius: 15px;
                        width: 280px;
                        padding: 25px;
                        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                    }

                        .testimonial-card:hover {
                            transform: translateY(-8px);
                            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
                        }

                        .testimonial-card img {
                            width: 200px;
                            height: 150px;
                            border-radius: 50%;
                            object-fit: cover;
                            margin-bottom: 15px;
                            border: 2px solid #a52a2a;
                        }

                        .testimonial-card p {
                            font-size: 15px;
                            color: #555;
                            line-height: 1.6;
                            margin-bottom: 15px;
                        }

                        .testimonial-card h3 {
                            margin: 0;
                            color: #a52a2a;
                            font-size: 18px;
                        }

                        .testimonial-card span {
                            color: #777;
                            font-size: 14px;
                        }

                    @media (max-width: 768px) {
                        .testimonial-container {
                            flex-direction: column;
                            align-items: center;
                        }
                    }

   .contact-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: #f7f7f7;
    font-family: Arial, sans-serif;
}

.contact-form,
.contact-info {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.contact-form h4,
.contact-info h4 {
    margin-bottom: 20px;
    color: #2e7d32;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 25px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #1b5e20;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-info i {
    color: #2e7d32;
    margin-right: 10px;
    font-size: 16px;
}



 /* FOOTER */
                 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hospital-footer {
    background: #0c3c60;
    color: #fff;
    padding: 40px 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-left {
    width: 40%;
    padding: 20px;
}

.footer-left h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-left p {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-left i {
    margin-right: 10px;
    color: #ffcc00;
}

.location {
    font-weight: 500;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
}
.useful-links{
 color: #ffd700;
 font-size: 18px;
    margin-top: 15px;
}
.useful-links p{
 color: #ffd700;
 font-size: 14px;
    margin-top: 20px;
}
.useful-links li a{
list-style:none;

color:#fff;
 font-size: 14px;
padding:0px;
}
.useful-links li a:hover{
  background:#0056b3;
}
.link-btn {
  text-decoration: none;

  color: white;
  padding: 5px 5px;
  border-radius: 6px;
  font-size: 16px;
}

.link-btn:hover {
  background: #0056b3;
}
.footer-right {
    width: 60%;
    padding: 20px;
}

.footer-right iframe {
    width: 100%;
    height:700px;
    border: 0;
    border-radius: 10px;
}

.footer-bottom {
width:100%;
    text-align: center;
    padding: 15px;
    background: #082a44;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-left,
    .footer-right {
        width: 100%;
    }
}
    .footer-right iframe {
        height: 220px;
    }

