*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: white;
    line-height: 1.6;
}
header{
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.container{
    width:90%;
    margin:auto;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0;
}

/* Logo Section */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:50px;
    height:50px;
    margin-right:10px;
}

.logo-text h2{
    font-size:18px;
    color:#0a5c36;
}

.logo-text p{
    font-size:12px;
    color:#555;
}

/* Navigation */
nav a{
    text-decoration:none;
    margin:0 10px;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#0a5c36;
}

/* Icons */
.icons a{
    margin-left:10px;
    font-size:18px;
    color:#0a5c36;
    transition:0.3s;
    margin: 15px;
}

.icons a:hover{
    color:#ff6600;
}

/* Responsive */
@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:10px;
    }
}

/* Hero Section */
.hero{
    height: 90vh;
    background: linear-gradient(rgba(0, 92, 54, 0.7), rgba(0, 92, 54, 0.7)),
                url("image/1.jpeg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content{
    max-width: 700px;
}

.hero h1{
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn{
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.call-btn{
    background: #ffffff;
    color: #0a5c36;
}

.book-btn{
    background: #ff6600;
    color: white;
}

.btn:hover{
    opacity: 0.85;
}

/* Responsive */
@media(max-width:768px){
    .hero h1{
        font-size: 28px;
    }

    .hero p{
        font-size: 16px;
    }
}

/* Initially hide the form */
.appointment-section {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease;
}

/* When #contact is targeted via anchor link */
:target {
    opacity: 1;
    max-height: 2000px;
    padding: 80px 20px;
}

/* Form container styling */
.appointment-container {
    max-width: 550px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Headings & paragraph */
.appointment-container h2 {
    text-align: center;
    font-size: 28px;
    color: #1a73e8;
    margin-bottom: 10px;
}

.appointment-container p {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* Form fields */
.appointment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.2);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit button */
.appointment-form button {
    width: 100%;
    padding: 15px;
    background: #1a73e8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.appointment-form button:hover {
    background: #155ab6;
    transform: translateY(-2px);
}

#address, #pincode {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#address:focus, #pincode:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.2);
}

/* Container */
.multi-select-dropdown {
    width: 100%;
    max-width: 400px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Clickable box */
.select-box {
    padding: 12px 15px;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

/* Dropdown checkboxes (hidden by default) */
.checkboxes {
    display: none;
    flex-direction: column;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Show checkboxes on hover */
.multi-select-dropdown:hover .checkboxes {
    display: flex;
}

/* Each checkbox label */
.checkboxes label {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.checkboxes label:last-child {
    border-bottom: none;
}

/* Checkbox style */
.checkboxes input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #1a73e8;
}

/* services section */
.services {
    padding: 60px 20px;
    background: #f9f9f9;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.services-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.services-content {
    flex: 1;
    min-width: 300px;
}

.services-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.services-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

/*services section responsive */
.services2 {
    padding: 60px 20px;
    background: #f4f8fb;
}

.services2-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.services2-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services2-content {
    flex: 1;
    min-width: 300px;
}

.services2-content h2 {
    font-size: 32px;
    color: #1d3c6a;
    margin-bottom: 20px;
}

.services2-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services2-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.services2-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.about h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about h2 span {
    color: #1d75bd;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact {
    padding: 60px 20px;
    background: #f0f8ff;
    color: #333;
}

.contact-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1d3c6a;
}

.contact h2 span {
    color: #1d75bd;
}

.contact p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    min-width: 250px;
}

.contact-item i {
    font-size: 28px;
    color: #1d75bd;
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-text p a {
    text-decoration: none;
    color: #1d75bd;
    font-weight: 500;
}

.contact-buttons .btn {
    margin: 10px;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.contact-buttons .call-btn {
    background: #28a745;
}

.contact-buttons .call-btn:hover {
    background: #218838;
}

.contact-buttons .book-btn {
    background: #007bff;
}

.contact-buttons .book-btn:hover {
    background: #0056b3;
}

.footer {
    background: #1d3c6a;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1d75bd;
}

.footer-left p {
    font-size: 14px;
    color: #dfe6f0;
}

.footer-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-right .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-right .social-icons a:hover {
    color: #1d75bd;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #cfd8dc;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        margin-top: 20px;
    }
}

.auth-modal{
  display:none;
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  top:0;
  left:0;
  z-index:999;
}

.auth-box{
  background:#fff;
  width:380px;
  padding:25px;
  border-radius:10px;
  margin:6% auto;
  position:relative;
  animation:fadeIn .3s ease;
}

@keyframes fadeIn{
  from{transform:scale(0.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.auth-tabs{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}

.auth-tabs button{
  width:50%;
  padding:8px;
  border:none;
  background:#eee;
  cursor:pointer;
}

.auth-tabs .active{
  background:#28a745;
  color:#fff;
}

.auth-form{
  display:none;
}

.auth-form.active{
  display:block;
}

.auth-form input{
  width:100%;
  padding:8px;
  margin:8px 0;
  border:1px solid #ccc;
  border-radius:5px;
}

.auth-btn{
  width:100%;
  padding:10px;
  background:#28a745;
  color:#fff;
  border:none;
  border-radius:5px;
  cursor:pointer;
}

.divider{
  text-align:center;
  margin:10px 0;
  color:#777;
}

.close-btn{
  position:absolute;
  right:15px;
  top:10px;
  font-size:20px;
  cursor:pointer;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.back-to-top a {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background: linear-gradient(135deg, #2e59d9, #17a673);
    transform: translateY(-3px);
}

/* ===== STAFF ===== */
.staff {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.staff h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.staff p {
    color: #555;
    margin-bottom: 30px;
}

.staff-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.staff-member {
    background: #fff;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.staff-member img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.staff-member h3 {
    margin: 4px 0;
    font-size: 16px;
}

.staff-member p {
    font-size: 13px;
    color: #777;
}

.delete-btn {
    margin-top: 8px;
    padding: 5px 8px;
    font-size: 12px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
}

/* ===== CAREERS ===== */
.careers {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.careers h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.careers p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.job-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.job-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.job-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #007bff;
}

.job-card p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.job-card button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.job-card button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .staff-members,
    .job-cards {
        flex-direction: column;
        align-items: center;
    }
}








#adminBtn{
    background: linear-gradient(135deg, #1d75bd, #28a745);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#adminBtn:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #155ab6, #1e8e3e);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

#adminBtn:active{
    transform: scale(0.98);
}









/* ================= HOSPITAL LIST ================= */
#hospitalList{
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#hospitalList li{
    width: 100%;
    max-width: 700px;

    background: #ffffff;
    margin: 12px 0;
    padding: 18px 20px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.3s;
    cursor: pointer;

    border-left: 5px solid #1d75bd;
}

#hospitalList li:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* hospital name */
#hospitalList li span{
    font-size: 18px;
    font-weight: 600;
    color: #1d3c6a;
}

/* delete button */
#hospitalList button{
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
}

#hospitalList button:hover{
    background: #c0392b;
}


/* Whole profile center container */
.profile-container{
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Hospital image */
#image{
    width: 100%;
    max-width: 600px;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* Hospital name */
#name{
    font-size: 50px;
    font-weight: 700;
    color: #1d3c6a;
    margin-bottom: 10px;
}

.info{
    text-align: center;
    font-size: 16px;
    margin: 8px 0;
    color: #333;
}
/* Back button center */
.back-btn{
    display: block;
    margin: 25px auto;
    background: #1d3c6a;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.back-btn:hover{
    background: #14294a;
    transform: scale(1.05);
}
.card{
    text-align: center;
}

/* image center already, but ensure */
#image{
    display: block;
    margin: 20px auto;
}

/* paragraphs center */
.card p{
    text-align: center;
    font-size: 16px;
    margin: 8px 0;
    color: #333;
}

/* bold labels style */
.card b{
    color: #1d3c6a;
}











/* ===== MODAL BACKDROP ===== */
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* ===== MODAL BOX ===== */
.modal-content{
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: popup 0.3s ease;
    text-align: center;
}

/* ===== TITLE ===== */
.modal-content h2{
    font-size: 22px;
    color: #1d3c6a;
    margin-bottom: 15px;
}

/* ===== CLOSE BUTTON ===== */
.close-modal{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.close-modal:hover{
    color: red;
}

/* ===== INPUT FIELDS ===== */
.modal-content input,
.modal-content textarea{
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #d6e2f0;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus{
    border-color: #1d75bd;
    box-shadow: 0 0 6px rgba(29,117,189,0.2);
}

/* ===== BUTTON ===== */
.modal-content button{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #1d75bd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-content button:hover{
    background: #155a91;
}

/* ===== FOUNDER LOGIN BUTTON ===== */
#founderLoginBtn{
    justify-content: center;
    margin-top: 10px;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

#founderLoginBtn:hover{
    background: #1e7e34;
}

/* ===== ANIMATION ===== */
@keyframes popup{
    from{
        transform: scale(0.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}




/* ===== FORM CONTAINER ===== */
.staff-form{
    max-width: 500px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

/* ===== TITLE ===== */
.staff-form h2{
    font-size: 22px;
    color: #1d3c6a;
    margin-bottom: 15px;
}

/* ===== INPUT FIELDS ===== */
.staff-form input,
.staff-form textarea{
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0;
    border: 1px solid #d6e2f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* focus effect */
.staff-form input:focus,
.staff-form textarea:focus{
    border-color: #1d75bd;
    box-shadow: 0 0 6px rgba(29,117,189,0.2);
}

/* textarea height */
.staff-form textarea{
    resize: none;
    min-height: 80px;
}

/* ===== SUBMIT BUTTON ===== */
.staff-form button{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #1d75bd;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.staff-form button:hover{
    background: #155a91;
    transform: translateY(-2px);
}

/* ===== PLACEHOLDER STYLE ===== */
.staff-form input::placeholder,
.staff-form textarea::placeholder{
    color: #999;
    font-size: 13px;
}









/* ===== ADD HOSPITAL FORM BOX ===== */
#adminPanel{
    max-width: 500px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

/* Heading */
#adminPanel h3{
    font-size: 24px;
    color: #1d3c6a;
    margin-bottom: 20px;
}

/* Inputs & textarea */
#adminPanel input,
#adminPanel textarea{
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

#adminPanel input:focus,
#adminPanel textarea:focus{
    border-color: #1a73e8;
    box-shadow: 0 0 8px rgba(26,115,232,0.2);
}

/* Button */
#adminPanel button{
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: linear-gradient(135deg, #1a73e8, #00c6ff);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#adminPanel button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Labels look (optional spacing fix) */
#adminPanel br{
    display: none;
}

/* Animation */
@keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}




/* Section Background */
.about2 {
  padding: 60px 20px;
  background: linear-gradient(to right, #e6f7ff, #f9fcff);
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.about2-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.about2 h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.about2 h2 span {
  color: #0077b6;
  font-weight: 600;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Cards */
.about-box {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 119, 182, 0.15);
}

/* Top Border Accent */
.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #0077b6, #00b4d8);
}

/* Card Titles */
.about-box h3 {
  color: #0077b6;
  margin-bottom: 12px;
  font-size: 20px;
}

/* List Styling */
.about-box ul {
  padding-left: 18px;
}

.about-box ul li {
  margin-bottom: 8px;
  color: #444;
  line-height: 1.5;
  position: relative;
}

/* Custom Bullet */
.about-box ul li::marker {
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
  .about2 h2 {
    font-size: 26px;
  }

  .about-box {
    padding: 20px 15px;
  }
}






/* Section */
.about3 {
  padding: 90px 20px;
  background: #f4fbff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.about3-container {
  max-width: 800px;
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 119, 182, 0.1);
  transition: 0.3s ease;
}

/* Hover effect */
.about3-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

/* Icon Circle */
.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: -80px auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Heading */
.about3 h2 {
  font-size: 30px;
  color: #0077b6;
  margin-bottom: 15px;
}

/* Paragraph */
.about3 p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

/* Quote effect */
.about3 p::before {
  content: "“";
  font-size: 40px;
  color: #00b4d8;
}

.about3 p::after {
  content: "”";
  font-size: 40px;
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
  .about3-container {
    padding: 40px 20px;
  }

  .about3 h2 {
    font-size: 24px;
  }

  .about3 p {
    font-size: 16px;
  }
}


/* Section Background */
.about4 {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fdfbfb, #ebf7ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.about4-container {
  max-width: 850px;
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}

/* Glow Border Effect */
.about4-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Hover */
.about4-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

/* Icon */
.vision-icon {
  font-size: 45px;
  margin-bottom: 15px;
  animation: float 2.5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Heading */
.about4 h2 {
  font-size: 30px;
  color: #0077b6;
  margin-bottom: 15px;
}

/* Paragraph */
.about4 p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
}

/* Highlight line */
.about4 p::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4d8;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .about4-container {
    padding: 40px 20px;
  }

  .about4 h2 {
    font-size: 24px;
  }

  .about4 p {
    font-size: 16px;
  }
}



/* Section */
.about5 {
  padding: 80px 20px;
  background-color: #f8fafc;
}

/* Container */
.about5-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* Icon */
.values-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Heading */
.about5 h2 {
  font-size: 26px;
  color: #1f2937;
  margin-bottom: 25px;
  font-weight: 600;
}

/* List */
.about5 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items */
.about5 ul li {
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  line-height: 1.6;
  font-size: 16px;
}

/* Remove last border */
.about5 ul li:last-child {
  border-bottom: none;
}

/* Highlight titles */
.about5 ul li strong {
  color: #0f172a;
  font-weight: 600;
}

/* Subtle spacing */
.about5 ul li + li {
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about5-container {
    padding: 30px 20px;
  }

  .about5 h2 {
    font-size: 22px;
  }

  .about5 ul li {
    font-size: 15px;
  }
}