.about-section {
    background: #f7f8fd;
}

/* Image */
.about-img {
    background: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img img {
    border-radius: 20px;
}

/* Tag */
.about-tag {
    display: inline-block;
    background: #ffe6ef;
    color: #e91e63;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* Title */
.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.about-subtitle {
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.about-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333;
}

.about-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Button */
.view-more-btn {
    background: linear-gradient(45deg, #00b4d8, #0096c7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.view-more-btn:hover {
    background: linear-gradient(45deg, #0096c7, #0077b6);
    color: #fff;
}

.counter-section {
    background: #f7f8fd;
}

.counter-box {
    background: transparent;
}

.counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.counter-icon i {
    font-size: 24px;
    color: #00a4e9;
}

.counter {
    font-size: 40px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.achievement-section {
    background: #f7f8fd;
    padding: 60px 0;
}

/* Award Image */
.award-image-box {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Section subtitles */
.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Research title */
.research-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Custom list */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
}

.text-justify {
    text-align: justify;
}

.btn-info {
    background-color: #17a2b8;
    border: none;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background-color: #138496;
    transform: translateX(5px);
}

.ratio iframe {
    transition: transform 0.3s ease;
}

.video-heading-background {
    background: #e9398b;
}

.ratio:hover iframe {
    transform: scale(1.02);
}

/* Navbar CSS */
.main-navbar {
    background: #f6f7fb;
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 80px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}



.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #f1f1f1;
}

.appointment-btn-navbar {
    background: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.appointment-btn-navbar:hover {
    background: #d81b60;
    color: #fff;
}


/* Contact Page Styling */
:root {
    --theme: #ea3076;
}

body {
    background: #f8f9fa;
}

.section-title {
    color: var(--theme);
    font-weight: 700;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-card i {
    font-size: 32px;
    color: var(--theme);
    margin-bottom: 10px;
}

.contact-card a {
    text-decoration: none;
    color: #333;
    display: block;
    margin-top: 5px;
}

.contact-card a:hover {
    color: var(--theme);
}

.form-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border-radius: 8px;
    height: 45px;
}

.btn-theme {
    background: var(--theme);
    color: #fff;
    border-radius: 30px;
    padding: 10px 35px;
}

.btn-theme:hover {
    background: #c92461;
}

iframe {
    border-radius: 15px;
}

/* Footer Section */
.footer-section {
    background: #1a1d23;
    color: #fff;
    padding: 60px 0 0 0;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0L93.3 25v50L50 100 6.7 75V25z" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.05"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-section * {
    position: relative;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-text {
    color: #b8b8b8;
    line-height: 1.9;
    text-align: justify;
}

.footer-link {
    color: #b8b8b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-link:hover {
    color: #e91e63;
    transform: translateX(5px);
}

.footer-link i {
    color: #e91e63;
    font-size: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2d35;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #e91e63;
    transform: translateY(-3px);
}

.opening-hours {
    border-bottom: 1px solid #3a3d45;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.opening-hours:last-child {
    border-bottom: none;
}

.info-bar {
    background: linear-gradient(135deg, #e91e63 0%, #f063a8 100%);
    padding: 25px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-content h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.info-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.copyright {
    background: #0f1115;
    padding: 20px 0;
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    color: white;
    font-size: 30px;
}

.whatsapp-text {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    background: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: #c2185b;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .info-bar {
        padding: 20px 0;
    }

    .info-item {
        margin-bottom: 20px;
    }

    .whatsapp-text {
        display: none;
    }
}