/*=====================================================
 DMM Academic Pro Theme
 Digboi Mahila Mahavidyalaya
 Version : 1.0
======================================================*/

/*-----------------------------------------------------
Google Fonts
------------------------------------------------------*/

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

/*-----------------------------------------------------
Variables
------------------------------------------------------*/

:root{

--primary:#0B3C5D;
--primary-dark:#08263C;

--secondary:#D4AF37;
--secondary-dark:#C19A20;

--success:#198754;
--danger:#dc3545;

--light:#F8FAFC;
--white:#ffffff;

--text:#1F2937;
--text-light:#64748B;

--border:#E5E7EB;

--shadow:
0 15px 35px rgba(0,0,0,.08);

--radius:12px;

--transition:.35s ease;

}

/*-----------------------------------------------------
Body
------------------------------------------------------*/

body{

font-family:'Poppins',sans-serif;

font-size:16px;

line-height:1.8;

background:var(--light);

color:var(--text);

overflow-x:hidden;

}

/*-----------------------------------------------------
Links
------------------------------------------------------*/

a{

text-decoration:none;

color:var(--primary);

transition:var(--transition);

}

a:hover{

color:var(--secondary);

}

/*-----------------------------------------------------
Heading
------------------------------------------------------*/

h1,h2,h3,h4,h5,h6{

font-weight:600;

color:var(--text);

margin-bottom:15px;

}

.section-title{

font-size:38px;

font-weight:700;

position:relative;

margin-bottom:40px;

}

.section-title:after{

content:"";

width:70px;

height:4px;

background:var(--secondary);

display:block;

margin-top:12px;

border-radius:5px;

}

/*-----------------------------------------------------
Buttons
------------------------------------------------------*/

.btn{

padding:12px 30px;

border-radius:50px;

font-weight:600;

transition:.4s;

}

.btn-primary{

background:var(--primary);

border:none;

color:#fff;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-3px);

box-shadow:var(--shadow);

}

.btn-secondary{

background:var(--secondary);

border:none;

color:#fff;

}

.btn-secondary:hover{

background:var(--secondary-dark);

transform:translateY(-3px);

}

/*-----------------------------------------------------
Top Header
------------------------------------------------------*/

.top-header{

background:var(--primary);

padding:8px 0;

font-size:14px;

color:#fff;

}

.top-header a{

color:#fff;

margin-right:20px;

}

.top-header i{

color:var(--secondary);

margin-right:8px;

}

/*-----------------------------------------------------
Navbar
------------------------------------------------------*/

.navbar{

background:#fff;

padding:18px 0;

box-shadow:0 3px 15px rgba(0,0,0,.05);

transition:.4s;

}

.navbar-brand img{

height:70px;

}

.navbar-nav .nav-link{

font-weight:600;

padding:12px 18px;

color:var(--text);

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .active{

color:var(--secondary)!important;

}

.sticky{

position:fixed;

top:0;

width:100%;

z-index:9999;

animation:slideDown .5s;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}

@keyframes slideDown{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}

/*-----------------------------------------------------
Dropdown
------------------------------------------------------*/

.dropdown-menu{

border:none;

border-radius:12px;

box-shadow:var(--shadow);

padding:10px;

}

.dropdown-item{

padding:12px 20px;

border-radius:8px;

}

.dropdown-item:hover{

background:var(--primary);

color:#fff;

}
/*=====================================================
 HERO SECTION
======================================================*/

.hero-section{
    position:relative;
    overflow:hidden;
}

.hero-carousel .carousel-item{
    height:700px;
    min-height:500px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-carousel .carousel-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(11,60,93,.75),
                                rgba(11,60,93,.45));
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:1200px;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    color:#fff;
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-buttons .btn{
    margin-right:15px;
}

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

.quick-links{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.quick-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;
}

.quick-card:hover{

    transform:translateY(-10px);

    background:#0B3C5D;

    color:#fff;

}

.quick-card:hover h5,
.quick-card:hover i{

    color:#fff;

}

.quick-card i{

    font-size:45px;

    color:#D4AF37;

    margin-bottom:18px;

}

.quick-card h5{

    font-weight:600;

    margin-bottom:10px;

}

/*=====================================================
 SECTION SPACING
======================================================*/

.section{

    padding:90px 0;

}

.bg-light{

    background:#F8FAFC;

}

/*=====================================================
 NOTICE BOARD
======================================================*/

.notice-board{

    background:#fff;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    overflow:hidden;

}

.notice-header{

    background:#0B3C5D;

    color:#fff;

    padding:18px 25px;

    font-size:22px;

    font-weight:600;

}

.notice-list{

    max-height:500px;

    overflow-y:auto;

}

.notice-item{

    display:flex;

    align-items:center;

    padding:18px 25px;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.notice-item:hover{

    background:#F8FAFC;

}

.notice-date{

    width:70px;

    text-align:center;

    margin-right:20px;

    background:#D4AF37;

    color:#fff;

    border-radius:10px;

    padding:10px;

}

.notice-date h4{

    margin:0;

    color:#fff;

}

.notice-content h5{

    font-size:18px;

    margin-bottom:5px;

}

.notice-content p{

    margin:0;

    color:#64748B;

}

/*=====================================================
 PRINCIPAL SECTION
======================================================*/

.principal-section{

    background:#fff;

    border-radius:20px;

    padding:60px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.principal-img{

    width:320px;

    height:320px;

    border-radius:50%;

    object-fit:cover;

    border:8px solid #D4AF37;

}

.principal-content h2{

    margin-bottom:20px;

}

.principal-content p{

    color:#64748B;

    line-height:1.9;

}

.principal-name{

    font-size:26px;

    color:#0B3C5D;

    font-weight:700;

    margin-top:25px;

}

.principal-designation{

    color:#D4AF37;

    font-weight:600;

}

/*=====================================================
 FEATURE CARDS
======================================================*/

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.feature-card i{

    font-size:42px;

    color:#0B3C5D;

    margin-bottom:18px;

}

/*=====================================================
 SCROLLBAR
======================================================*/

.notice-list::-webkit-scrollbar{

    width:7px;

}

.notice-list::-webkit-scrollbar-thumb{

    background:#D4AF37;

    border-radius:20px;

}

.notice-list::-webkit-scrollbar-track{

    background:#eee;

}

/*=====================================================
  DEPARTMENTS
======================================================*/

.departments{
    padding:90px 0;
    background:#F8FAFC;
}

.department-card{
    background:#fff;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
    border-top:5px solid transparent;
}

.department-card:hover{
    transform:translateY(-10px);
    border-top:5px solid var(--secondary);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.department-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(11,60,93,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.department-icon i{
    font-size:38px;
    color:var(--primary);
}

.department-card h4{
    font-size:22px;
    margin-bottom:12px;
}

.department-card p{
    color:var(--text-light);
    margin-bottom:20px;
}

/*=====================================================
  FACILITIES
======================================================*/

.facilities{
    background:#fff;
    padding:90px 0;
}

.facility-box{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.facility-icon{
    width:70px;
    height:70px;
    border-radius:15px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.facility-content h5{
    margin-bottom:10px;
}

.facility-content p{
    color:var(--text-light);
}

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

.counter-section{
    background:linear-gradient(rgba(11,60,93,.94),
                               rgba(11,60,93,.94)),
               url("../images/campus.jpg");
    background-size:cover;
    background-position:center;
    padding:100px 0;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    color:var(--secondary);
    font-size:54px;
    font-weight:700;
}

.counter-box p{
    margin-top:10px;
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

/*=====================================================
  ACHIEVEMENTS
======================================================*/

.achievement-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.achievement-card:hover{
    transform:translateY(-8px);
}

.achievement-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:18px;
}

.achievement-card h4{
    margin-bottom:15px;
}

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

.cta-section{
    background:var(--primary);
    color:#fff;
    padding:70px 0;
}

.cta-section h2{
    color:#fff;
    margin-bottom:20px;
    font-size:42px;
}

.cta-section p{
    opacity:.9;
    margin-bottom:30px;
}

.cta-section .btn-secondary{
    padding:14px 36px;
    font-size:18px;
}

/*=====================================================
  IMAGE HOVER
======================================================*/

.image-hover{
    overflow:hidden;
    border-radius:16px;
}

.image-hover img{
    width:100%;
    transition:.5s;
}

.image-hover:hover img{
    transform:scale(1.08);
}

/*=====================================================
  COMMON CARD EFFECT
======================================================*/

.hover-shadow{
    transition:.35s;
}

.hover-shadow:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}





:root{
    --bs-primary:#0B3C5D;
    --bs-secondary:#D4AF37;
}

.text-warning,
.text-orange{
    color:#D4AF37 !important;
}

.bg-warning,
.bg-orange{
    background:#D4AF37 !important;
}

.btn-warning,
.btn-orange{
    background:#D4AF37 !important;
    border-color:#D4AF37 !important;
    color:#fff;
}

.btn-warning:hover,
.btn-orange:hover{
    background:#b89125 !important;
    border-color:#b89125 !important;
}

.border-warning,
.border-orange{
    border-color:#D4AF37 !important;
}

a:hover{
    color:#D4AF37;
}

.top-header{
    background:#08263C !important;
    border-bottom:3px solid #D4AF37;
}

.bg-dmm-primary{
    background:#0B3C5D;
}

.bg-dmm-gold{
    background:#D4AF37;
}

.bg-dmm-light{
    background:#F8FAFC;
}

.bg-dmm-dark{
    background:#08263C;
}

.quick-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#EDF5FA;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
}

.quick-icon i{
    font-size:30px;
    color:#0B3C5D;
}

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

.quick-links-section{

    background:#f8fafc;

    padding:90px 0;

}

.quick-link-card{

    position:relative;

    display:block;

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    overflow:hidden;

    text-decoration:none;

    transition:.35s;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.quick-link-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.35s;

}

.quick-link-card:hover::before{

    transform:scaleX(1);

}

.quick-link-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.icon-box{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EDF5FA;

    transition:.35s;

}

.icon-box i{

    font-size:38px;

    color:#0B3C5D;

}

.quick-link-card:hover .icon-box{

    background:#0B3C5D;

    transform:rotate(10deg);

}

.quick-link-card:hover .icon-box i{

    color:#fff;

}

.quick-link-card h4{

    text-align:center;

    color:#0B3C5D;

    font-weight:700;

    margin-bottom:15px;

}

.quick-link-card p{

    text-align:center;

    color:#64748B;

    font-size:15px;

    line-height:1.7;

    min-height:80px;

}

.quick-link-card span{

    display:block;

    text-align:center;

    color:#D4AF37;

    font-weight:600;

}

.quick-link-card span i{

    margin-left:8px;

    transition:.3s;

}

.quick-link-card:hover span i{

    margin-left:14px;

}

/*=====================================
LATEST NOTICE
=====================================*/

.notice-section{

background:#F8FAFC;

padding:90px 0;

}

.notice-card{

display:flex;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.notice-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.notice-date{

    background:#E8F4FD;
    color:#0B3C5D;

width:110px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.notice-date h3{

font-size:60px;

color:#64748B;
margin:0;

font-weight:700;

}

.notice-date span{

font-size:18px;

letter-spacing:1px;

}

.notice-content{

padding:28px;

flex:1;

position:relative;

}

.notice-content h4{

font-size:22px;

color:#0B3C5D;

margin-bottom:12px;

font-weight:700;

}

.notice-content p{

color:#64748B;

line-height:1.7;

margin-bottom:20px;

}

.notice-footer{

display:flex;

justify-content:space-between;

align-items:center;

}

.notice-footer a{

text-decoration:none;

font-weight:600;

color:#0B3C5D;

transition:.3s;

}

.notice-footer a:hover{

color:#D4AF37;

}

.notice-footer i{

margin-right:8px;

}

.new-badge{

position:absolute;

top:20px;

right:20px;

background:#D4AF37;

color:#08263C;

padding:5px 14px;

border-radius:20px;

font-size:12px;

font-weight:700;

}

.view-all-btn{

padding:12px 28px;

background:#0B3C5D;

color:#fff;

border-radius:40px;

text-decoration:none;

transition:.35s;

}

.view-all-btn:hover{

background:#D4AF37;

color:#08263C;

}

@media(max-width:768px){

.notice-card{

flex-direction:column;

}

.notice-date{

width:100%;

height:90px;

flex-direction:row;

gap:10px;

}

.notice-footer{

flex-direction:column;

align-items:flex-start;

gap:12px;

}

}



/*=========================================
NOTICE VIEW PAGE
==========================================*/




.notice-view-section{

    background:#F8FAFC;

    padding:80px 0;

}

.notice-view-card{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:40px;

}

.notice-header{

    border-bottom:2px solid #E5E7EB;

    padding-bottom:25px;

    margin-bottom:35px;

}

.notice-meta{

    display:flex;

    gap:15px;

    margin-bottom:20px;

    flex-wrap:wrap;

}

.notice-date{

    background:#0B3C5D;

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

}

.notice-date i{

    margin-right:8px;

    color:#D4AF37;

}

.notice-category{

    background:#D4AF37;

    color:#08263C;

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

}

.notice-title{

    font-size:38px;

    font-weight:700;

    color:#0B3C5D;

    line-height:1.4;

    margin-bottom:15px;

}

.notice-body{

    font-size:17px;

    color:#444;

    line-height:2;

    text-align:justify;

}

.notice-link{

    margin-top:30px;

    font-size:17px;

}

.notice-link a{

    text-decoration:none;

    color:#0B3C5D;

    font-weight:600;

}

.notice-actions{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.btn-download{

    background:#0B3C5D;

    color:#fff;

    padding:14px 30px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.btn-download:hover{

    background:#D4AF37;

    color:#08263C;

}

.btn-back{

    background:#EDF5FA;

    color:#0B3C5D;

    padding:14px 30px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.btn-back:hover{

    background:#0B3C5D;

    color:#fff;

}

.pdf-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.pdf-header{

    padding:20px 30px;

    border-bottom:1px solid #eee;

    background:#F8FAFC;

}

.pdf-header h3{

    margin:0;

    color:#0B3C5D;

}

.pdf-card iframe{

    display:block;

}

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

.footer{

    background:#08263C;

    color:#E5E7EB;

    padding:70px 0 0;

}

.footer h4{

    color:#D4AF37;

    font-weight:700;

    margin-bottom:20px;

}

.footer h5{

    color:#D4AF37;

    margin-bottom:20px;

    position:relative;

}

.footer h5::after{

    content:"";

    width:40px;

    height:3px;

    background:#D4AF37;

    display:block;

    margin-top:10px;

}

.footer p{

    color:#cfd8dc;

    line-height:1.9;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#E5E7EB;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    line-height:1.8;

}

.contact-info i{

    color:#D4AF37;

    margin-top:4px;

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.35s;

}

.social-links a:hover{

    background:#D4AF37;

    color:#08263C;

    transform:translateY(-6px);

}

.footer-bottom{

    margin-top:50px;

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

    padding:20px 0;

    font-size:15px;

    color:#bfc8cf;

}

.footer-bottom strong{

    color:#D4AF37;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.contact-info li{

justify-content:center;

}

.social-links{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

}


/*social Media Section*/



.social-connect{

background:#F8FAFC;

padding:80px 0;

}

.social-card{

background:#fff;

padding:45px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.social-card:hover{

transform:translateY(-10px);

}

.social-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:42px;

color:#fff;

margin-bottom:25px;

}

.whatsapp-card .social-icon{

background:#25D366;

}

.facebook-card .social-icon{

background:#1877F2;

}

.social-card h3{

color:#0B3C5D;

margin-bottom:15px;

font-weight:700;

}

.social-card p{

color:#64748B;

line-height:1.8;

margin-bottom:30px;

}

.social-btn{

background:#0B3C5D;

color:#fff;

padding:12px 30px;

border-radius:40px;

text-decoration:none;

display:inline-block;

transition:.3s;

}

.social-btn:hover{

background:#D4AF37;

color:#08263C;

}

/* Report Section */


.reports-section{

    background:#F8FAFC;

    padding:90px 0;

}

.report-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #edf1f5;

}

.report-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.report-icon{

    width:120px;
    height:120px;

    border-radius:24px;

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

    font-size:52px;

    margin:0 auto 30px;

    background:linear-gradient(135deg,#0B3C5D,#1E5AA8);

    color:#fff;

    box-shadow:0 15px 35px rgba(11,60,93,.25);

    transition:.4s;

}

.report-card:hover .report-icon{

    transform:translateY(-6px) scale(1.05);

    box-shadow:0 20px 45px rgba(11,60,93,.35);

}
/* Individual icon colors */

.annual{background:#0B3C5D;}

.aqar{background:#D4AF37;color:#08263C;}

.audit{background:#198754;}

.green{background:#28a745;}

.gender{background:#8B5CF6;}

.more{background:#6C757D;}

.report-card h4{

    color:#0B3C5D;

    font-weight:700;

    margin-bottom:15px;

}

.report-card p{

    color:#64748B;

    line-height:1.8;

    min-height:70px;

}

.report-btn{

    display:inline-block;

    margin-top:15px;

    padding:12px 28px;

    background:#0B3C5D;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.report-btn:hover{

    background:#D4AF37;

    color:#08263C;

}


/*=====================================
FORMS HERO
=====================================*/

.forms-hero{

background:linear-gradient(135deg,#0B3C5D,#1B5E8C);

padding:90px 0;

color:#fff;

}

.hero-badge{

display:inline-block;

background:#D4AF37;

color:#08263C;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.hero-title{

font-size:52px;

font-weight:700;

margin-bottom:20px;

}

.hero-text{

font-size:18px;

opacity:.9;

line-height:1.8;

max-width:650px;

}

.hero-icon{

width:180px;

height:180px;

margin:auto;

background:rgba(255,255,255,.12);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:80px;

backdrop-filter:blur(10px);

}


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

.search-section{

padding:50px 0;

background:#F8FAFC;

}

.search-wrapper{

background:#fff;

padding:20px 25px;

border-radius:50px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

display:flex;

align-items:center;

}

.search-wrapper i{

font-size:22px;

color:#0B3C5D;

margin-right:15px;

}

.search-wrapper input{

border:none;

width:100%;

outline:none;

font-size:18px;

}


/*=====================================
STATISTICS FACULTY 
=====================================*/

.stats-section{

padding:20px 0 70px;

background:#F8FAFC;

}

.stat-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

transition:.35s;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box i{

font-size:42px;

color:#D4AF37;

margin-bottom:15px;

}

.stat-box h2{

font-size:36px;

font-weight:700;

color:#0B3C5D;

margin-bottom:5px;

}

.stat-box p{

color:#64748B;

margin:0;

}


.report-card{

background:#fff;

border-radius:18px;

padding:35px;

height:100%;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

text-align:center;

}

.report-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.report-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:#EFF6FF;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

color:#0B3C5D;

margin-bottom:20px;

}

.report-badge{

display:inline-block;

padding:6px 18px;

background:#D4AF37;

border-radius:30px;

font-size:13px;

font-weight:600;

margin-bottom:15px;

}

.report-card h3{

font-size:34px;

font-weight:700;

color:#0B3C5D;

}

.report-footer{

display:flex;

justify-content:center;

gap:12px;

margin-top:25px;

}

.view-btn{

background:#0B3C5D;

color:#fff;

padding:10px 18px;

border-radius:30px;

text-decoration:none;

}

.download-btn{

background:#D4AF37;

color:#08263C;

padding:10px 18px;

border-radius:30px;

text-decoration:none;

}




/* FACULTY*/

.faculty-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.faculty-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.faculty-image{

padding:25px 25px 10px;

text-align:center;

}

.faculty-image img{

width:180px;

height:220px;

object-fit:cover;

border-radius:18px;

border:5px solid #ffffff;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.35s;

}

.faculty-card:hover .faculty-image img{

transform:scale(1.05);

}

.faculty-content{

padding:20px;

text-align:center;

}

.faculty-name{

font-size:20px;

font-weight:700;

color:#0B3C5D;

margin-bottom:6px;

}

.designation{

color:#D4AF37;

font-weight:600;

margin-bottom:15px;

font-size:15px;

}

.department-badge{

display:inline-block;

background:#EDF5FF;

color:#0B3C5D;

padding:7px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

margin-bottom:20px;

}

.faculty-info{

text-align:left;

font-size:14px;

color:#555;

margin-bottom:20px;

}

.faculty-info p{

margin-bottom:10px;

}

.faculty-info i{

width:24px;

color:#0B3C5D;

}

.profile-btn{

display:block;

background:#0B3C5D;

color:#fff;

padding:12px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.profile-btn:hover{

background:#D4AF37;

color:#08263C;

}

@media(max-width:768px){

.faculty-image img{

width:150px;

height:180px;

}

}

.faculty-hero{

background:linear-gradient(135deg,#0B3C5D,#144F73);

padding:80px 0;

color:#fff;

}

.hero-tag{

display:inline-block;

background:#D4AF37;

color:#08263C;

padding:8px 18px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.faculty-hero h1{

font-size:55px;

font-weight:700;

margin-bottom:20px;

}

.faculty-hero p{

font-size:18px;

max-width:650px;

opacity:.95;

}

.hero-icon{

width:180px;

height:180px;

margin:auto;

background:rgba(255,255,255,.1);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:80px;

color:#D4AF37;

}

.faculty-toolbar{

background:#fff;

padding:35px 0;

box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.search-box{

position:relative;

}

.search-box i{

position:absolute;

left:18px;

top:17px;

color:#0B3C5D;

}

.search-box input{

width:100%;

padding:15px 20px 15px 50px;

border-radius:50px;

border:1px solid #ddd;

outline:none;

}

.department-filter{

display:flex;

gap:10px;

flex-wrap:wrap;

justify-content:end;

}

.department-filter button{

border:none;

padding:10px 18px;

border-radius:30px;

background:#EFF6FF;

color:#0B3C5D;

font-weight:600;

transition:.3s;

}

.department-filter button:hover,

.department-filter button.active{

background:#0B3C5D;

color:#fff;

}

.faculty-stats{

padding:60px 0;

background:#F8FAFC;

}

.stat-card{

background:#fff;

padding:30px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card i{

font-size:42px;

color:#D4AF37;

margin-bottom:15px;

}

.stat-card h2{

color:#0B3C5D;

font-size:34px;

font-weight:700;

}

.stat-card p{

margin:0;

color:#64748B;

}


/* EVENT */

.event-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.event-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.event-image{

position:relative;

overflow:hidden;

}

.event-image img{

width:100%;

height:240px;

object-fit:cover;

transition:.4s;

}

.event-card:hover .event-image img{

transform:scale(1.08);

}

.event-category{

position:absolute;

top:15px;

left:15px;

background:#D4AF37;

color:#08263C;

padding:7px 16px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.event-body{

padding:25px;

}

.event-date{

color:#0B3C5D;

font-size:14px;

margin-bottom:12px;

}

.event-date i{

margin-right:6px;

}

.event-body h4{

font-size:22px;

font-weight:700;

color:#0B3C5D;

margin-bottom:15px;

}

.event-body p{

color:#64748B;

line-height:1.7;

margin-bottom:20px;

}

.event-footer{

padding:20px 25px;

border-top:1px solid #EEF2F7;

}

.event-footer a{

text-decoration:none;

font-weight:600;

color:#0B3C5D;

transition:.3s;

}

.event-footer a:hover{

color:#D4AF37;

}

.event-footer i{

margin-right:8px;

}


/*==================================
        EVENTS HERO
==================================*/

.event-hero{
    background:linear-gradient(135deg,#0B3C5D,#144F73);
    padding:80px 0;
    color:#fff;
}

.hero-badge{
    display:inline-block;
    background:#D4AF37;
    color:#08263C;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-text{
    font-size:18px;
    max-width:650px;
    opacity:.95;
}

.hero-icon{
    width:170px;
    height:170px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:80px;
    color:#D4AF37;
}

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

.event-search-section{
    background:#fff;
    padding:40px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.event-search{
    position:relative;
}

.event-search i{
    position:absolute;
    left:18px;
    top:18px;
    color:#0B3C5D;
}

.event-search input{
    width:100%;
    border:1px solid #ddd;
    border-radius:50px;
    padding:15px 20px 15px 50px;
    outline:none;
    transition:.3s;
}

.event-search input:focus{
    border-color:#0B3C5D;
}

/*==================================
        FILTER BUTTONS
==================================*/

.event-filter{
    display:flex;
    justify-content:end;
    gap:10px;
    flex-wrap:wrap;
}

.event-filter button{
    border:none;
    background:#EEF4FA;
    color:#0B3C5D;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.event-filter button:hover,
.event-filter button.active{
    background:#0B3C5D;
    color:#fff;
}

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

.event-stats{
    padding:60px 0;
    background:#F8FAFC;
}

.stat-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card i{
    font-size:42px;
    color:#D4AF37;
    margin-bottom:15px;
}

.stat-card h2{
    color:#0B3C5D;
    font-size:36px;
    font-weight:700;
}

.stat-card p{
    margin:0;
    color:#64748B;
}

/*==================================
        EVENT CARD
==================================*/

.event-section{
    padding:70px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0B3C5D;
}

.section-heading p{
    color:#64748B;
}

.event-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-image{
    position:relative;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.event-card:hover img{
    transform:scale(1.08);
}

.event-category{
    position:absolute;
    top:15px;
    left:15px;
    background:#D4AF37;
    color:#08263C;
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.event-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.event-date{
    color:#0B3C5D;
    font-weight:600;
    margin-bottom:12px;
}

.event-content h4{
    color:#0B3C5D;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.event-content p{
    color:#64748B;
    line-height:1.7;
    flex:1;
}

.event-meta{
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:15px 0;
    margin:20px 0;
}

.event-meta div{
    margin-bottom:10px;
}

.event-meta i{
    color:#D4AF37;
    width:25px;
}

.read-btn{
    display:inline-block;
    background:#0B3C5D;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:40px;
    transition:.3s;
}

.read-btn:hover{
    background:#D4AF37;
    color:#08263C;
}

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

@media(max-width:991px){

.hero-title{
    font-size:42px;
}

.hero-icon{
    margin-top:40px;
}

.event-filter{
    justify-content:center;
    margin-top:20px;
}

}

@media(max-width:768px){

.hero-title{
    font-size:34px;
}

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

}

.event-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.event-card-link:hover{
    text-decoration:none;
    color:inherit;
}


/*=====================================================
                DMM WEB TEAM
======================================================*/

:root{
    --primary:#0B3C5D;
    --secondary:#D4AF37;
    --light:#F8FAFC;
    --dark:#1E293B;
    --white:#ffffff;
}

/*=========================================
Hero Section
=========================================*/

.webteam-hero{
    background:linear-gradient(135deg,#0B3C5D,#124E78);
    color:#fff;
    padding:90px 0;
    overflow:hidden;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-badge i{
    color:#FFD54F;
    margin-right:8px;
}

.webteam-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.webteam-hero p{
    font-size:18px;
    line-height:30px;
    opacity:.95;
}

.hero-icon{
    width:220px;
    height:220px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    border:8px solid rgba(255,255,255,.12);
}

.hero-icon i{
    font-size:90px;
    color:#FFD54F;
}

/*=========================================
Section Heading
=========================================*/

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/*=========================================
Team Section
=========================================*/

.team-section{
    padding:90px 0;
    background:#f8fbff;
}

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    padding:35px 25px;

    transition:.35s;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    height:100%;

    border-top:5px solid var(--secondary);

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.team-photo{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid var(--secondary);

    margin-bottom:20px;

}

.team-card h4{

    font-weight:700;

    color:var(--primary);

    margin-bottom:8px;

}

.designation{

    display:block;

    color:#777;

    margin-bottom:12px;

}

.role{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:8px 20px;

    border-radius:25px;

    margin-bottom:20px;

    font-weight:600;

}

.team-card ul{

    text-align:left;

    list-style:none;

    padding-left:0;

    margin:25px 0;

}

.team-card ul li{

    margin-bottom:12px;

    padding-left:28px;

    position:relative;

    color:#555;

}

.team-card ul li:before{

    content:"✓";

    color:var(--secondary);

    position:absolute;

    left:0;

    font-weight:bold;

}

.team-btn{

    display:inline-block;

    background:var(--secondary);

    color:#08263C;

    padding:12px 28px;

    border-radius:35px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.team-btn:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================================
Services
=========================================*/

.services-section{

    padding:90px 0;

    background:#fff;

}

.service-box{

    background:#fff;

    text-align:center;

    padding:40px 20px;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    border-bottom:5px solid transparent;

    height:100%;

}

.service-box:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

}

.service-box i{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:20px;

}

.service-box h5{

    color:var(--primary);

    font-weight:700;

}

/*=========================================
Facts
=========================================*/

.facts-section{

    background:linear-gradient(135deg,#0B3C5D,#124E78);

    padding:80px 0;

    color:#fff;

}

.fact-box{

    padding:20px;

}

.fact-box h2{

    color:#FFD54F;

    font-size:48px;

    font-weight:700;

}

.fact-box p{

    font-size:18px;

    margin-top:10px;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){

.hero-icon{

margin-top:50px;

}

.webteam-hero{

text-align:center;

}

.webteam-hero h1{

font-size:40px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:767px){

.team-photo{

width:140px;

height:140px;

}

.webteam-hero{

padding:70px 0;

}

.webteam-hero h1{

font-size:34px;

}

.hero-icon{

width:170px;

height:170px;

}

.hero-icon i{

font-size:70px;

}

.fact-box{

margin-bottom:30px;

}

}


/*====================================================
                EVENT VIEW PAGE
====================================================*/

:root{
    --primary:#0B3C5D;
    --secondary:#D4AF37;
    --light:#f8f9fa;
    --dark:#1f2937;
    --white:#ffffff;
}

/*==========================
Hero Section
==========================*/

.event-view-hero{

padding:90px 0;

background:linear-gradient(135deg,#0B3C5D,#124E78);

color:#fff;

overflow:hidden;

}

.event-badge{

display:inline-block;

padding:10px 22px;

background:#D4AF37;

color:#08263C;

font-weight:700;

border-radius:30px;

margin-bottom:20px;

}

.event-badge i{

margin-right:8px;

}

.event-view-hero h1{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.event-view-hero p{

font-size:18px;

line-height:30px;

opacity:.95;

}

.hero-meta{

margin-top:30px;

display:flex;

flex-wrap:wrap;

gap:20px;

}

.hero-meta span{

background:rgba(255,255,255,.12);

padding:12px 20px;

border-radius:30px;

}

.hero-meta i{

color:#FFD54F;

margin-right:8px;

}

.hero-image{

width:100%;

height:420px;

object-fit:cover;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.25);

}

/*==========================
Information Cards
==========================*/

.event-info-section{

padding:70px 0;

background:#f8fbff;

}

.info-card{

background:#fff;

padding:35px;

border-radius:16px;

text-align:center;

transition:.35s;

box-shadow:0 8px 25px rgba(0,0,0,.08);

height:100%;

}

.info-card:hover{

transform:translateY(-8px);

}

.info-card i{

font-size:40px;

color:#D4AF37;

margin-bottom:20px;

}

.info-card h6{

font-weight:700;

color:#0B3C5D;

margin-bottom:10px;

}

.info-card p{

margin:0;

}

/*==========================
Description
==========================*/

.event-description{

padding:80px 0;

}

.section-title{

margin-bottom:40px;

text-align:center;

}

.section-title h2{

font-size:40px;

font-weight:700;

color:#0B3C5D;

}

.description-box{

background:#fff;

padding:45px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

line-height:34px;

font-size:17px;

color:#555;

}

/*==========================
Gallery
==========================*/

.gallery-image{

width:100%;

height:220px;

object-fit:cover;

border-radius:14px;

transition:.35s;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.gallery-image:hover{

transform:scale(1.05);

}

/*==========================
Share
==========================*/

.share-card{

background:#0B3C5D;

color:#fff;

padding:45px;

border-radius:18px;

text-align:center;

}

.share-card h4{

margin-bottom:25px;

font-weight:700;

}

.share-icons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.share-icons a{

width:55px;

height:55px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

color:#0B3C5D;

font-size:22px;

transition:.3s;

text-decoration:none;

}

.share-icons a:hover{

background:#D4AF37;

color:#08263C;

transform:translateY(-6px);

}

/*==========================
Related Events
==========================*/

.related-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.related-card:hover{

transform:translateY(-8px);

}

.related-card img{

width:100%;

height:230px;

object-fit:cover;

}

.related-body{

padding:25px;

}

.related-body span{

font-size:14px;

color:#888;

}

.related-body h5{

margin:15px 0;

font-weight:700;

color:#0B3C5D;

}

.related-body p{

color:#666;

min-height:70px;

}

/*==========================
Navigation
==========================*/

.event-navigation{

background:#f8fbff;

}

.event-navigation .btn{

padding:12px 28px;

font-weight:600;

border-radius:30px;

}

/*==========================
Buttons
==========================*/

.btn-primary{

background:#0B3C5D;

border:none;

}

.btn-primary:hover{

background:#D4AF37;

color:#08263C;

}

.btn-warning{

background:#D4AF37;

border:none;

color:#08263C;

font-weight:700;

}

.btn-warning:hover{

background:#0B3C5D;

color:#fff;

}

/*==========================
Animations
==========================*/

.info-card,
.related-card,
.gallery-image,
.hero-image{

transition:.35s;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.event-view-hero{

text-align:center;

padding:70px 0;

}

.hero-image{

margin-top:40px;

height:320px;

}

.hero-meta{

justify-content:center;

}

}

@media(max-width:768px){

.event-view-hero h1{

font-size:34px;

}

.hero-image{

height:260px;

}

.gallery-image{

height:180px;

}

.description-box{

padding:25px;

}

.hero-meta{

flex-direction:column;

align-items:center;

}

.section-title h2{

font-size:30px;

}

}


/*==================================
BACK TO TOP
==================================*/

#backTop{

position:fixed;

bottom:25px;

right:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0B3C5D;

color:#fff;

font-size:20px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

#backTop.show{

opacity:1;

visibility:visible;

}

#backTop:hover{

background:#D4AF37;

color:#08263C;

transform:translateY(-5px);

}

.hero-image{

transition:.4s ease;

}

.gallery-image{

cursor:pointer;

}

.related-card{

transition:.35s ease;

}


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.gallery-hero{
    text-align:center;
}

.gallery-icon{
    margin-top:40px;
}

.gallery-filter{
    justify-content:center;
    margin-top:20px;
}

}

@media(max-width:768px){

.gallery-title{
    font-size:34px;
}

.gallery-image img{
    height:220px;
}

.gallery-footer{
    flex-direction:column;
    gap:15px;
}

.gallery-content{
    padding:20px;
}

.stat-card{
    padding:25px;
}

.gallery-cta{
    text-align:center;
}

.btn-gallery{
    margin-top:20px;
}

}

/*====================================
      DMM PHOTO GALLERY
====================================*/

.gallery-hero{

background:linear-gradient(135deg,#0B3C5D,#1d5f8f);

padding:90px 0;

color:#fff;

position:relative;

overflow:hidden;

}

.gallery-hero::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-120px;

right:-100px;

}

.gallery-hero::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-100px;

left:-80px;

}

.hero-badge{

display:inline-block;

padding:8px 20px;

background:#D4AF37;

color:#fff;

font-size:14px;

border-radius:40px;

margin-bottom:20px;

font-weight:600;

}

.hero-title{

font-size:54px;

font-weight:700;

margin-bottom:15px;

}

.hero-text{

font-size:18px;

opacity:.95;

line-height:1.8;

}

.hero-icon{

font-size:130px;

opacity:.18;

}

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

.gallery-search-section{

padding:40px 0;

background:#f8f9fa;

}

.gallery-search{

position:relative;

max-width:650px;

margin:auto;

}

.gallery-search input{

width:100%;

height:62px;

border:none;

border-radius:60px;

padding-left:60px;

padding-right:20px;

font-size:18px;

background:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.gallery-search input:focus{

outline:none;

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.gallery-search i{

position:absolute;

left:22px;

top:21px;

font-size:20px;

color:#0B3C5D;

}

/*====================================
GALLERY
====================================*/

.gallery-section{

padding:70px 0;

background:#f7f9fc;

}

.gallery-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.gallery-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(0,0,0,.18);

}

/*====================================
IMAGE
====================================*/

.gallery-image{

position:relative;

overflow:hidden;

height:260px;

}

.gallery-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.gallery-card:hover img{

transform:scale(1.12);

}

/*====================================
OVERLAY
====================================*/

.gallery-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(11,60,93,.75);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.35s;

}

.gallery-card:hover .gallery-overlay{

opacity:1;

}

.view-btn{

background:#D4AF37;

padding:12px 24px;

border-radius:40px;

color:#fff;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.view-btn:hover{

background:#fff;

color:#0B3C5D;

}

/*====================================
CAPTION
====================================*/

.gallery-content{

padding:20px;

}

.gallery-caption{

font-size:16px;

font-weight:600;

color:#222;

line-height:1.6;

margin:0;

text-align:center;

}

/*====================================
ANIMATION
====================================*/

.gallery-item{

animation:fadeUp .6s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

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

@media(max-width:992px){

.hero-title{

font-size:42px;

}

.gallery-image{

height:230px;

}

}

@media(max-width:768px){

.hero-title{

font-size:34px;

}

.hero-text{

font-size:16px;

}

.gallery-image{

height:220px;

}

}

@media(max-width:576px){

.gallery-image{

height:200px;

}

.gallery-search input{

height:55px;

font-size:16px;

}

.hero-title{

font-size:28px;

}

}

/* =====================================================
   DMM IMPORTANT UPDATES
===================================================== */

.dmm-important-updates {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Fixed label */

.dmm-updates-label {
    flex: 0 0 220px;
    background: #0B3C5D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
}

.dmm-updates-label i {
    color: #D4AF37;
    font-size: 18px;
}

/* Scrolling area */

.dmm-updates-window {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

/* Track */

.dmm-updates-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
    height: 54px;
    animation: dmmUpdatesMove 30s linear infinite;
}

/* Pause on hover */

.dmm-updates-window:hover .dmm-updates-track {
    animation-play-state: paused;
}

/* Individual update */

.dmm-update-item {
    display: inline-flex;
    align-items: center;
    height: 54px;
    padding: 0 22px;
}

/* Dot */

.dmm-update-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Link */

.dmm-update-link {
    color: #0B3C5D;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.dmm-update-link:hover {
    color: #D4AF37;
}

/* Plain text */

.dmm-update-text {
    color: #334155;
    font-size: 15px;
    font-weight: 600;
}

/* Separator */

.dmm-update-separator {
    color: #D4AF37;
    font-size: 20px;
    margin-left: 25px;
}

/* Animation */

@keyframes dmmUpdatesMove {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* Tablet */

@media (max-width: 768px) {

    .dmm-updates-label {
        flex: 0 0 160px;
        font-size: 12px;
        padding: 0 10px;
    }

    .dmm-updates-label i {
        font-size: 14px;
    }

    .dmm-update-link,
    .dmm-update-text {
        font-size: 13px;
    }

}

/* Mobile */

@media (max-width: 576px) {

    .dmm-important-updates {
        display: block;
    }

    .dmm-updates-label {
        width: 100%;
        height: 45px;
    }

    .dmm-updates-window {
        width: 100%;
    }

}




