@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');


:root {
    --primary-blue: #0099CC;
    --dark-blue: #1e3a5f;
    --accent-red: #CC3333;
    --light-gray: #f8f9fa;
}

/* Navbar Styles */
.navbar {
    background: rgba(84, 116, 149, 0.95);
    /* background:#a4bcd400 !important; */

    backdrop-filter: blur(10px);
    /* padding: 15px 0; */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: -100px !important;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    /* color: rgba(255, 255, 255, 0.8) !important; */
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    color: white !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 153, 204, 0.1);
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
}

.navbar-toggler {
    border-color: var(--primary-blue);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 153, 204, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: white;
}

.vsn-hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, var(--dark-blue) 50%, #152a47 100%);
    min-height: 100vh;
    overflow: hidden;
}

.vsn-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.vsn-shape-element {
    position: absolute;
    opacity: 0.08;
    animation: vsn-float-animation 25s infinite ease-in-out;
}

.vsn-shape-element:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.vsn-shape-element:nth-child(2) {
    top: 60%;
    right: 12%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 50%;
    animation-delay: 7s;
}

.vsn-shape-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    animation-delay: 14s;
}

.vsn-shape-element:nth-child(4) {
    top: 40%;
    right: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80, var(--primary-blue));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 3s;
}

@keyframes vsn-float-animation {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(-25px, 25px) rotate(180deg) scale(0.9);
    }

    75% {
        transform: translate(25px, 30px) rotate(270deg) scale(1.05);
    }
}

.vsn-main-container {
    position: relative;
    z-index: 2;
    /* padding: 100px 0 50px 0; */
    /* Added top padding for fixed navbar */
}

.vsn-header-section {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.vsn-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    /* text-shadow: 0 5px 15px rgba(0, 153, 204, 0.3); */
    animation: vsn-title-glow 3s ease-in-out infinite;
}

@keyframes vsn-title-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 153, 204, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(0, 153, 204, 0.6));
    }
}

.vsn-subtitle-text {
    color: var(--light-gray);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.vsn-profile-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vsn-profile-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 204, 0.1), transparent);
    transition: left 0.7s ease;
}

.vsn-profile-showcase:hover::before {
    left: 100%;
}

.vsn-profile-showcase:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 153, 204, 0.3);
    box-shadow: 0 35px 100px rgba(0, 153, 204, 0.3);
}

.vsn-profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.vsn-doctor-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.vsn-doctor-name::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
    border-radius: 2px;
}

.vsn-tagline {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 30px;
}

.vsn-biography-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 2;
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
}

.vsn-stats-showcase {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.vsn-stat-item {
    text-align: center;
    padding: 35px;
    background: rgba(0, 153, 204, 0.05);
    border-radius: 25px;
    min-width: 220px;
    border: 1px solid rgba(0, 153, 204, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vsn-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vsn-stat-item:hover::before {
    transform: scaleX(1);
}

.vsn-stat-item:hover {
    background: rgba(0, 153, 204, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 153, 204, 0.2);
}

.vsn-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.vsn-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-top: 15px;
    font-weight: 400;
}

.vsn-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.vsn-info-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vsn-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.15), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.vsn-info-card:hover::after {
    width: 200px;
    height: 200px;
}

.vsn-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(0, 153, 204, 0.3);
}

.vsn-card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vsn-card-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.vsn-card-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.vsn-badge-item {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(0, 153, 204, 0.15);
    color: var(--primary-blue);
    border-radius: 30px;
    margin: 6px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 153, 204, 0.3);
    transition: all 0.3s ease;
}

.vsn-badge-item:hover {
    background: rgba(0, 153, 204, 0.25);
    transform: scale(1.05);
}

.vsn-vision-section {
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.08), rgba(204, 51, 51, 0.08));
    border-radius: 40px;
    padding: 60px;
    border: 2px solid rgba(0, 153, 204, 0.2);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.vsn-vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.1) 0%, transparent 70%);
    animation: vsn-pulse-bg 8s ease-in-out infinite;
}

@keyframes vsn-pulse-bg {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.vsn-vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vsn-highlight-box {
    background: rgba(255, 255, 255, 0.06);
    border-left: 5px solid var(--primary-blue);
    padding: 25px 35px;
    margin: 25px 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vsn-highlight-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.vsn-highlight-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vsn-highlight-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.9;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .vsn-main-title {
        font-size: 3rem;
    }

    .vsn-doctor-name {
        font-size: 2.5rem;
    }

    .vsn-profile-showcase {
        padding: 40px 30px;
    }

    .vsn-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vsn-main-title {
        font-size: 2.2rem;
    }

    /* .vsn-main-container {
        padding: 30px 0;
    } */

    .vsn-profile-showcase,
    .vsn-vision-section {
        padding: 30px 20px;
    }

    .vsn-stat-number {
        font-size: 2.5rem;
    }
}




/* video   */
.video-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.responsive-video {
    width: 100%;
    height: auto;
    max-width: 1600px;
    /* For large screens */
    max-height: 600px;
    /* For large screens */
    object-fit: cover;
    display: block;
}

/* For mobile devices – full width & auto height */
@media (max-width: 768px) {
    .responsive-video {
        width: 100%;
        height: auto;
        max-height: none;
    }
}

/* For medium screens like tablets */
@media (min-width: 769px) and (max-width: 1200px) {
    .responsive-video {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

.video-section {
    margin-top: 90px !important
}

.lead {
    color: white !important;

}

background-color: #1e3a5f;

/* gallery section  */
/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    /* background: var(--light-gray); */
    background-color: #1e3a5f !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 153, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

#contact {
    background-color: #08273a !important;
}


.contact-section {
    padding: 80px 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    width: 40px;
}

.contact-form {
    padding: 40px;
    background: var(--primary-blue);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 153, 204, 0.25);
}

/* Footer */
footer {
    background: var(--dark-blue);
    /* color: white; */
    color: var(--primary-blue) !important;
    padding: 40px 0 20px;
}

.footer_about_section {
    color: white !important;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}



/* gallery section  */
.gallery-section {
    position: relative;
    padding: 80px 0;
    background-color: #1e3a5f !important;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(74, 222, 128, 0.3);
    border-color: rgba(74, 222, 128, 0.5);
}

/* Grid Layout Variations */
.gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(9) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(10) {
    grid-column: span 6;
    grid-row: span 1;
}

.gallery-item:nth-child(11) {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item:nth-child(12) {
    grid-column: span 4;
    grid-row: span 2;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:nth-child(1) .image-wrapper,
.gallery-item:nth-child(4) .image-wrapper,
.gallery-item:nth-child(7) .image-wrapper,
.gallery-item:nth-child(8) .image-wrapper,
.gallery-item:nth-child(11) .image-wrapper {
    min-height: 450px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 211, 238, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .image-placeholder::before {
    opacity: 1;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.gallery-item:hover .placeholder-icon {
    transform: scale(1.1) rotate(5deg);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.overlay-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
}

.modal-content-wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 211, 238, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 6rem;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-detail-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 1rem;
}

.modal-detail-item i {
    color: #4ade80;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-item {
        grid-column: span 6 !important;
        grid-row: span 1 !important;
    }

    .image-wrapper {
        min-height: 300px !important;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        grid-column: span 12 !important;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .modal-content-wrapper {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        padding: 10px;
        gap: 15px;
    }

    .modal-content-wrapper {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}




/* index stylings  */
/* Section background & padding */
.about-section {
    padding: 80px 0;
    /* background: #f8f9fa; light gray background */
    /* background-color: red; */
    background: #397e95db !important;
    /* linear-gradient(135deg, var(--dark-blue) 0%,  100%) */
}

/* Section title */
.about-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0056ff;
    /* main brand blue */
    margin-bottom: 15px;
}

/* Subtitle */
.about-section .lead {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* Row alignments */
.about-section .row.align-items-center {
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Achievement cards */
.achievement-card {
    background: #ffffff;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card i {
    font-size: 40px;
    color: #0056ff;
    margin-bottom: 15px;
}

.achievement-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.achievement-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Hover effect on achievement cards */
.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.about-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 28px;
    }

    /* .about-section .lead {
        font-size: 16px;
    } */

    .achievement-card {
        padding: 25px 15px;
    }
}



/* iframe code   */
/* Full-screen responsive video section */
.video-section {
    width: 100%;

    /* Full browser height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

/* Iframe wrapper with responsive 16:9 aspect ratio */
.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
}

/* Iframe styling */
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional: smaller height for mobile devices */
@media (max-width: 768px) {
    .iframe-wrapper {
        padding-bottom: 56.25%;
        /* keeps 16:9 ratio */
    }
}

.footer_last_section a {
    color: white !important;
    text-decoration: none;
}


/* contact button  */
.red-btn {
    background-color: var(--dark-blue);

    /* background-color: #e63946;  */
    color: white;
}

/* .green-btn {
    background-color: #2a9d8f; 
    color: white;
} */

/* .blue-btn {
    background-color: #1d3557; 
    color: white;
} */


/* vision stylings  */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-red);
        } */

.mission-card {
    /* background: white; */
    background: rgba(10, 92, 119, 0.267);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-blue);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 153, 204, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
}



.goal-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
    color: white;
}

.goal-item:hover {
    background: rgb(39, 71, 105);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-blue);
}

.goal-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-right: 15px;
}

.goal-title {

    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.stats-box {
    /* background: white; */
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.15);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: var(--primary-blue); */
    margin-bottom: 10px;
}

.stats-label {
    color: var(--dark-blue);
    font-weight: 500;
}



.goals-section {
    padding: 80px 0;
}

.highlight-text {
    /* color: var(--accent-red); */
    font-weight: 600;
}

.bullet-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
}

.bullet-list li::before {
    content: '✓';
    /* color: var(--primary-blue); */
    font-weight: 700;
    position: absolute;
    left: -20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .stats-number {
        font-size: 2rem;
    }
}

.mission-card h4 {
    color: var(--primary-blue) !important;
}

.mission-card {
    color: #a4bcd4 !important;
}


.stats-number,
.stats-label {
    color: white !important;
}



/* about us new section   */

.dr-vvvsn-hero-banner {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dr-vvvsn-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    opacity: 0.3;
}

.dr-vvvsn-hero-wrapper {
    position: relative;
    z-index: 2;
}

.dr-vvvsn-section-heading {
    color: white !important;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.dr-vvvsn-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    /* background: linear-gradient(90deg, var(--accent-red), var(--primary-blue)); */
    border-radius: 2px;
}

.dr-vvvsn-content-card {
    /* background: white; */
    background: linear-gradient(135deg, #0a1628 0%, var(--dark-blue) 50%, #152a47 100%);

    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.dr-vvvsn-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dr-vvvsn-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.dr-vvvsn-stats-display {
    background: linear-gradient(135deg, var(--accent-red), #e74c3c);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.dr-vvvsn-stats-display:hover {
    transform: scale(1.05);
}

.dr-vvvsn-stats-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.dr-vvvsn-stats-text {
    font-size: 0.9rem;
    opacity: 0.95;
}

.dr-vvvsn-location-badge {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin: 5px;
    font-size: 0.9rem;
}

.dr-vvvsn-award-entry {
    padding: 15px;
    border-left: 3px solid var(--accent-red);
    margin-bottom: 15px;
    background: white;
    color: #489bee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dr-vvvsn-award-entry:hover {
    background: var(--light-gray);
    transform: translateX(10px);
}

.dr-vvvsn-research-item {
    background: white;
    /* color: hsl(203, 73%, 51%)  !important; */
    color: rgb(110, 110, 110);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.dr-vvvsn-research-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.15);
}

.dr-vvvsn-skill-tag {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    margin: 8px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}



/* aditinalo stylings  */


.info-card {
    /* background: white; */
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(225, 224, 224, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-blue);

}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.about_new_section {
    background: #08273a !important;
}

.dr-vvvsn-hero-banner {
    margin-top: 75px !important;
}

.about_section {
    font-size: 60px !important;
}

.text-color-about {
    color: var(--primary-blue) !important;
}

.dr-vvvsn-research-item span {
    color: white !important;
}


.bg-light {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    ;
}

.bg-light i {
    color: white !important;
}

@media (max-width:992px) {
    .footer_logo {
        width: 200px !important;
    }
}



/* index page logo  */


/* Unique Section Wrapper */
.vsnVision-section {
    padding: 4rem 0;
}

/* Text Box */
.vsnVision-text-box {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0096d6 0%, #1a237e 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 150, 214, 0.3);
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.vsnVision-text-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.vsnVision-text-box::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Text */
.vsnVision-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vsnVision-text::first-letter {
    font-size: 2rem;
    font-weight: 700;
    color: #c62828;
    float: left;
    line-height: 1;
    margin-right: 8px;
}

/* Iframe Box */
.vsnVision-iframe-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(198, 40, 40, 0.3);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsnVision-iframe-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.4);
}

.vsnVision-iframe-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.vsnVision-iframe-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #0096d6, #c62828) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

/* Floating Icons */
.vsnVision-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.icon-1 {
    top: 30px;
    right: 30px;
    font-size: 50px;
    animation: float 6s ease infinite;
}

.icon-2 {
    bottom: 30px;
    left: 30px;
    font-size: 40px;
    animation: float 8s ease infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Title */
.vsnVision-title {
    text-align: center;
    margin-bottom: 3rem;
}

.vsnVision-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0096d6, #1a237e, #c62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 991px) {
    .vsnVision-text-box {
        margin-bottom: 2rem;
    }

    .vsnVision-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .vsnVision-text-box {
        padding: 1.5rem;
    }

    .vsnVision-text {
        font-size: 0.95rem;
    }
}

/* index vidion section  */
.vsn-section {
    padding: 4rem 0;
}

.vsn-header-section {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0096d6 0%, #1a237e 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 150, 214, 0.3);
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.vsn-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.vsn-header-section::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.vsn-subtitle-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vsn-subtitle-text::first-letter {
    font-size: 2rem;
    font-weight: 700;
    color: #c62828;
    float: left;
    line-height: 1;
    margin-right: 8px;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(198, 40, 40, 0.3);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iframe-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.4);
}

.iframe-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #0096d6, #c62828) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.decorative-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.icon-1 {
    top: 30px;
    right: 30px;
    font-size: 50px;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    bottom: 30px;
    left: 30px;
    font-size: 40px;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}




/* Responsive */
@media (max-width: 991px) {
    .vsn-header-section {
        margin-bottom: 2rem;
    }

    .vsn-subtitle-text {
        font-size: 1rem;
    }


}

@media (max-width: 576px) {
    .vsn-header-section {
        padding: 1.5rem;
    }

    .vsn-subtitle-text {
        font-size: 0.95rem;
    }


}


.vsn-hero-wrapper{
    margin-top: 70px !important;
}

/* whats app code   */
.whatsapp-link {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    /* padding: 5px; */
    border-radius: 50%;
    text-decoration: none;
    font-size: 35px;
    text-align: center;
  }