/* =========================================================
                STYLESHEET  (career.html,gallery.html,news.html)

   TABLE OF CONTENTS
   =========================================================
   01. CSS Imports & Theme Variables
   02. Common Theme Styles
   03. Header Area
   04. Header Logo & Information
   05. Header Icons & Search
   06. Header Search Form
   07. Main Navigation / Menu
   08. Active & Hover Menu
   09. Contact / Consultation Button
   10. Responsive Header
   11. Breadcrumb / Hero Area
   12. Breadcrumb Navigation
   13. Modern Footer
   14. Footer Grid & Columns
   15. Footer Contact & Appointment
   16. Footer Bottom & Social Links
   17. Scroll To Top Button
   18. Modern Gallery
   19. Gallery Heading
   20. Gallery Video Section
   21. Gallery Image Cards
   22. Gallery Hover Effects
   23. Gallery Lightbox / Popup
   24. Gallery Responsive Styles
   25. News & Events Section
   26. News & Events Images
   27. News & Events Hover Effects
   28. News & Events Responsive Styles

    ========================================================= 

    END TABLE OF CONTENTS

   ========================================================= */




/* Imported styles */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700');




@import url(imp.css);
@import url(bootstrap.min.css);
@import url(font-awesome.min.css);
@import url(hover.css);
@import url(jquery.bxslider.css);
@import url(owl.carousel.css);
@import url(owl.theme.default.min.css);
@import url(animate.css);
@import url(jquery.bootstrap-touchspin.css);
@import url('jquery.fancybox.css');
@import url('prettyPhoto.css');
/*** Flaticon css ***/
@import url(flaticon.css);
/*** Price filter***/
@import url(nouislider.css);
@import url(nouislider.pips.css);
/*** single shop slide ***/
@import url(flexslider.css);
/*** Time picker css ***/
@import url(timePicker.css);
/*** Jquery ui css ***/
@import url(jquery-ui.css);
/*** Revolution slider ***/
@import url(settings.css);
@import url(layers.css);
@import url(navigation.css);
/*** Bootstrap select picker css ***/
@import url(bootstrap-select.css);
/*** Language Switcher ***/
@import url(polyglot-language-switcher.css);
/*we need to style the popup with CSS so it is placed as a popup does*/



:root {
    --medical-blue: #176B87;
    --teal: #2A9D8F;
    --dark-navy: #0D1B2A;
    --deep-blue: #0A2E4D;

    --light-bg: #F5FAFC;
    --white: #FFFFFF;

    --text-dark: #1E293B;
    --text-gray: #6B7280;

    --border: #E2EDF1;
}


 /* Header */
.header {
    background: var(--white);
}

/* Navigation */
.navbar {
    background: var(--dark);
}

/* Active Menu */
.navbar a.active {
    color: var(--secondary);
}

/* Main CTA */
.btn-primary {
    background: var(--primary);
    color: var(--white);
}

/* Secondary CTA */
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

/* Hero */
.hero::before {
    background: linear-gradient(
        90deg,
        rgba(23, 107, 135, 0.90),
        rgba(42, 157, 143, 0.65)
    );
}

/* Cards */
.card {
    background: var(--white);
}

/* Icons */
.card i,
.card .icon {
    color: var(--secondary);
}

/* Statistics */
.statistics {
    background: var(--deep-blue);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
}


/* =========================================
   SHRINATH HOSPITAL - MODERN HEADER COLORS
   ========================================= */

/* =========================================
   TOP BAR
   ========================================= */

.top-bar-area {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Emergency Text */
.top-left p {
    margin: 0;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 28px;
}

/* Phone Icon */
.top-left p span {
    color: var(--teal);
    margin-right: 8px;
    font-size: 15px;
}

/* Social Area */
.top-right {
    display: flex;
    justify-content: flex-end;
}

/* Social Links */
.top-bar-area .social-links {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Icons */
.top-bar-area .social-links li {
    list-style: none;
}

.top-bar-area .social-links li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.08);

    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover */
.top-bar-area .social-links li a:hover {
    background-color: var(--teal);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* =========================================
   MAIN HEADER
   ========================================= */

.header-area {
    background-color: var(--white);
    padding: 18px 0 12px;
    border-bottom: 1px solid var(--border);
}

/* Logo */
.header-area .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-area .logo img {
    max-width: 300px;
    height: auto;
    display: block;
}



/* =========================================
   HEADER RIGHT INFORMATION
   ========================================= */

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Information List */
.header-right > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin: 0;
    padding: 0;
}

/* Each Information Item */
.header-right > ul > li {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
}


/* =========================================
   HEADER ICONS
   ========================================= */

.header-right .icon-holder {
    width: 42px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EAF7F6;
    border-radius: 50%;
}

.header-right .icon-holder span {
    color: var(--teal);
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.icon-holder2 {
    width: 53px;
    height: 53px;
    min-width: 53px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #EAF7F6;
    border-radius: 100%;
}

.icon-holder2 span {
    color: var(--teal);
    font-size: 24px;
}

@media (max-width: 991px) {

    .contact-item {
        gap: 16px;
    }
    .icon-holder2 {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .icon-holder2 span {
        font-size: 23px;
    }
}

@media (max-width: 767px) {

    .contact-item {
        gap: 12px;
    }
    .icon-holder2 {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .icon-holder2 span {
        font-size: 21px;
    }
   
}





/* =========================================
   HEADER TEXT
   ========================================= */

.header-right .text-holder h4 {
    margin: 0 0 4px;
    color: var(--medical-blue);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.header-right .text-holder span {
    display: block;
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   Choosen File 
   ========================================= */

input[type="file"] {
    width: 100%;
    font-size: 15px;
    color: #555;
}

input[type="file"]::file-selector-button {
    background: #EAF7F6;
    color: var(--teal);
    border: 1px solid var(--teal);
    border-radius: 5px;
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background: var(--teal);
    color: #fff;
}


/* =========================================
   SEARCH BUTTON
   ========================================= */

.header-area .search-button {
    margin-left: 5px;
}

.header-area .toggle-search button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: var(--medical-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-area .toggle-search button:hover {
    background-color: var(--teal);
    transform: translateY(-2px);
}


/* =========================================
   ISO CERTIFICATION TEXT
   ========================================= */

.header-area .container > div:last-child p {
    margin: 8px 0 0;
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 500;
}


/* =========================================
   RESPONSIVE HEADER
   ========================================= */

@media (max-width: 991px) {

    .header-right > ul {
        gap: 12px;
    }

    .header-right {
        gap: 10px;
    }

    .header-area .logo img {
        max-width: 190px;
    }

    .header-right .text-holder h4 {
        font-size: 12px;
    }

    .header-right .text-holder span {
        font-size: 11px;
    }
}


@media (max-width: 767px) {

    .header-area {
        padding: 15px 0;
    }

    .header-area .logo {
        justify-content: center;
        margin-bottom: 15px;
    }

    .header-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-right > ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-area .container > div:last-child {
        text-align: center;
    }
}

/* =========================================
   HEADER SEARCH
   ========================================= */

.header-search {
    background-color: var(--light-bg);
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Search Form */
.header-search .search-form {
    margin: 0;
}

/* Search Box */
.header-search .search {
    display: flex;
    align-items: center;
    width: 320px;
    height: 42px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Search Input */
.header-search .search input {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 13px;
}

/* Placeholder */
.header-search .search input::placeholder {
    color: #9CA3AF;
}

/* Focus */
.header-search .search:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.10);
}

/* Search Button */
.header-search .search button {
    width: 45px;
    height: 100%;
    border: none;
    background-color: var(--medical-blue);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.header-search .search button:hover {
    background-color: var(--teal);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .header-search .search-form {
        float: none !important;
        display: flex;
        justify-content: center;
    }

    .header-search .search {
        width: 100%;
        max-width: 400px;
    }
}



/* =========================================
   MODERN NAVIGATION / MAIN MENU
   ========================================= */

.mainmenu-area {
    background-color: var(--dark-navy);
    width: 100%;
    border-bottom: 3px solid var(--teal);
    position: relative;
    z-index: 999;
}

/* Main Menu */
.main-menu {
    margin: 0;
}

/* Navigation List */
.main-menu .navigation {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Navigation Items */
.main-menu .navigation > li {
    list-style: none;
    margin: 0;
}

/* Navigation Links */
.main-menu .navigation > li > a {
    display: block;
    padding: 18px 19px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Bottom hover line */
.main-menu .navigation > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hover */
.main-menu .navigation > li:hover > a {
    color: var(--teal);
}

.main-menu .navigation > li:hover > a::after {
    width: 55%;
}



/* =========================================
   ACTIVE MENU
   ========================================= */

.main-menu .navigation > li.current > a {
    color: var(--teal);
    font-weight: 600;
}

.main-menu .navigation > li.current > a::after {
    width: 55%;
}


/* =========================================
   CONTACT US BUTTON
   ========================================= */

.mainmenu-right-box {
     margin-top:7px;
    display: flex;
    align-items: center;
    height: 100%;
}

.consultation-button {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Contact Button */
.consultation-button .con a {
    display: inline-block;
    padding: 11px 20px;
    background-color: var(--medical-blue);
    color: var(--white);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Contact Hover */
.consultation-button .con a:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-1px);
}



/* =========================================
   SMALL LOGO
   ========================================= */

.consultation-button .logolink {
    display: none;
}


/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.navbar-toggle {
    background-color: var(--medical-blue);
    border: 1px solid var(--medical-blue);
    border-radius: 5px;
    padding: 9px 10px;
    margin: 8px 0;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background-color: var(--teal);
    border-color: var(--teal);
}

/* Hamburger Lines */
.navbar-toggle .icon-bar {
    background-color: var(--white);
    width: 22px;
    height: 2px;
    margin: 4px 0;
}


/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
    .mainmenu-area {
        min-height: 50px;
    }

    .main-menu {
        width: 100%;
    }

    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
        float: right;
    }

    .navbar-collapse {
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: none;
    }

    .main-menu .navigation {
        display: block;
        width: 100%;
    }

    .main-menu .navigation > li {
        width: 100%;
    }

    .main-menu .navigation > li > a {
        padding: 13px 18px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .main-menu .navigation > li > a::after {
        display: none;
    }

    .mainmenu-right-box {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 767px) {

    .mainmenu-area {
        border-bottom-width: 2px;
    }

    .main-menu .navigation > li > a {
        font-size: 14px;
    }
}


/*==============================
breadcrumb area
==============================*/


.breadcrumb-area {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.78);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-subtitle {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.breadcrumb-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.breadcrumb-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 17px auto 13px;
    background: var(--teal);
    border-radius: 3px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--teal);
}

.breadcrumb-list li i {
    color: var(--teal);
    font-size: 11px;
}

.breadcrumb-list li.active a{
    color: var(--teal) !important;
    font-size: 13px;
    font-weight: 500;
}

/* Subtitle */
.hero-subtitle {
    color: var(--white);
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}



/* Tablet View */

@media (max-width: 991px) {

    .breadcrumb-area {
        min-height: 300px;
        padding: 60px 0;
    }

    .breadcrumbs h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        max-width: 600px;
        font-size: 16px;
    }
}



/* Mobile View */


@media (max-width: 767px) {

    .breadcrumb-area {
        min-height: 260px;
        padding: 50px 20px;
    }

    .breadcrumbs h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
        margin-top: 12px;
    }
}



/* Small Mobile */

@media (max-width: 480px) {

    .breadcrumb-area {
        min-height: 230px;
        padding: 40px 15px;
    }

    .breadcrumbs h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }
}



/*==============================
Career Form
==============================*/

.application-form{
    background:var(--white);
    border-radius:14px;
    padding:35px;
    border:1px solid var(--border);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.application-form h2{
    color:var(--text-dark);
    margin-bottom:25px;
}

.application-form input,

.application-form textarea{
    border:1px solid var(--border);
    border-radius:8px;
    width:100%;
    padding:14px;
    margin-bottom:18px;
}

.application-form input:focus,

.application-form textarea:focus{
    border-color:var(--teal);
    outline:none;
}

/*==============================
Company Card
==============================*/

.company-info{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.company-info h2{
    color:var(--text-dark);
}

.company-info .icon-holder span:before{
    color:var(--teal);
} 



/*==========================================
        JOB APPLICATION AREA
==========================================*/

.job-application-area{
    padding:90px 0;
    background:var(--light-bg);
}

/*==========================================
        FORM
==========================================*/

.application-form{
    transition:.4s;
}

.application-form:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.application-form input,

.application-form textarea{
    transition:.3s;
    font-size:15px;
    color:var(--text-dark);
}

.application-form textarea{
    min-height:160px;
}

.application-form input:focus,

.application-form textarea:focus{
    box-shadow:0 0 0 4px rgba(42,157,143,.15);
}

.application-form button{
    padding:15px 40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.application-form button i{
    margin-right:10px;
}


/*==============================
Job Application Submit Buttons
==============================*/

.consultation-button .con a,

.application-form button{
    background:var(--medical-blue);
    color:var(--white);
    border:none;
    border-radius:8px;
    transition:.3s;
}

.consultation-button .con a:hover,

.application-form button:hover{
    background:var(--teal);
}

/*==========================================
       Job COMPANY INFO
==========================================*/

.company-info{
    transition:.4s;
}

.company-info:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.company-info h2{
    margin-bottom:20px;
}

.company-info p{
    color:var(--text-gray);
    line-height:30px;
}

.company-info hr{
    margin:25px 0;
    border-color:var(--border);
}

.company-info ul{
    margin:0;
    padding:0;
    list-style:none;
}

.company-info li{
    display:flex;
    margin-bottom:25px;
}

.company-info .icon-holder{
    width:60px;
    height:60px;
    background:rgba(42,157,143,.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.company-info .icon-holder span{
    font-size:26px;
    color:var(--teal);
}

.company-info .text-holder h4{
    color:var(--text-dark);
    margin-bottom:6px;
}

.company-info .text-holder p{
    margin:0;
}

 /* ==========================================
   TABLET RESPONSIVE
   992px - 1199px
========================================== */

@media (max-width: 1199px) {

    .job-application-area {
        padding: 70px 0;
    }

    .application-form,
    .company-info {
        padding: 30px;
    }

    .application-form h2,
    .company-info h2 {
        font-size: 28px;
    }
}


/* ==========================================
   TABLET
   768px - 991px
========================================== */

@media (max-width: 991px) {
    .job-application-area {
        padding: 60px 0;
    }

    .application-form,
    .company-info {
        padding: 28px;
    }

    .application-form h2,
    .company-info h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .application-form input,
    .application-form textarea {
        font-size: 15px;
        padding: 13px;
        margin-bottom: 15px;
    }

    .application-form textarea {
        min-height: 140px;
    }

    .application-form button {
        padding: 13px 30px;
        font-size: 15px;
    }

    .company-info p {
        line-height: 26px;
    }

    .company-info li {
        margin-bottom: 20px;
    }

    .company-info .icon-holder {
        width: 55px;
        height: 55px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .company-info .icon-holder span {
        font-size: 23px;
    }

}


/* ==========================================
   MOBILE
   Below 767px
========================================== */

@media (max-width: 767px) {

    .job-application-area {
        padding: 45px 0;
    }

    .application-form,
    .company-info {
        padding: 22px;
        border-radius: 12px;
    }

    .application-form {
        margin-bottom: 25px;
    }

    .application-form h2,
    .company-info h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .application-form input,
    .application-form textarea {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .application-form textarea {
        min-height: 130px;
    }

    .application-form button {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }

    .application-form button i {
        margin-right: 8px;
    }

    .company-info {
        margin-top: 10px;
    }

    .company-info p {
        font-size: 14px;
        line-height: 25px;
    }

    .company-info hr {
        margin: 20px 0;
    }

    .company-info li {
        margin-bottom: 20px;
    }

    .company-info .icon-holder {
        width: 50px;
        height: 50px;
        margin-right: 13px;
    }

    .company-info .icon-holder span {
        font-size: 21px;
    }

    .company-info .text-holder h4 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .company-info .text-holder p {
        font-size: 14px;
    }

}


/* ==========================================
   SMALL MOBILE
   Below 480px
========================================== */

@media (max-width: 480px) {

    .job-application-area {
        padding: 35px 0;
    }

    .application-form,
    .company-info {
        padding: 18px;
        border-radius: 10px;
    }

    .application-form {
        margin-bottom: 20px;
    }

    .application-form h2,
    .company-info h2 {
        font-size: 21px;
        margin-bottom: 16px;
    }

    .application-form input,
    .application-form textarea {
        padding: 11px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .application-form textarea {
        min-height: 115px;
    }

    .application-form button {
        padding: 12px 15px;
        font-size: 14px;
    }

    .company-info p {
        font-size: 13px;
        line-height: 23px;
    }

    .company-info hr {
        margin: 17px 0;
    }

    .company-info li {
        margin-bottom: 17px;
        align-items: flex-start;
    }

    .company-info .icon-holder {
        width: 45px;
        height: 45px;
        margin-right: 11px;
    }

    .company-info .icon-holder span {
        font-size: 19px;
    }

    .company-info .text-holder h4 {
        font-size: 15px;
    }

    .company-info .text-holder p {
        font-size: 13px;
        line-height: 21px;
    }

}


/* ==========================================
   EXTRA SMALL MOBILE
   Below 360px
========================================== */

@media (max-width: 360px) {

    .job-application-area {
        padding: 30px 0;
    }

    .application-form,
    .company-info {
        padding: 15px;
    }

    .application-form h2,
    .company-info h2 {
        font-size: 19px;
    }

    .application-form input,
    .application-form textarea {
        padding: 10px;
        font-size: 13px;
    }

    .application-form button {
        font-size: 13px;
        padding: 11px;
    }

    .company-info .icon-holder {
        width: 40px;
        height: 40px;
        margin-right: 9px;
    }

    .company-info .icon-holder span {
        font-size: 17px;
    }

    .company-info .text-holder h4 {
        font-size: 14px;
    }

    .company-info .text-holder p {
        font-size: 12px;
    }

}

/* ==========================================
   CAREER STATISTICS
========================================== */

.career-stats {
    background: var(--deep-blue);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Soft background effect */
.career-stats::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.08);
    top: -180px;
    left: -100px;
}

.career-stats::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(23, 107, 135, 0.10);
    bottom: -170px;
    right: -80px;
}

.career-stats .container {
    position: relative;
    z-index: 2;
}


/* ==========================================
   STAT BOX
========================================== */

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Teal top line */
.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    background: var(--white);
}

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

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background: var(--white);
    opacity:1;
}


/* Number */

.stat-box h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
}

.stat-box:hover h2{
    color: var(--teal);
}

/* Label */

.stat-box p {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.stat-box:hover p {
    color:var(--medical-blue)
}


/* ==========================================
   CAREER CTA
========================================== */

.career-cta {
    background: linear-gradient(
        135deg,
        var(--medical-blue),
        var(--teal)
    );

    color: var(--white);
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}


/* Decorative Circle */

.career-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -180px;
    right: -80px;
}


/* Second decorative circle */

.career-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.08);
    bottom: -130px;
    left: -70px;
}


.career-cta .container {
    position: relative;
    z-index: 2;
}


/* CTA Heading */

.career-cta h2 {
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* CTA Paragraph */

.career-cta p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}


/* CTA Button */

.btn-career {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    background: var(--white);
    color: var(--medical-blue);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


.btn-career:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}


/* ==========================================
   TABLET
   768px - 991px
========================================== */

@media (max-width: 991px) {

    .career-stats {
        padding: 60px 0;
    }

    .stat-box {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .career-cta {
        padding: 60px 0;
    }

    .career-cta h2 {
        font-size: 30px;
    }

    .career-cta p {
        font-size: 15px;
    }

    .career-cta .text-end {
        text-align: left !important;
        margin-top: 25px;
    }
}


/* ==========================================
   MOBILE
   Below 767px
========================================== */

@media (max-width: 767px) {

    .career-stats {
        padding: 50px 0;
    }

    .career-stats .row {
        row-gap: 20px;
    }

    .stat-box {
        padding: 25px 10px;
        border-radius: 13px;
        margin-bottom: 0;
    }

    .stat-box h2 {
        font-size: 30px;
        margin-bottom: 9px;
    }

    .stat-box p {
        font-size: 13px;
    }


    /* CTA */

    .career-cta {
        padding: 50px 20px;
        text-align: center;
    }

    .career-cta h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .career-cta p {
        font-size: 14px;
        line-height: 1.6;
    }

    .career-cta .text-end {
        text-align: center !important;
        margin-top: 25px;
    }

    .btn-career {
        width: 100%;
        max-width: 220px;
        padding: 13px 25px;
        font-size: 15px;
    }

}


/* ==========================================
   SMALL MOBILE
   Below 480px
========================================== */

@media (max-width: 480px) {

    .career-stats {
        padding: 40px 0;
    }

    .stat-box {
        padding: 22px 8px;
        border-radius: 11px;
    }

    .stat-box h2 {
        font-size: 26px;
    }

    .stat-box p {
        font-size: 12px;
    }


    .career-cta {
        padding: 42px 15px;
    }

    .career-cta h2 {
        font-size: 23px;
    }

    .career-cta p {
        font-size: 13px;
        line-height: 1.55;
    }

    .btn-career {
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* ==========================================
   EXTRA SMALL MOBILE
   Below 360px
========================================== */

@media (max-width: 360px) {
    .stat-box {
        padding: 20px 5px;
    }

    .stat-box h2 {
        font-size: 23px;
    }

    .stat-box p {
        font-size: 11px;
    }

    .career-cta h2 {
        font-size: 21px;
    }

    .career-cta p {
        font-size: 12px;
    }

    .btn-career {
        max-width: 180px;
        font-size: 13px;
    }
}


/* =========================================================
   MODERN FOOTER
========================================================= */

.modern-footer {
    position: relative;
    padding: 75px 0 60px;
    background:
        linear-gradient(
            135deg,
            #0D1B2A 0%,
            #102A3B 55%,
            #123E52 100%
        );

    color: #FFFFFF;
    overflow: hidden;
}


/* Decorative Circle */

.modern-footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
    border: 1px solid rgba(42, 157, 143, 0.15);
    border-radius: 50%;
}


.modern-footer::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -140px;
    bottom: -140px;
    border: 1px solid rgba(42, 157, 143, 0.10);
    border-radius: 50%;
}


/* =========================================================
   GRID
========================================================= */

.modern-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        1.3fr
        0.8fr
        1.2fr
        1.1fr;

    gap: 45px;
}



/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column h3 {
    margin: 0 0 12px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}


.footer-line {
    display: block;
    width: 40px;
    height: 3px;
    margin-bottom: 22px;
    background: #2A9D8F;
    border-radius: 3px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 15px;
}


.footer-logo img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
}


/* =========================================================
   Footer ABOUT
========================================================= */

.footer-about p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.8;
}


.footer-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2A9D8F;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-read-more:hover {
    color: #FFFFFF;
    text-decoration: none;
}


.footer-read-more i {
    font-size: 11px;
}


/* =========================================================
   Footer QUICK LINKS
========================================================= */

.modern-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}


.modern-footer-links li {
    margin-bottom: 11px;
}


.modern-footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.modern-footer-links a i {
    color: #2A9D8F;
    font-size: 11px;
}


.modern-footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
    text-decoration: none;
}


/* =========================================================
   Footer CONTACT
========================================================= */

.modern-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}


.modern-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}


.footer-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 157, 143, 0.12);
    border: 1px solid rgba(42, 157, 143, 0.25);
    border-radius: 7px;
    color: #2A9D8F;
    font-size: 14px;
}


.modern-contact-list span {
    display: block;
    margin-bottom: 3px;
    color: #2A9D8F;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.modern-contact-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.6;
}


.modern-contact-list a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}


.modern-contact-list a:hover {
    color: #2A9D8F;
    text-decoration: none;
}


/* =========================================================
   APPOINTMENT
========================================================= */

.appointment-text {
    margin: -5px 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.6;
}

.modern-appointment-form {
    width: 100%;
}

.footer-input {
    position: relative;
    margin-bottom: 10px;
}


.footer-input i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #2A9D8F;
    font-size: 12px;
    z-index: 2;
}


.footer-input input,
.footer-input textarea {
    width: 100%;
    padding: 11px 12px 11px 35px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    outline: none;
    color: #FFFFFF;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-input input {
    height: 42px;
}

.footer-input textarea {
    height: 75px;
    resize: none;
    padding-top: 12px;
}

.footer-input textarea + i {
    top: 17px;
    transform: none;
}


.footer-input input::placeholder,
.footer-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


.footer-input input:focus,
.footer-input textarea:focus {
    border-color: #2A9D8F;
    background: rgba(255, 255, 255, 0.10);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.footer-submit {
    width: 100%;
    height: 43px;
    border: none;
    border-radius: 6px;
    background: #176B87;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.footer-submit i {
    margin-left: 7px;
}


.footer-submit:hover {
    background: #2A9D8F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.20);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.modern-footer-bottom {
    background: #081520;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}


.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 11px;
}


.footer-bottom-inner strong {
    color: #2A9D8F;
    font-weight: 600;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 8px;
}


.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-social a:hover {
    background: #2A9D8F;
    border-color: #2A9D8F;
    color: #FFFFFF;
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .modern-footer {
        padding: 60px 0 45px;
    }

    .modern-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .modern-footer {
        padding: 50px 20px 35px;
    }

    .modern-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column h3 {
        font-size: 17px;
    }


    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .modern-footer {
        padding: 45px 15px 30px;
    }

    .footer-logo {
        width: 140px;
        height: 65px;
    }


    .footer-bottom-inner p {
        font-size: 10px;
    }
}


.scroll-to-top {
    background: transparent;
    border: 2px solid teal;
    bottom: 25px;
    color: teal;
    cursor: pointer;
    display: none;
    font-weight: normal;
    height: 45px;
    line-height: 42px;
    position: fixed;
    right: 15px;
    text-align: center;
    transition: all 500ms ease 0s;
    width: 50px;
    z-index: 99999;
    -webkit-box-shadow: 0px 8px 23px -6px rgba(27,27,27,1);
    -moz-box-shadow: 0px 8px 23px -6px rgba(27,27,27,1);
    box-shadow: 0px 8px 23px -6px rgba(27,27,27,1);
}
.scroll-to-top:hover {
    background: teal;
    color: #fff;
}





/*                      CSS  Start                     */
/* =========================================
   MODERN GALLERY
========================================= */

/* ========Gallery HEADING ===========*/ 
/* =====================================
   GALLERY HEADING
===================================== */

.gallery-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}


/* TOP PILL */
.gallery-subtitle {
    display: inline-block;
    background: #dff2f2;
    color: #16a6a0;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top:25px;
}


/* MAIN HEADING */
.gallery-heading h2 {
     color: var(--dark-navy);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* TEAL PART */
.gallery-heading h2 span {
    color: var(--teal);
}


/* DESCRIPTION */
.gallery-heading p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    margin-bottom:30px
}


/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .gallery-heading {
        max-width: 650px;
        margin: 0 auto 40px;
        padding: 0 20px;
    }

    .gallery-subtitle {
        padding: 11px 25px;
        font-size: 12px;
        margin-top: 20px;
        margin-bottom: 18px;
    }

    .gallery-heading h2 {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .gallery-heading p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {

    .gallery-heading {
        max-width: 100%;
        margin: 0 auto 35px;
        padding: 0 15px;
    }

    .gallery-subtitle {
        padding: 10px 22px;
        font-size: 11px;
        margin-top: 15px;
        margin-bottom: 18px;
    }

    .gallery-heading h2 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .gallery-heading p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .gallery-heading {
        padding: 0 12px;
        margin-bottom: 30px;
    }

    .gallery-subtitle {
        padding: 9px 20px;
        font-size: 10px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .gallery-heading h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .gallery-heading p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}





.modern-gallery-section { 
    background: #f7fbfc; 
    padding: 80px 0; 
} 

/* ========================================= VIDEO SECTION ========================================= */ 
.video-gallery-row { 
    row-gap: 25px; 
    margin-bottom: 55px; 
} 
.gallery-video-card { 
    background: #ffffff; 
    border-radius: 18px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.10); 
    transition: all 0.35s ease; 
} 
.gallery-video-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 18px 40px rgba(11, 37, 69, 0.16); 
} 
.video-wrapper { 
    width: 100%; 
    background: #0b2545; 
    overflow: hidden; 
}
.video-wrapper video { 
    width: 100%; 
    height: 330px; 
    display: block; 
    object-fit: cover; 
}
.video-content { 
    padding: 18px 22px; 
} 
.video-content span { 
    color: #16a6a0; 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}
.video-content h4 {
    color: #0b2545; 
    font-size: 20px; 
    font-weight: 
    700; margin: 
    6px 0 0; 
} 

/* ========================================= MASONRY PHOTO GALLERY ================================ */ 
.modern-masonry-gallery { 
    column-count: 3; 
    column-gap: 25px; 
    margin-top: 10px; 
} 

/* ========================================= PHOTO ITEM ========================================= */ 
.masonry-item { 
    position: relative; 
    display: inline-block; 
    width: 100%; 
    margin-bottom: 25px; 
    overflow: hidden; 
    border-radius: 18px; 
    background: #ffffff; 
    box-shadow: 0 8px 25px rgba(11, 37, 69, 0.10); 
    break-inside: avoid; 
    cursor: pointer; 
    transition: transform 0.35s ease, box-shadow 0.35s ease; 
} 

/* ========================================= IMAGE ========================================= */ 
.masonry-item img { 
    width: 100%; 
    height: auto;
    display: block; 
    transition: transform 0.6s ease; 
} 

/* ========================================= HOVER CARD ========================================= */ 
.masonry-item:hover { 
    transform: translateY(-7px); 
    box-shadow: 0 18px 40px rgba(11, 37, 69, 0.18); 
} 

.masonry-item:hover img { 
    transform: scale(1.06); 
} 

/* ========================================= OVERLAY ========================================= */ 
.photo-overlay { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: flex-end; 
    justify-content: flex-end; 
    padding: 20px; 
    background: linear-gradient( to top, rgba(11, 37, 69, 0.78), transparent 55% ); 
    opacity: 0; 
    transition: opacity 0.35s ease; 
}
.masonry-item:hover .photo-overlay { 
    opacity: 1; 
} 

/* ========================================= VIEW BUTTON ========================================= */ .photo-overlay span { 
    background: #16a6a0; 
    color: #ffffff; 
    padding: 9px 18px; 
    border-radius: 30px;
    font-size: 12px; 
    font-weight: 600; 
    letter-spacing: 0.3px; 
} 

/* ========================================= TABLET ========================================= */ 
@media (max-width: 991px) { 
    .modern-gallery-section { 
        padding: 60px 0; 
    } 
    .gallery-heading h2 { 
        font-size: 32px; 
    } 
    .modern-masonry-gallery { 
        column-count: 2; 
        column-gap: 22px; 
    } 
    .masonry-item { 
        margin-bottom: 22px; 
    } 
    .video-wrapper video { 
        height: 280px; 
    } 
} 

/* ========================================= MOBILE ========================================= */ 
@media (max-width: 575px) { 
    .modern-gallery-section { 
        padding: 45px 0; 
    } 
    .gallery-heading { 
        margin-bottom: 35px; 
    } 
    .gallery-heading h2 { 
        font-size: 27px; 
    } 
    .gallery-heading p { 
        font-size: 14px; 
    } 
    .modern-masonry-gallery { 
        column-count: 1; 
        column-gap: 0; 
    } 
    .masonry-item { 
        margin-bottom: 20px; 
        border-radius: 15px; 
    } 
    .video-wrapper video { 
        height: 230px; 
    } 
    .video-gallery-row { 
        margin-bottom: 40px; 
    } 
}







/* =====================================
   VIEW PHOTO BUTTON
===================================== */

.view-photo-btn {
    border: none;
    background: #16a6a0;
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-photo-btn:hover {
    background: #0b2545;
}


/* =====================================
   LIGHTBOX
===================================== */

.gallery-lightbox {
    position: fixed;
   /*  width: 800px;
    height: 85vh; */
     width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(5, 20, 38, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
    opacity: 0.1;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 15px;
}

/* OPEN LIGHTBOX */

.gallery-lightbox.show {
    opacity: 1;
    visibility: visible;
}

/* IMAGE */

#lightboxImage {
    display: block;
    max-width: 100%;
    max-height: 100%;
  /*   width: auto;
    height: auto; */
    /* object-fit: contain; */
    margin: auto;
    border-radius: 8px;
}

/* CLOSE BUTTON */

#lightboxClose {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #16a6a0;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

#lightboxClose:hover {
    background: #ffffff;
    color: #0b2545;
}


/*  MOBILE */

@media (max-width: 575px) {

    .gallery-lightbox {
        width: 100%;
        height: 100%;
        padding: 10px;
    }

    #lightboxImage {
        max-width: 100%;
        max-height: 100%;
        /* object-fit: contain; */
    }

     #lightboxClose {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
}


/* ==================================================================================== */


/* 

=========================================================

                      News & Events CSS 

============================================================
*/


/* =====================================
   NEWS & EVENTS IMAGE SECTION
===================================== */

.news-events-section {
    padding: 20px 0 70px;
    background: #f5fafb;
}

/* CONTAINER */
.news-events-section .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
}

/* ROW GAP */
.news-events-section .row {
    margin-bottom: 25px;
}

/* IMAGE COLUMN */
.news-events-section .news-image-col {
    padding-left: 12px;
    padding-right: 12px;
}

/* IMAGE CARD */
.news-events-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(11, 37, 69, 0.10);
    transition: all 0.35s ease;
}

/* HOVER */
.news-events-section img:hover {
   /* box-shadow:
        0 15px 35px rgba(11, 37, 69, 0.16); 
        /*  transform: translateY(-7px);  */
    transform: scale(1.06); 
    box-shadow: 0 18px 40px rgba(11, 37, 69, 0.18); 
}

/* =====================================
   6 COLUMN IMAGES
===================================== */

.news-events-section .col-lg-6 img {
    height: 400px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .news-events-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
    .news-events-section .row {
        margin-bottom: 20px;
    }
    .news-events-section img,
    .news-events-section .col-lg-6 img {
        height: 350px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {
    .news-events-section {
        padding: 15px 0 50px;
    }
    .news-events-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .news-events-section .row {
        margin-bottom: 0;
    }
    .news-events-section .col-lg-4,
    .news-events-section .col-lg-6 {
        margin-bottom: 20px;
    }

    .news-events-section img,
    .news-events-section .col-lg-6 img {
        height: 300px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .news-events-section img,
    .news-events-section .col-lg-6 img {
        height: 250px;
    }

    .news-events-section .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}
























/* =========================================
   MODERN CONTACT SECTION
========================================= */

.modern-contact-area {
    padding: 80px 0;
    background: #f6fbfc;
}


/* =========================================
   SECTION HEADING
========================================= */

.modern-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.modern-section-heading > span {
    display: inline-block;

    color: #16859a;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.modern-section-heading h1 {
    margin: 0 0 12px;

    color: #102a3a;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.2;
}

.modern-section-heading p {
    margin: 0;

    color: #71808a;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   CONTACT FORM CARD
========================================= */

.modern-contact-form {
    background: #ffffff;

    border: 1px solid #dcecef;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 10px 35px rgba(15, 45, 60, 0.06);
}


/* =========================================
   FORM HEADING
========================================= */

.form-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e7f0f2;
}

.form-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf8fa;

    border-radius: 13px;

    color: #16859a;

    font-size: 21px;
}

.form-heading h2 {
    margin: 0 0 4px;

    color: #102a3a;

    font-size: 24px;
    font-weight: 700;
}

.form-heading p {
    margin: 0;

    color: #84929a;

    font-size: 13px;
}


/* =========================================
   INPUT GROUP
========================================= */

.input-group-modern {
    margin-bottom: 20px;
}

.input-group-modern label {
    display: block;

    margin-bottom: 8px;

    color: #253b48;

    font-size: 13px;
    font-weight: 600;
}

.input-group-modern label span {
    color: #e35d73;
}


/* =========================================
   INPUT WRAPPER
========================================= */

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #16859a;

    font-size: 15px;

    z-index: 2;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;

    border: 1px solid #dcecef;

    background: #fafdfe;

    border-radius: 10px;

    color: #253b48;

    font-size: 14px;

    outline: none;

    transition: all 0.3s ease;
}

.input-wrap input {
    height: 50px;

    padding: 0 15px 0 45px;
}

.input-wrap textarea {
    min-height: 125px;

    padding: 15px 15px 15px 45px;

    resize: vertical;
}

.input-wrap textarea + i {
    top: 22px;
    transform: none;
}


/* =========================================
   INPUT FOCUS
========================================= */

.input-wrap input:focus,
.input-wrap textarea:focus {
    background: #ffffff;

    border-color: #16859a;

    box-shadow: 0 0 0 3px rgba(22, 133, 154, 0.08);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #a1adb3;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.modern-submit-btn {
    border: 0;

    background: #16859a;

    color: #ffffff;

    padding: 13px 23px;

    min-width: 155px;

    border-radius: 9px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.modern-submit-btn:hover {
    background: #0f7185;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(22, 133, 154, 0.22);
}

.modern-submit-btn i {
    font-size: 13px;
}


/* =========================================
   QUICK CONTACT CARD
========================================= */

.modern-quick-contact {
    height: 100%;

    background: #123746;

    border-radius: 20px;

    padding: 35px 30px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(15, 45, 60, 0.12);
}


/* Decorative Circle */

.modern-quick-contact:before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    right: -70px;
    top: -70px;
}

.modern-quick-contact:after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);

    left: -60px;
    bottom: -50px;
}


/* =========================================
   QUICK HEADER
========================================= */

.quick-header {
    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;
    z-index: 2;

    margin-bottom: 18px;
}

.quick-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;

    border-radius: 13px;

    background: #16859a;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.quick-header > div > span {
    color: #68c4d0;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.quick-header h2 {
    color: #ffffff;

    font-size: 24px;

    font-weight: 700;

    margin: 3px 0 0;
}


/* =========================================
   DESCRIPTION
========================================= */

.quick-description {
    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 28px;

    position: relative;
    z-index: 2;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.modern-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    color: #68c4d0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
}

.contact-text {
    padding-top: 2px;
}

.contact-text > span {
    display: block;

    color: #68c4d0;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    margin: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.6;

    text-decoration: none;
}

.contact-text a:hover {
    color: #68c4d0;
}


/* =========================================
   SOCIAL
========================================= */

.modern-social {
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    padding-top: 20px;

    margin-top: 5px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}

.modern-social > span {
    color: #ffffff;

    font-size: 13px;

    font-weight: 600;
}

.social-icons {
    display: flex;

    gap: 8px;
}

.social-icons a {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #16859a;

    transform: translateY(-3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .modern-contact-area {
        padding: 60px 0;
    }

    .modern-section-heading h1 {
        font-size: 32px;
    }

    .modern-contact-form {
        padding: 28px;
    }

    .modern-quick-contact {
        padding: 28px 24px;
    }

}


@media (max-width: 767px) {

    .modern-contact-area {
        padding: 50px 0;
    }

    .modern-section-heading {
        margin-bottom: 35px;
    }

    .modern-section-heading h1 {
        font-size: 28px;
    }

    .modern-contact-form {
        padding: 22px;
        margin-bottom: 25px;
    }

    .form-heading h2 {
        font-size: 20px;
    }

    .modern-quick-contact {
        padding: 25px 22px;
    }

}   