body{
    margin:0;
    font-family:Arial;
    background:#fff;
}

.header,.branches,.services,.title-bar{
    background:#1ea8d8;
    color:#fff;
}

.header{
    display:flex;
    align-items:center;
    background:#1ea8d8;
    color:#fff;
    padding-left: 20px;
    width: 100%;
    min-height: 150px;
    height: auto;
}
    */

.header .logo img{
    width:150px;
    height:auto;
    background:#fff;
    border-radius: 50%;
}

.header-text{
    margin-left:25px;
}
.header-text h1{
    font:700 48px Oswald;
}
.header-text h2{
    font:48px 'Great Vibes',cursive;
}

.branches{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    width:100%;
    max-width:1400px;
    margin:30px auto;
    padding:30px 40px;
    background:#1ea8d8;
    color:#fff;
    border-radius:10px;
}

.products{
    display:grid;
    grid-template-columns:2fr 1fr;
}
.products>div{
    padding:25px;
}
.deposit{
    background:#f5e28d;
}
.services{
    text-align:center;
    padding:15px;
    font-weight:700;
}
.bottom{
    display:grid;
    grid-template-columns:2fr 1fr;
}
.bottom>div{
    padding:25px;
}

.hero{
    display:flex;
    min-height:90vh;
}
.left{
    flex:1;
    background:linear-gradient(135deg,#46d3e6,#0a49b5);
    clip-path:polygon(0 0,75% 0,100% 100%,0 100%);
    display:flex;
    justify-content:center;
    align-items:center;
}
.left img{
    width:60%;
    background:#fff;
    border-radius:50%;
    padding:20px
}
.right{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px
}
h1{
    font-size:72px;
    color:#1d2d5a;
}
.tag{
    display:inline-block;
    background:linear-gradient(90deg,#4bd7e7,#0b56bf);
    padding:10px 20px;

    font:48px 'Great Vibes',cursive;
    color: white;
}
.btn{
    background:#005b96;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
    border-radius:6px;
}
.content{
    padding:40px;
}

.navbar{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-around;
    align-items:center;

    background:#005b96;
    padding-left: 40px;
}

.nav-logo{
    justify-self:start;
}

.nav-menu{
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu > li{
    position:relative;
}

.nav-menu > li > a{
    display:block;
    padding: 18px 16px;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active{
    background:#FDB913;
    color:#000;
}

.navbar-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:420px;
    background:#fff;
    list-style:none;
    margin:0;
    padding:0;
    border-radius:0 0 6px 6px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    z-index:1000;
}

.dropdown-right .dropdown-menu{
    left:auto;
    right:0;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    white-space:normal;
    line-height:1.5;
}

.dropdown-menu li a:hover{
    background:#18b8e7;
    color:#fff;
}

.dropdown:hover > .dropdown-menu{
    display:block;
}

.dropdown:focus-within > .dropdown-menu{
    display:block;
}

@media (max-width:900px){

 .navbar{
    flex-direction:column;
    align-items:flex-start;
    padding:10px 20px;
}

.nav-menu{
    flex-direction:column;
    width:100%;
}

.nav-menu > li{
    width:100%;
}

.nav-menu > li > a{
    width:100%;
}

.dropdown-menu{
    display:none;
    position:static;
    background:#0b62b7;
    box-shadow:none;
    margin-left:15px;
    min-width:auto;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    color:#fff;
}

.dropdown-menu li a:hover{
    background:#005b96;
}

}

.title-bar{
    background:#FDB913;
    color:#003b73;
    text-align:center;
    font-family:'Oswald',sans-serif;
    font-size:36px;
    padding:15px;
    margin:0 0;
    font-weight:bold;
}

.products{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    padding:25px;
}

.product-card h2{
    margin-top:0;
    color:#005b96;
    border-bottom:3px solid #FDB913;
    padding-bottom:10px;
}

.loan-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.product-card ul{
    padding-left:20px;
}

.product-card li{
    margin-bottom:12px;
    font-size:18px;
}

.services{
    margin-top:35px;
    background:#18b8e7;
    color:#fff;
    text-align:center;
    padding:25px;
    border-radius:8px;
    font-size:24px;
    font-weight:bold;
}

.bottom{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin-top:35px;
}

.members{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.members-about-us{
    padding:25px;
    background:#fff;
    margin:40px 0;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.members-about-us h2{
    color:#005b96;
    margin-top:0;
}

.slogan{

    border-radius:10px;
    color:#005b96;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:34px;
    font-family:'Great Vibes',cursive;
    padding:25px;
}

.requirements-card,
.contact-card{
    background:#fff;
    padding:30px;
    margin-top:35px;
    border-radius:8px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.requirements-card h2,
.contact-card h2{
    margin-top:0;
    color:#005b96;
    border-bottom:4px solid #FDB913;
    padding-bottom:10px;
}

.requirements-card ol{
    padding-left:25px;
}

.requirements-card li{
    margin-bottom:15px;
    line-height:1.7;
}

.requirements-card ul{
    margin-top:10px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.contact-grid h3{
    color:#005b96;
    margin-bottom:10px;
}

.contact-grid p{
    margin:6px 0;
}

.about-card{
    background:#fff;
    padding:40px;
    margin:40px 0;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.about-card h2{
    margin-top:0;
    color:#005b96;
    font-family:'Oswald',sans-serif;
    border-bottom:4px solid #FDB913;
    padding-bottom:12px;
    margin-bottom:25px;
}

.about-card h3{
    color:#005b96;
    margin-top:35px;
    margin-bottom:15px;
}

.about-card p{
    line-height:1.9;
    font-size:18px;
    color:#444;
    text-align:justify;
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin:20px 0;
}

.two-column ul{
    margin:0;
    padding-left:25px;
}

.two-column li{
    margin-bottom:10px;
    font-size:18px;
}

.highlight-box{
    margin-top:40px;
    padding:30px;
    background:linear-gradient(135deg,#18b8e7,#005b96);
    color:#fff;
    border-radius:10px;
}

.highlight-box h3{
    color:#fff;
    margin-top:0;
}

.highlight-box p{
    color:#fff;
    margin-bottom:0;
    text-align:justify;
}

html{
    scroll-behavior:smooth;
}

.mission-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.mission-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:50px;
    padding:8px 18px;
    border-radius:5px;
    transition:.3s;
}

.mission-nav a:hover{
    background:rgba(255,255,255,.2);
    color: darkblue;

}

.mission-nav span{
    color:#fff;
    font-size:20px;
    font-weight:bold;
}

#mission,
#vision,
#commitment{
    scroll-margin-top:110px;
}

.info-card{
    background:#fff;
    padding:40px;
    margin:35px 0;
    border-radius:10px;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.info-card h2{
    color:#005b96;
    font-family:'Oswald',sans-serif;
    margin-top:15px;
    border-bottom:3px solid #FDB913;
    padding-bottom:10px;
}

.info-card p{
    font-size:18px;
    line-height:1.9;
    text-align:justify;
    color:#444;
}

.icon-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#18b8e7,#005b96);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:auto;
}

.commitment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:30px;
}

.commitment-box{
    background:#f8f9fb;
    border-left:6px solid #FDB913;
    padding:25px;
    border-radius:8px;
    transition:.3s;
}

.commitment-box:hover{
    transform:translateY(-4px);
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.commitment-box h3{
    color:#005b96;
    margin-top:0;
    margin-bottom:15px;
}

.commitment-box p{
    margin:0;
}

.full-width{
    grid-column:1 / -1;
}

.board-photo{
    width:140px;
    height:140px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #FDB913;
    background:#f4f4f4;

    display:flex;
    justify-content:center;
    align-items:center;
}

.board-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.board-photo.placeholder{
    position:relative;
}

.board-photo.placeholder::before{
    content:"Photo";
    font-size:18px;
    font-weight:bold;
    color:#888;
}
.board-intro{
    background:#fff;
    padding:35px;
    margin:35px 0;
    border-radius:10px;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
    text-align:center;
}

.board-intro h2{
    color:#005b96;
    font-family:'Oswald',sans-serif;
    margin-bottom:15px;
}

.board-intro p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
    color:#555;
}

.board-grid{
    max-width:1400px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:0 20px 40px;
}

.board-card{
    background:#fff;
    border-top:6px solid #FDB913;
    border-radius:10px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
    transition:.3s;
}

.board-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.board-card h3{
    font-family:'Oswald',sans-serif;
    color:#005b96;
    font-size:22px;
    margin:15px 0 10px;
}

.board-card p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#555;
}

.contact-wrapper{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.contact-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e6e6e6;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.contact-header{

    background:linear-gradient(135deg,#005b96,#18b8e7);

    color:#fff;

    text-align:center;

    padding:10px;
}

.contact-header h2{

    margin:0;

    color:white;

    font-size:38px;

    font-family:'Oswald',sans-serif;

    letter-spacing:1px;
}

.contact-header p{

    margin-top:20px;

    font-size:17px;

    line-height:1.8;

    max-width:700px;

    margin-left:auto;

    margin-right:auto;
}

.contact-body{

    padding:10px 10px 0px;
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.form-group{

    display:flex;

    flex-direction:column;
}

.form-group label{

    margin-bottom:10px;

    color:#005b96;

    font-size:17px;

    font-weight:600;
}

.form-group input{

    width:100%;

    height:60px;

    padding:16px 20px;

    border:1px solid #ccd5db;

    border-radius:8px;

    background:#fafafa;

    font-size:17px;

    transition:.3s;

    box-sizing:border-box;
}

.form-group textarea{

    width:100%;

    min-height:280px;

    padding:18px 20px;

    border:1px solid #ccd5db;

    border-radius:8px;

    background:#fafafa;

    font-family:'Roboto', Arial, sans-serif;

    font-size:17px;

    line-height:1.7;

    resize:vertical;

    transition:.3s;

    box-sizing:border-box;
}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#18b8e7;

    background:#fff;

    box-shadow:0 0 0 4px rgba(24,184,231,.15);
}

.button-group{
    display:flex;
    justify-content:flex-end;
    margin-top:20px;
}

.btn-submit{

    width:260px;
    height:58px;

    border:none;

    border-radius:8px;

    background:#005b96;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.btn-submit:hover{

    background:#FDB913;

    color:#000;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.mission-carousel{

    width:96%;
    max-width:1450px;
    margin:50px auto 80px;
    padding:0 90px;
    position:relative;
    overflow:visible;

}

.carousel-inner{

    overflow:visible;

}

.carousel-item{

    min-height:720px;
    padding:10px;

}

.carousel-indicators{

    bottom:-60px;

}

.carousel-indicators button{

    width:14px;
    height:14px;

    border-radius:50%;

    background:#005b96;
    border:none;

    margin:0 6px;

    opacity:.5;

}

.carousel-indicators .active{

    background:#FDB913;
    opacity:1;

}

.custom-carousel-btn{

    width:80px;
    opacity:1 !important;

}

.carousel-control-prev{

    left:-70px;

}

.carousel-control-next{

    right:-70px;

}

.arrow-circle{

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#005b96;

    color:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.3s;

}

.arrow-circle i{

    font-size:34px;
    font-weight:bold;

}

.arrow-circle:hover{

    background:#FDB913;
    color:#000;

    transform:scale(1.08);

}

.info-card{

    width:100%;

    background:#fff;

    border-radius:16px;

    padding:60px;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

.icon-circle{

    width:95px;
    height:95px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#18b8e7;

    font-size:42px;

}

.info-card h2{

    text-align:center;

    color:#005b96;

    font-family:'Oswald',sans-serif;

    font-size:46px;

    margin-bottom:10px;

}

.info-card p{

    font-size:20px;

    line-height:2;

    color:#444;

    text-align:justify;

}

.commitment-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:35px;

}

.commitment-box{

    background:#f8fbff;

    border-left:6px solid #18b8e7;

    border-radius:12px;

    padding:30px;

}

.commitment-box h3{

    color:#005b96;

    font-size:24px;

    margin-bottom:15px;

}

.commitment-box p{

    font-size:18px;

    line-height:1.8;

}

.full-width{

    grid-column:1 / -1;

}

@media(max-width:991px){

    .mission-carousel{

        width:100%;
        padding:0 20px;

    }

    .carousel-item{

        min-height:auto;

    }

    .carousel-control-prev{

        left:5px;

    }

    .carousel-control-next{

        right:5px;

    }

    .arrow-circle{

        width:48px;
        height:48px;

    }

    .arrow-circle i{

        font-size:24px;

    }

    .info-card{

        padding:35px;

    }

    .info-card h2{

        font-size:34px;

    }

    .info-card p{

        font-size:17px;

    }

    .commitment-grid{

        grid-template-columns:1fr;

    }

}

.anniversary-logo img{

    width:260px;

    max-width:100%;

    filter:drop-shadow(0 12px 20px rgba(0,0,0,.35));

}

.anniversary-text{

    color:#fff;

    max-width:850px;

}

.anniversary-hero{

    background:linear-gradient(135deg,#f8fbff,#eaf5ff);
    padding:60px 5%;
}

.hero-overlay{

    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.anniversary-content{

    flex:1;
}

.anniversary-image{

    flex:1;
    text-align:center;
}

.anniversary-image img{

    width:100%;
    max-width:650px;
    height:auto;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.anniversary-text{

    color:#1d2d5a;
}

.year-row{

    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.year-number{

    font-size:120px;
    font-family:'Oswald',sans-serif;
    font-weight:700;
    color:#d4a017;
    line-height:1;
}

.year-number sup{

    font-size:40px;
}

.bank-name h1{

    margin:0;
    color:#005b96;
    font-size:48px;
    font-family:'Oswald',sans-serif;
}

.bank-name h2{

    margin:0;
    color:#18b8e7;
    font-size:72px;
    font-family:'Oswald',sans-serif;
}

.anniversary-title{

    font-size:58px;
    color:#d4a017;
    margin:10px 0 20px;
    font-family:'Oswald',sans-serif;
}

.location{

    font-family:'Great Vibes',cursive;
    font-size:42px;
    color:#005b96;
}

.date{

    font-size:32px;
    font-weight:bold;
    margin:10px 0 25px;
}

.tagline{

    font-size:22px;
    font-style:italic;
    margin-bottom:30px;
}

.anniversary-text p{

    font-size:18px;
    line-height:1.8;
    text-align:justify;
}

@media(max-width:992px){

    .hero-overlay{

        flex-direction:column-reverse;
        text-align:center;
    }

    .year-row{

        justify-content:center;
        flex-wrap:wrap;
    }

    .bank-name h1{

        font-size:36px;
    }

    .bank-name h2{

        font-size:52px;
    }

    .year-number{

        font-size:90px;
    }

    .anniversary-title{

        font-size:44px;
    }

    .location{

        font-size:34px;
    }

    .anniversary-image img{

        max-width:500px;
    }

}

.year-row{

    display:flex;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.year-number{

    font-family:'Oswald',sans-serif;

    font-size:180px;

    line-height:1;

    color:#f8c14c;

    text-shadow:6px 6px 0 rgba(0,0,0,.35);

}

.year-number sup{

    font-size:55px;

}

.bank-name h1{

    margin:0;

    font-family:'Oswald',sans-serif;

    font-size:70px;

    color:#33d0ff;

    line-height:1;

    text-shadow:4px 4px 0 rgba(0,0,0,.35);

}

.bank-name h2{

    margin:0;

    font-family:'Oswald',sans-serif;

    font-size:88px;

    color:#33d0ff;

    line-height:1;

    text-shadow:4px 4px 0 rgba(0,0,0,.35);

}

.anniversary-title{

    margin:20px 0;

    font-family:'Oswald',sans-serif;

    font-size:82px;

    color:#f8c14c;

    text-shadow:4px 4px 0 rgba(0,0,0,.35);

}

.location{

    font-family:'Great Vibes',cursive;

    font-size:52px;

}

.date{

    font-family:'Oswald',sans-serif;

    font-size:34px;

    letter-spacing:6px;

    margin-top:10px;

}

.tagline{

    margin-top:30px;

    font-size:26px;

    font-style:italic;

    line-height:1.7;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:15px 35px;

    background:#FDB913;

    color:#003b73;

    text-decoration:none;

    font-weight:bold;

    border-radius:8px;

    transition:.3s;

}

.hero-buttons .btn:hover{

    transform:translateY(-3px);

}

.btn-outline{

    background:transparent !important;

    color:#fff !important;

    border:2px solid #fff;

}

.welcome-section{

    padding:70px 10%;

    background:#ffffff;

}

.welcome-container{

    max-width:1100px;

    margin:auto;

    text-align:center;

}

.welcome-container h2{

    color:#005b96;

    font-family:'Oswald',sans-serif;

    font-size:42px;

}

.welcome-container p{

    font-size:20px;

    line-height:1.9;

    color:#555;

}

@media(max-width:992px){

    .anniversary-content{

        flex-direction:column;

        text-align:center;

    }

    .year-row{

        justify-content:center;

    }

    .year-number{

        font-size:120px;

    }

    .bank-name h1{

        font-size:48px;

    }

    .bank-name h2{

        font-size:60px;

    }

    .anniversary-title{

        font-size:56px;

    }

    .location{

        font-size:40px;

    }

}

.announcement-wrapper{

    width:95%;

    max-width:1400px;

    margin:40px auto;

}

.announcement-carousel{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.announcement-slide{

    display:none;

}

.announcement-slide.active{

    display:block;

}

.announcement-slide img{

    width:100%;

    display:block;

    max-height:750px;

    object-fit:contain;

    background:#f7f7f7;

}

.carousel-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

.carousel-btn:hover{

    background:#005b96;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.carousel-dots{
    position:absolute;
    bottom:-60px;
    width:100%;
}
.dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#ddd;

    cursor:pointer;

}

.dot.active{

    background:#FDB913;

}

.no-announcement{

    background:#fff;

    padding:60px;

    text-align:center;

    font-size:22px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.search-form{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:0;
}

.search-button{
    display:flex;
    align-items:center;
    margin-left:8px;      
}

.search-icon-btn{
    width:52px;   
    height:52px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#005b96;
    color:#fff;
    text-decoration:none;
    font-size:24px;       
    transition:.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

.search-icon-btn:hover{
    background:#FDB913;
    color:#005b96;
    transform:scale(1.08);
}

.search-page-form input{
    width:220px;
    height:40px;
    padding:0 12px;
    border:none;
    border-radius:20px;
    outline:none;
    font-size:15px;
}

.search-page-form button{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#ffd54f;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
    margin-right: 100px;
}

.search-page-form button:hover{
    background:#005b96;
}

.search-result{
    padding:15px 0;
}

.search-result h3{
    margin:0;
}

.search-result a{
    text-decoration:none;
    color:#005b96;
    font-size:24px;
    font-weight:bold;
}

.search-result a:hover{
    color:#18b8e7;
}

.search-result p{
    margin-top:8px;
    color:#555;
}

.requirements-link {
    margin-top: 30px;
    text-align: left;
    display: flex;
    gap: 300px;
    flex-wrap: wrap;
}

.requirements-btn{
    display:inline-block;
    padding:12px 24px;
    background:#005b96;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    border-radius:6px;
    transition:all .3s ease;
}

.requirements-btn:hover{
    background:#FDB913;
    color:#000;
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(0,0,0,.15);
}

.announcement-slide{
    text-align:center;
}

.announcement-slide img{
    display:block;
    margin:0 auto;
}

.announcement-title{
    margin-top:18px;
    font-family:'Oswald',sans-serif;
    font-size:28px;
    font-weight:600;
    color:#005b96;
    text-align:center;
    letter-spacing:.5px;
}

.map-link{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.map-link:hover{
    color:#FDB913;
    text-decoration:underline;
}

.branches h3 .map-link{
    color:white;
}

.branches h3 .map-link:hover{
    color:#FDB913;
}

.loan-list{
    list-style:none;
    padding:0;
    margin:0;
}

.loan-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 0;
    font-size:18px;
    border-bottom:1px solid #ececec;
    transition:.25s;
}

.loan-list li:last-child{
    border-bottom:none;
}

.loan-list li:hover{
    color:#005b96;
    transform:translateX(6px);
}

.loan-list i{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#18b8e7;
    color:#fff;
    border-radius:50%;
    font-size:16px;
    flex-shrink:0;
}

.deposit-list{
    list-style:none;
    padding:0;
    margin:0;
}

.deposit-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:12px 0;
    font-size:18px;
    border-bottom:1px solid #ececec;
    transition:.25s;
}

.deposit-list li:last-child{
    border-bottom:none;
}

.deposit-list li:hover{
    color:#005b96;
    transform:translateX(6px);
}

.deposit-list i{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#FDB913;
    color:#005b96;
    border-radius:50%;
    font-size:16px;
    flex-shrink:0;
}

.deposit-sub{
    margin-left:30px;
    font-size:16px !important;
    color:#666;
}

.deposit-sub i{
    width:30px;
    height:30px;
    background:#18b8e7;
    color:#fff;
    font-size:14px;
}

.pdic-box{
    margin-top:25px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:18px;
    background:#eef8ff;
    border-left:5px solid #005b96;
    border-radius:8px;
}

.pdic-box i{
    font-size:42px;
    color:#005b96;
}

.pdic-box strong{
    color:#005b96;
}

.member-list{
    list-style:none;
    margin:0;
    padding:0;
}

.member-list li{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px 0;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.member-list li:last-child{
    border-bottom:none;
}

.member-list li:hover{
    transform:translateX(6px);
}

.member-list i{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#005b96;
    color:#fff;
    font-size:22px;
}

.member-list strong{
    color:#005b96;
    display:block;
    margin-bottom:5px;
    font-size:18px;
}

.member-list div{
    line-height:1.6;
    color:#555;
}

.board-section-title{
    margin:60px auto 30px;
    text-align:center;
    font-family:'Oswald',sans-serif;
    font-size:42px;
    color:#005b96;
    position:relative;
    text-transform:uppercase;
    letter-spacing:1px;
}

.board-section-title::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#FDB913;
    margin:12px auto 0;
    border-radius:3px;
}

.board-grid{
    margin-bottom:60px;
}

@media(max-width:900px){

    .board-section-title{
        font-size:30px;
    }

}

.requirements-card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    margin:40px auto;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.requirements-card h2{
    color:#005b96;
    font-family:'Oswald',sans-serif;
    border-bottom:3px solid #FDB913;
    padding-bottom:12px;
    margin-bottom:30px;
}

.requirements-grid{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.requirement-item{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:35px;
    align-items:center;
    background:#fdfdfd;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.requirement-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.requirement-image img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    border:4px solid #FDB913;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.requirement-content h3{
    color:#005b96;
    font-family:'Oswald',sans-serif;
    margin-bottom:20px;
}

.requirement-content p{
    font-size:17px;
    line-height:1.8;
}

.id-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:15px;
}

.id-grid span{
    background:#eef3fa;
    padding:12px 15px;
    border-left:5px solid #18b8e7;
    border-radius:6px;
    font-size:15px;
}

@media(max-width:900px){

    .requirement-item{
        grid-template-columns:1fr;
        text-align:center;
    }

    .requirement-image img{
        width:260px;
        height:260px;
    }

    .id-grid{
        grid-template-columns:1fr;
    }

}

.branch-anniversary{
    margin:40px auto;
    max-width:2300px;
    padding:0 20px;
}

.anniversary-card{
    display:flex;
    align-items:center;
    gap:35px;
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.anniversary-image-pagsanjan{
    flex:0 0 360px;
}

.anniversary-image-pagsanjan img{
    width:100%;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.anniversary-info{
    flex:1;
}

.anniversary-info h2{
    color:#005b96;
    font-family:'Oswald',sans-serif;
    margin-bottom:20px;
}

.anniversary-info h2 i{
    color:#FDB913;
    margin-right:10px;
}

.anniversary-info p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    text-align:justify;
}

@media(max-width:900px){

    .anniversary-card{
        flex-direction:column;
        text-align:center;
    }

    .anniversary-image{
        flex:0 0 auto;
        width:100%;
        max-width:420px;
    }

}

.coming-soon-card{
    max-width:900px;
    margin:60px auto;
    padding:60px 40px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.coming-icon{
    font-size:90px;
    color:#FDB913;
    margin-bottom:25px;
}

.coming-soon-card h2{
    font-family:'Oswald',sans-serif;
    color:#005b96;
    font-size:42px;
    margin-bottom:20px;
}

.coming-soon-card p{
    font-size:20px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.btn-home{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:#005b96;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    font-size:18px;
    transition:.3s;
}

.btn-home:hover{
    background:#FDB913;
    color:#003366;
}

.btn-home i{
    margin-right:8px;
}

@media(max-width:768px){

    .coming-soon-card{
        margin:30px 20px;
        padding:40px 25px;
    }

    .coming-icon{
        font-size:70px;
    }

    .coming-soon-card h2{
        font-size:30px;
    }

    .coming-soon-card p{
        font-size:17px;
    }

}

.search-page{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 20px;

}

.search-box{

    width:100%;

    max-width:700px;

    background:#fff;

    border-radius:15px;

    padding:45px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.search-box h2{

    color:#005b96;

    font-family:'Oswald',sans-serif;

    margin-bottom:15px;

}

.search-box p{

    color:#666;

    margin-bottom:30px;

}

.search-form-page{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.search-form-page input{

    width:450px;

    max-width:100%;

    padding:14px 18px;

    border:2px solid #005b96;

    border-radius:30px;

    font-size:17px;

    outline:none;

    transition:.3s;

}

.search-form-page input:focus{

    border-color:#FDB913;

    box-shadow:0 0 10px rgba(253,185,19,.3);

}

.search-form-page button{

    background:#005b96;

    color:#fff;

    border:none;

    padding:14px 28px;

    border-radius:30px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.search-form-page button:hover{

    background:#FDB913;

    color:#005b96;

}

.search-page{

    max-width:1000px;

    margin:40px auto 70px;

    padding:0 20px;

}

.search-box{

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    text-align:center;

}

.search-box h2{

    color:#005b96;

    font-family:'Oswald',sans-serif;

    margin-bottom:15px;

}

.search-box p{

    color:#666;

    margin-bottom:30px;

}

.search-form-page{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

}

.search-form-page input{

    width:500px;

    max-width:100%;

    padding:14px 18px;

    border:2px solid #005b96;

    border-radius:30px;

    font-size:17px;

}

.search-form-page button{

    padding:14px 30px;

    border:none;

    border-radius:30px;

    background:#005b96;

    color:#fff;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.search-form-page button:hover{

    background:#FDB913;

    color:#005b96;

}

.search-results{

    margin-top:40px;

}

.search-results h3{

    color:#005b96;

    margin-bottom:20px;

    font-family:'Oswald',sans-serif;

}

.search-result-card{

    background:#fff;

    padding:25px;

    margin-bottom:20px;

    border-left:5px solid #FDB913;

    border-radius:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.search-result-card h4{

    margin-bottom:10px;

}

.search-result-card h4 a{

    color:#005b96;

    text-decoration:none;

}

.search-result-card h4 a:hover{

    text-decoration:underline;

}

.search-result-card p{

    color:#555;

    margin-bottom:15px;

}

.visit-link{

    color:#FDB913;

    font-weight:bold;

    text-decoration:none;

}

.visit-link:hover{

    color:#005b96;

}

.search-no-results{

    background:#fff;

    text-align:center;

    padding:40px;

    border-radius:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.search-no-results i{

    font-size:48px;

    color:#FDB913;

    margin-bottom:15px;

}

.search-no-results h4{

    color:#005b96;

}

.search-results{

    margin-top:35px;

    text-align:left;

}

.search-results h3{

    text-align:center;

    margin-bottom:25px;

    color:#005b96;

}

.search-result-card{

    margin-bottom:18px;

}

.search-no-results{

    margin-top:20px;

}

.loan-application-wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 40px auto 70px;
}

.loan-introduction {
    display: flex;
    align-items: center;
    gap: 25px;

    background: #fff;

    padding: 30px;

    margin-bottom: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0,0,0,.12);

    border-left: 6px solid #FDB913;
}

.loan-introduction-icon {
    width: 75px;
    height: 75px;

    min-width: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #005b96;

    color: #fff;

    font-size: 32px;
}

.loan-introduction h2 {
    margin: 0 0 10px;

    color: #005b96;

    font-family: 'Oswald', sans-serif;

    font-size: 32px;
}

.loan-introduction p {
    margin: 5px 0;

    color: #555;

    font-size: 17px;

    line-height: 1.7;
}

.loan-note {
    color: #005b96 !important;
}

.loan-error-box {
    background: #fff1f1;

    border-left: 6px solid #dc3545;

    padding: 20px 25px;

    margin-bottom: 30px;

    border-radius: 8px;

    color: #842029;
}

.loan-error-title {
    font-weight: bold;

    font-size: 18px;

    margin-bottom: 10px;
}

.loan-error-title i {
    margin-right: 8px;
}

.loan-error-box ul {
    margin: 5px 0 0;

    padding-left: 25px;
}

.loan-application-form {
    background: #fff;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    overflow: hidden;
}

.loan-section {
    padding: 35px;

    border-bottom: 1px solid #e5e5e5;
}

.loan-section-title {
    color: #005b96;

    font-family: 'Oswald', sans-serif;

    font-size: 28px;

    font-weight: 600;

    border-bottom: 3px solid #FDB913;

    padding-bottom: 12px;

    margin-bottom: 30px;
}

.loan-section-title i {
    color: #FDB913;

    margin-right: 10px;
}

.loan-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.loan-form-group {
    display: flex;

    flex-direction: column;
}

.loan-form-group.full {
    grid-column: 1 / -1;
}

.loan-form-group label {
    color: #005b96;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 8px;
}

.loan-form-group label span {
    color: #dc3545;
}

.loan-form-group input,
.loan-form-group select,
.loan-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #ccd5db;

    border-radius: 8px;

    background: #fafafa;

    font-family: 'Roboto', Arial, sans-serif;

    font-size: 16px;

    transition: .3s;
}

.loan-form-group input,
.loan-form-group select {

    height: 52px;

    padding: 12px 15px;
}

.loan-form-group textarea {

    padding: 14px 15px;

    line-height: 1.6;

    resize: vertical;
}

.loan-form-group input:focus,
.loan-form-group select:focus,
.loan-form-group textarea:focus {

    outline: none;

    border-color: #18b8e7;

    background: #fff;

    box-shadow:
0 0 0 4px rgba(24,184,231,.15);
}

.peso-input {
    position: relative;

    width: 100%;
}

.peso-input > span {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #005b96;

    font-size: 18px;

    font-weight: bold;

    z-index: 2;
}

.peso-input input {

    padding-left: 35px;
}

.loan-reminder {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    margin: 30px 35px;

    padding: 20px;

    background: #eef8ff;

    border-left: 5px solid #005b96;

    border-radius: 8px;
}

.loan-reminder > i {

    color: #005b96;

    font-size: 30px;

    margin-top: 3px;
}

.loan-reminder strong {

    color: #005b96;

    font-size: 18px;
}

.loan-reminder p {

    margin: 5px 0 0;

    color: #555;

    line-height: 1.6;
}

.loan-agreement {

    padding: 0 35px 25px;

    color: #555;

    font-size: 15px;

    line-height: 1.7;
}

.loan-agreement label {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    cursor: pointer;
}

.loan-agreement input {

    margin-top: 5px;

    width: 18px;

    height: 18px;

    accent-color: #005b96;
}

.loan-button-group {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 12px;

    padding: 25px 35px;

    background: #f7f9fb;

    border-top: 1px solid #e5e5e5;
}

.loan-cancel-btn,
.loan-reset-btn,
.loan-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 12px 25px;

    border-radius: 7px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    text-decoration: none;

    transition: .3s;
}

.loan-cancel-btn {

    background: #6c757d;

    color: #fff;
}

.loan-cancel-btn:hover {

    background: #495057;

    color: #fff;
}

.loan-reset-btn {

    background: #fff;

    color: #005b96;

    border: 2px solid #005b96;
}

.loan-reset-btn:hover {

    background: #005b96;

    color: #fff;
}

.loan-submit-btn {

    background: #005b96;

    color: #fff;

    border: 2px solid #005b96;
}

.loan-submit-btn:hover {

    background: #FDB913;

    border-color: #FDB913;

    color: #003b73;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(0,0,0,.15);
}

@media(max-width:900px) {

    .loan-introduction {

        align-items: flex-start;

    }

    .loan-form-grid {

        grid-template-columns: 1fr;

    }

    .loan-form-group.full {

        grid-column: auto;

    }

    .loan-button-group {

        flex-direction: column;

        align-items: stretch;
    }

    .loan-cancel-btn,
    .loan-reset-btn,
    .loan-submit-btn {

        width: 100%;
    }

}

@media(max-width:600px) {

    .loan-application-wrapper {

        width: 92%;

        margin-top: 25px;
    }

    .loan-introduction {

        flex-direction: column;

        text-align: center;

        align-items: center;

        padding: 25px 20px;
    }

    .loan-introduction h2 {

        font-size: 27px;
    }

    .loan-introduction p {

        font-size: 15px;

        text-align: justify;
    }

    .loan-section {

        padding: 25px 20px;
    }

    .loan-section-title {

        font-size: 24px;
    }

    .loan-reminder {

        margin: 25px 20px;
    }

    .loan-agreement {

        padding: 0 20px 20px;
    }

    .loan-button-group {

        padding: 20px;
    }

}

.loan-card {
    width: 100%;
    overflow: hidden;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.loan-reference {
    font-weight: 700;
    white-space: nowrap;
}

.loan-name {
    font-weight: 600;
    white-space: nowrap;
}

.loan-amount {
    white-space: nowrap;
    text-align: right;
}

.loan-date {
    white-space: nowrap;
}

.loan-actions form {
    display: inline-block;
    margin: 0 2px;
}

.loan-actions .btn {
    min-width: 90px;
}

.status-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d1e7dd;
    color: #0f5132;
}

.status-disapproved {
    background: #f8d7da;
    color: #842029;
}

.loan-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.loan-table {
    width: 100%;
    min-width: 1400px;
    margin-bottom: 0;
    vertical-align: middle;
}

.loan-table thead th {

    white-space: nowrap;

    font-family:
        'Oswald',
        sans-serif;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: .4px;

    vertical-align: middle;

    text-align: left;

}

.loan-table tbody td {

    font-family:
        'Roboto',
        sans-serif;

        font-size: 14px;

        vertical-align: middle;

 }

.status-select {

    min-width: 135px;

    font-size: 16px;

    font-weight: 600;

}

.loan-status-badge {
    display: inline-block;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 16px !important;
    font-weight: 700;

    white-space: nowrap;

}

.loan-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-wrap: wrap;

}

.view-loan-btn, .document-btn {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: #ffffff !important;
}

.view-loan-btn:hover,
.view-loan-btn:focus {
    background-color: #157347 !important;
    border-color: #146c43 !important;
    color: #ffffff !important;
}

.update-btn {

    min-width: 85px;
    white-space: nowrap;
    
}

#loanMessage {

    display: none;

    margin-bottom: 20px;

}

.loading-row {

    padding: 30px !important;

}

@media (max-width: 768px) {

   .loan-table {
        min-width: 1400px;
    }

}

.empty-loans {
    padding: 40px 20px !important;
    text-align: center;
    font-size: 16px;
}

.loan-info {
    margin-bottom: 20px;
}

.loan-info h2 {
    margin-bottom: 8px;
}

.loan-info p {
    margin-bottom: 0;
}

#actionMessage {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .title-bar {
        font-size: 24px;
    }

    .loan-card {
        padding: 15px;
    }

}

    .loan-table-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .loan-table th {
        white-space: nowrap;
        text-align: center;
        vertical-align: middle;
    }

    .loan-table td {
        vertical-align: middle;
    }

    .status-select {
        min-width: 130px;
    }

    .update-btn {
        min-width: 85px;
    }

    .document-btn {
        white-space: nowrap;
    }

    #loanMessage {
        display: none;
    }

    .loading-row {
        padding: 30px;
}

.loan-filter {
    width: 100%;
    margin-bottom: 20px;
}

.loan-filter-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.status-filter {
    width: 180px;
}

#applyFilterBtn {
    min-width: 120px;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .loan-filter-controls {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .status-filter {
        width: 180px;
    }

}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.header {
    width: 100%;
    min-height: 150px;
    height: auto;
    padding: 20px;
}

.header .logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

@media (max-width: 900px) {

    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        display: block;
        padding: 0;
        background: #005b96;
    }

    .navbar-content {
        width: 100%;
        display: block;
    }

    .nav-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li > a {
        display: block;
        width: 100%;
        min-height: 50px;
        padding: 15px 28px;
        color: #fff;
        font-size: 16px;
        line-height: 1.3;
        white-space: normal;
        text-decoration: none;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: #FDB913;
        color: #000;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        background: #064f80;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    .dropdown-menu li a {
        display: block;
        width: 100%;
        padding: 12px 45px;
        color: #fff;
        font-size: 15px;
        line-height: 1.4;
        white-space: normal;
    }

    .dropdown-menu li a:hover {
        background: #FDB913;
        color: #000;
    }

    .dropdown:hover > .dropdown-menu {
        display: none;
    }

    .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .search-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 8px 0 12px;
    }

    .search-icon-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin: 0 auto;
    }

    .content {
        width: 100%;
        padding: 25px 15px;
    }

    .products,
    .bottom,
    .loan-columns,
    .two-column,
    .contact-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .branches {
        width: calc(100% - 30px);
        max-width: none;
        margin: 20px auto;
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card,
    .about-card,
    .info-card,
    .requirements-card,
    .contact-card,
    .board-card,
    .members {
        width: 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 42px;
    }

    .title-bar {
        font-size: 26px;
        line-height: 1.25;
        padding: 12px 15px;
    }

    .mission-nav {
        gap: 8px;
    }

    .mission-nav a {
        font-size: 24px;
        padding: 8px 12px;
    }

    .hero {
        min-height: auto;
        flex-direction: column;
    }

    .left {
        width: 100%;
        min-height: 300px;
        clip-path: none;
    }

    .left img {
        width: 55%;
        max-width: 220px;
    }

    .right {
        width: 100%;
        padding: 35px 20px;
    }

    .mission-carousel {
        width: 100%;
        padding: 0 45px;
        margin: 30px auto 70px;
    }

    .carousel-item {
        min-height: auto;
        padding: 5px;
    }

    .info-card {
        padding: 25px 18px;
    }

    .info-card h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .info-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .arrow-circle {
        width: 40px;
        height: 40px;
    }

    .arrow-circle i {
        font-size: 20px;
    }

    .anniversary-hero {
        padding: 35px 20px;
    }

    .hero-overlay {
        width: 100%;
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .anniversary-content,
    .anniversary-image {
        width: 100%;
        max-width: 100%;
    }

    .year-row {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .year-number {
        font-size: 80px;
    }

    .bank-name h1 {
        font-size: 36px;
    }

    .bank-name h2 {
        font-size: 48px;
    }

    .anniversary-title {
        font-size: 40px;
    }

    .location {
        font-size: 32px;
    }

    .date {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 19px;
    }

    .anniversary-text p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }

    .anniversary-image img {
        width: 100%;
        max-width: 100%;
    }

    .anniversary-card {
        flex-direction: column;
        text-align: center;
    }

    .anniversary-image-pagsanjan {
        width: 100%;
        max-width: 420px;
        flex: none;
    }

    .announcement-wrapper {
        width: calc(100% - 30px);
        margin: 25px auto 70px;
    }

    .announcement-slide img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }

    .requirements-card {
        padding: 25px 18px;
        margin: 25px auto;
    }

    .requirement-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .requirement-image img {
        width: min(220px, 75vw);
        height: auto;
        aspect-ratio: 1;
    }

    .id-grid {
        grid-template-columns: 1fr;
    }

    .requirements-link {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .requirements-btn {
        width: 100%;
        text-align: center;
    }

    .contact-wrapper {
        width: 100%;
        padding: 0 15px;
        margin: 30px auto;
    }

    .contact-header {
        padding: 25px 18px;
    }

    .contact-header h2 {
        font-size: 30px;
    }

    .contact-body {
        padding: 25px 18px;
    }

    .form-group input {
        height: 52px;
    }

    .form-group textarea {
        min-height: 200px;
    }

    .btn-submit {
        width: 100%;
    }

    .board-grid {
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }

    .board-section-title {
        font-size: 30px;
    }

    .search-page {
        width: 100%;
        padding: 40px 15px;
    }

    .search-box {
        width: 100%;
        padding: 30px 20px;
    }

    .search-form-page {
        width: 100%;
        flex-direction: column;
    }

    .search-form-page input,
    .search-form-page button {
        width: 100%;
        max-width: 100%;
    }

    .search-page-form {
        width: 100%;
        display: flex;
    }

    .search-page-form input {
        width: 100%;
        min-width: 0;
    }

    .search-page-form button {
        margin-right: 0;
        flex-shrink: 0;
    }

    .loan-application-wrapper {
        width: calc(100% - 30px);
    }

    .loan-form-grid {
        grid-template-columns: 1fr;
    }

    .loan-form-group.full {
        grid-column: auto;
    }

    .loan-button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .loan-cancel-btn,
    .loan-reset-btn,
    .loan-submit-btn {
        width: 100%;
    }

    .loan-table-wrapper,
    .table-responsive {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .loan-table {
        min-width: 1400px;
    }
}

@media (max-width: 480px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }

    .header {
        min-height: 120px;
        padding: 15px 10px;
    }

    .slogan-header {
        font-size: 38px;
        line-height: 1.05;
    }

    .header .logo img {
        max-width: 110px;
        border-radius: 50%;
    }

    .nav-menu > li > a {
        min-height: 48px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .dropdown-menu li a {
        padding: 11px 38px;
        font-size: 14px;
    }

    .content {
        padding: 15px 10px;
    }

    .title-bar {
        font-size: 22px;
    }

    .mission-carousel {
        padding: 0 38px;
    }

    .info-card h2 {
        font-size: 26px;
    }

    .year-number {
        font-size: 65px;
    }

    .bank-name h1 {
        font-size: 30px;
    }

    .bank-name h2 {
        font-size: 40px;
    }

    .anniversary-title {
        font-size: 34px;
    }

    .location {
        font-size: 28px;
    }

    .date {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .coming-soon-card {
        margin: 30px 15px;
        padding: 35px 20px;
    }

    .loan-application-wrapper {
        width: calc(100% - 20px);
    }
}

@media (max-width: 360px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }
    .slogan-header {
        font-size: 32px;
    }

    .nav-menu > li > a {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mission-carousel {
        padding-left: 34px;
        padding-right: 34px;
    }

    .year-number {
        font-size: 58px;
    }

    .bank-name h1 {
        font-size: 27px;
    }

    .bank-name h2 {
        font-size: 36px;
    }
}

.footer {
    align-items: center;

    width: 100%;
    min-height: 100px;
    padding: 15px 25px;

    background: #1ea8d8;
    background: white;
}

.footer-text {
    min-width: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.footer-text h2 {
    margin: 5px 0 0 !important;
    padding: 0 !important;

    font-size: clamp(4px, 1.8vw, 20px) !important;

    line-height: 1.1;

    color: black;

    white-space: nowrap;
}

.header {
    display: grid;
    grid-template-columns: 190px minmax(400px, 1fr) auto;
    align-items: center;
    column-gap: 20px;

    width: 100%;
    min-height: 180px;
    padding: 15px 25px;

    background: #1ea8d8;
    box-sizing: border-box;
    background-image: url("../images/RURAL BANK OF PAETE, INC..png");
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
}

.header .logo img {
    width: 175px !important;
    height: 175px !important;
    max-width: 175px !important;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.header-text {
    min-width: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.header-text h1 {
    margin: 0 !important;
    padding: 0 !important;

    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(28px, 3.4vw, 52px) !important;
    font-weight: 700;

    line-height: 1.05;

    color: #005b96;

    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;
}

.header-text h2 {
    margin: 5px 0 0 !important;
    padding: 0 !important;

    font-family: 'Great Vibes', cursive;
    font-size: clamp(26px, 2.8vw, 42px) !important;

    line-height: 1.1;

    color: black;

    white-space: nowrap;
}

.slogan-header {
    width: 100%;
    max-width: none;

    margin: 0 !important;
    padding: 0 !important;

    display: block;

    color: black;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1;

    text-align: center;

    white-space: nowrap;
    overflow: visible;
}

.slogan-header span {
    display: block;
}

@media (max-width: 1100px) {

    .header {
        grid-template-columns: 150px minmax(0, 1fr) 250px;
        column-gap: 15px;
        padding: 15px 20px;
    }

    .header .logo {
        width: 150px;
    }

    .header .logo img {
        width: 140px !important;
        height: 140px !important;
        max-width: 140px !important;
    }

    .header-text h1 {
        font-size: 32px !important;
    }

    .header-text h2 {
        font-size: 28px !important;
    }

    .slogan-header {
        font-size: 38px;
    }
}

@media (max-width: 900px) {

    .header {
        grid-template-columns: 130px minmax(0, 1fr);
        grid-template-rows: auto auto;

        column-gap: 15px;
        row-gap: 5px;

        min-height: 150px;
        padding: 15px 20px;
    }

    .header .logo {
        width: 130px;
        grid-row: 1 / 3;
    }

    .header .logo img {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
    }

    .header-text {
        grid-column: 2;
        grid-row: 1;
    }

    .header-text h1 {
        font-size: clamp(24px, 4vw, 36px) !important;
    }

    .header-text h2 {
        font-size: 27px !important;
    }

    .slogan-header {
        grid-column: 2;
        grid-row: 2;

        max-width: 100%;

        justify-content: flex-start;
        align-items: flex-start;

        text-align: left;

        font-size: 30px;
        line-height: 1;
    }
}

@media (max-width: 600px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }
    .header {
        display: flex;
        flex-direction: column;

        width: 100%;
        min-height: 0;

        padding: 18px 10px 25px;

        gap: 10px;

        text-align: center;
        overflow: hidden;
    }

    .header .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header .logo img {
        width: 150px !important;
        height: 150px !important;
        max-width: 150px !important;
    }

    .header-text {
        width: 100%;
        overflow: visible;
        text-align: center;
    }

    .header-text h1 {
        width: 100%;

        font-size: clamp(20px, 6vw, 30px) !important;
        line-height: 1.1 !important;

        white-space: normal !important;
    }

    .header-text h2 {
        font-size: 27px !important;
        line-height: 1.1;
        white-space: normal;
    }

    .slogan-header {
        width: 100%;
        max-width: 100%;

        text-align: center;
        align-items: center;

        font-size: 34px;
        line-height: 1;
    }
}

@media (max-width: 400px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }
    .header {
        padding: 15px 8px 20px;
    }

    .header .logo img {
        width: 130px !important;
        height: 130px !important;
        max-width: 130px !important;
    }

    .header-text h1 {
        font-size: 21px !important;
    }

    .header-text h2 {
        font-size: 24px !important;
    }

    .slogan-header {
        font-size: 29px;
    }
}


/* ============================================================
   FINAL CLEANUP / STICKY NAVIGATION
   ============================================================ */

/* Do not create a competing scroll container on the page. */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Consistent sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Images stay inside their containers */
img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;

    padding: 0 40px;

    background: #005b96;
    box-shadow: 0 3px 12px rgba(0,0,0,.18);
}

.navbar-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 18px 16px;

    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: #FDB913;
    color: #000;
}

/* Dropdown */
.dropdown-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 420px;
    margin: 0;
    padding: 0;

    list-style: none;
    background: #fff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    z-index: 10000;
}

.dropdown-right .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;

    color: #333;
    text-decoration: none;
    white-space: normal;
    line-height: 1.5;
}

.dropdown-menu li a:hover {
    background: #18b8e7;
    color: #fff;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    display: block;
}

/* ============================================================
   TABLET / MOBILE NAVBAR
   ============================================================ */

@media (max-width: 900px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }
    .navbar {
        display: block;
        padding: 0;
        min-height: 0;
    }

    .navbar-content {
        display: block;
        width: 100%;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;

        margin-left: 15px;

        background: #0b62b7;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-menu li a {
        color: #fff;
    }

    .dropdown-menu li a:hover {
        background: #005b96;
    }
}

/* ============================================================
   MOBILE HEADER SAFETY
   ============================================================ */

@media (max-width: 600px) {
    .navbar {
        position: static;
        top: auto;
        z-index: auto;
    }    .header {
        overflow: hidden;
    }
}

/* =========================================
   ROPA PROPERTY INFORMATION
========================================= */

.ropa-information {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

.ropa-heading {
    text-align: center;
    margin-bottom: 25px;
}

.ropa-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ropa-heading p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.ropa-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    background: #fff;
}

.ropa-table th {
    padding: 15px 18px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #ddd;
}

.ropa-table td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 16px;
    vertical-align: middle;
}

.ropa-table th:nth-child(1),
.ropa-table td:nth-child(1) {
    width: 50%;
    text-align: left;
}

.ropa-table th:nth-child(2),
.ropa-table td:nth-child(2) {
    width: 20%;
    text-align: center;
}

.ropa-table th:nth-child(3),
.ropa-table td:nth-child(3) {
    width: 30%;
    text-align: center;
}

.ropa-table tbody tr:hover {
    background: #f5f5f5;
}

/* =========================================================
   ROPA INTERESTED BUTTON
========================================================= */

.ropa-interested-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

.ropa-interested-btn {
    min-width: 180px;
    padding: 12px 30px;
    width:260px;
    height:58px;

    border: none;
    border-radius: 6px;

    background:#005b96;

    color:#fff;
/*    background-color: #1f5c3a;
    color: #ffffff;*/

    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.ropa-interested-btn:hover {
/*    background-color: #17472d;
    transform: translateY(-2px);*/
    background:#FDB913;

    color:#000;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.ropa-interested-btn:active {
    transform: translateY(0);
}
/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .ropa-information {
        width: 95%;
        margin: 35px auto;
    }

    .ropa-heading h2 {
        font-size: 26px;
    }

    .ropa-heading p {
        font-size: 14px;
    }

    .ropa-table {
        min-width: 650px;
    }

    .ropa-table th,
    .ropa-table td {
        padding: 12px 14px;
        font-size: 14px;
    }

}
.privacy-consent {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 18px;
    background: #f8f9fa;
    border-left: 4px solid #0056b3;
    border-radius: 5px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #0056b3;
}