*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* ... Paste the rest of all your CSS codes below this ... */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f5f5;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.topbar{
background:#222;
color:#fff;
padding:8px;
font-size:14px;
}

header{
background:#fff;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-content{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:60px;
}

.logo-area h1{
font-size:24px;
}

.login-btn{
background:#d32f2f;
color:#fff;
border:none;
padding:10px 18px;
border-radius:5px;
cursor:pointer;
}

nav{
background:#0d7a1e;
}

nav ul{
display:flex;
justify-content:center;
list-style:none;
flex-wrap:wrap;
}

nav a{
display:block;
padding:15px 20px;
text-decoration:none;
color:white;
font-weight:500;
}

nav a:hover{
background:#096218;
}

.hero{
height:550px;
background:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600')
center/cover;
}

.hero-overlay{
height:100%;
background:rgba(0,0,0,.55);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-content{
max-width:800px;
color:white;
padding:20px;
}

.hero-content h2{
font-size:48px;
margin-bottom:15px;
}

.hero-content p{
margin-bottom:25px;
}

.btn{
background:#0d7a1e;
color:white;
padding:12px 24px;
text-decoration:none;
border-radius:5px;
display:inline-block;
}

.services{
margin-top:-60px;
position:relative;
z-index:5;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.ticker{
background:#0066cc;
color:white;
padding:12px;
margin:40px 0;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.info-box{
background:white;
padding:25px;
border-radius:10px;
}

.info-box ul{
padding-left:20px;
margin-top:10px;
}

.about{
padding:80px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

.section-tag{
color:#0d7a1e;
font-weight:600;
}

.features{
margin:20px 0;
padding-left:20px;
}

.stats{
background:#eef7ef;
padding:80px 0;
text-align:center;
}

.stats-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-card{
background:white;
padding:30px;
border-radius:10px;
}

.stat-card h3{
color:#0d7a1e;
font-size:32px;
}

.gallery{
padding:80px 0;
}

.gallery h2{
text-align:center;
margin-bottom:40px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

footer{
background:#1e1e1e;
color:white;
padding-top:50px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

footer ul{
list-style:none;
margin-top:10px;
}

footer li{
margin-bottom:10px;
}

.copyright{
text-align:center;
padding:20px;
margin-top:30px;
border-top:1px solid rgba(255,255,255,.15);
}

@media(max-width:992px){

.service-grid,
.info-grid,
.about-grid,
.stats-grid,
.footer-grid{
grid-template-columns:1fr 1fr;
}

.hero-content h2{
font-size:36px;
}
}

@media(max-width:768px){

.service-grid,
.info-grid,
.about-grid,
.stats-grid,
.gallery-grid,
.footer-grid{
grid-template-columns:1fr;
}

.header-content{
flex-direction:column;
gap:15px;
}

.hero-content h2{
font-size:28px;
}

nav ul{
flex-direction:column;
}
}
.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:80px;
height:80px;
object-fit:contain;
}

.title-area h1{
font-size:24px;
font-weight:700;
color:#222;
margin-bottom:4px;
}

.title-area h2{
font-size:18px;
font-weight:600;
color:#0d7a1e;
margin-bottom:6px;
}

.title-area p{
font-size:14px;
color:#666;
}
.ticker{
    background:#0056b3;
    overflow:hidden;
}

.ticker-wrapper{
    display:flex;
    align-items:center;
}

.news-label{
    background:#d32f2f;
    color:#fff;
    padding:12px 20px;
    font-weight:600;
    flex-shrink:0;
}

.ticker-news{
    overflow:hidden;
    width:100%;
    background:#0056b3;
}

.ticker-track{
    display:flex;
    width:max-content;
    animation:tickerLoop 15s linear infinite;
}

.ticker-track span{
    color:#fff;
    font-size:15px;
    white-space:nowrap;
    padding-right:120px;
    line-height:48px;
}

@keyframes tickerLoop{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}
.ticker-track:hover{
    animation-play-state:paused;
}
nav ul li{
    border-right:1px solid rgba(255,255,255,0.3);
}

nav ul li:first-child{
    border-left:1px solid rgba(255,255,255,0.3);
}
.announcement-item{
    margin-bottom:12px;
}

.announcement-link{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.announcement-link:hover{
    color:#0056b3;
    transform:translateX(4px);
}

.new-badge{
    background:#e53935;
    color:white;
    font-size:10px;
    font-weight:700;
    padding:4px 8px;
    border-radius:20px;
    letter-spacing:0.5px;
    animation:newPulse 1.5s infinite;
}

@keyframes newPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
    }

}
.info-box-container{
    position:relative;
    margin-top:40px;
}

.info-title{
    display:inline-block;
    background:#d32f2f;
    color:white;
    font-size:16px;
    font-weight:700;
    padding:10px 22px;
    border-radius:6px;
    margin-left:20px;
    margin-bottom:-15px;
    position:relative;
    z-index:2;
    box-shadow:0 3px 10px rgba(0,0,0,0.15);
}

.info-box{
    background:white;
    border:2px solid #d32f2f;
    border-radius:12px;
    padding:35px 25px 25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.info-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.info-box ul li{
    color:#0056b3;
    font-size:15px;
    font-weight:500;
    padding:12px 0;
    border-bottom:1px solid #e6e6e6;
    transition:0.3s;
    cursor:pointer;
}

.info-box ul li:last-child{
    border-bottom:none;
}

.info-box ul li:hover{
    color:#d32f2f;
    padding-left:10px;
}
.portal-links{
    padding:40px 0 70px;
}

.portal-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.portal-card{
    background:#fff;
    border:1px solid #d9e6d9;
    border-radius:12px;
    height:110px;
    padding:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:all .3s ease;
    overflow:hidden;
}

.portal-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
    border-color:#0d7a1e;
}

.portal-card img{
    width:100%;
    height:80px;
    object-fit:contain;
}

@media(max-width:992px){

    .portal-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .portal-grid{
        grid-template-columns:1fr;
    }

}
.stats{
    padding:70px 0;
}

.stats h2{
    text-align:center;
    font-size:36px;
    font-weight:700;
    margin-bottom:40px;
    color:#0d7a1e;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.stat-card{
    background:#dce8e8;
    border-radius:8px;
    padding:30px;
    min-height:140px;
    position:relative;
    padding-left:130px;
    transition:.3s ease;
}

.stat-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.stat-card::before{
    content:"";
    position:absolute;
    left:30px;
    top:50%;
    transform:translateY(-50%);
    width:72px;
    height:72px;
    border-radius:50%;
    background:#e60000;
}

/* Different Icons */

.stat-card:nth-child(1)::after{
    content:"🏠";
}

.stat-card:nth-child(2)::after{
    content:"👨‍👩‍👧‍👦";
}

.stat-card:nth-child(3)::after{
    content:"🎓";
}

.stat-card:nth-child(4)::after{
    content:"📍";
}

.stat-card::after{
    position:absolute;
    left:52px;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    z-index:2;
}

.stat-card h3{
    font-size:26px;
    font-weight:700;
    color:#000;
    margin-bottom:8px;
    line-height:1.3;
}

.stat-card p{
    font-size:18px;
    color:#222;
    font-weight:500;
}

/* Mobile */

@media(max-width:768px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        padding-left:115px;
        min-height:120px;
    }

    .stat-card h3{
        font-size:20px;
    }

    .stat-card p{
        font-size:16px;
    }

}
.municipality-about{
    text-align:center;
    max-width:1000px;
    margin:0 auto 50px;
}

.municipality-about h2{
    color:#0d7a1e;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.municipality-about p{
    font-size:18px;
    line-height:1.8;
    color:#222;
    margin-bottom:18px;
}

.municipality-about strong{
    font-weight:700;
}
.map-section{
    padding:70px 0;
    background:#f8f9fa;
}

.map-title{
    text-align:center;
    font-size:36px;
    color:#0d7a1e;
    font-weight:700;
    margin-bottom:10px;
}

.map-subtitle{
    text-align:center;
    color:#d32f2f;
    font-size:18px;
    margin-bottom:30px;
}

.map-container{
    width:100%;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

@media(max-width:768px){

    .map-title{
        font-size:28px;
    }

    .map-container iframe{
        height:350px;
    }

}
.navbar{
    background:#0b7a12;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px;
    min-height:50px;
}

.nav-menu{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    border-right:1px solid rgba(255,255,255,0.3);
}

.nav-menu li:last-child{
    border-right:none;
}

.nav-menu li a{
    color:#fff;
    text-decoration:none;
    padding:15px 18px;
    display:block;
    font-size:14px;
}

.nav-menu li a:hover{
    background:#096218;
}

#liveDateTime{
    color:#ffd700;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}
.gallery{
    padding:70px 0;
    overflow:hidden;
}

.gallery-title{
    text-align:center;
    font-size:38px;
    color:#0d7a1e;
    margin-bottom:35px;
}

/* TOP SLIDER */

.gallery-slider{
    overflow:hidden;
    width:100%;
    margin-bottom:25px;
}

.gallery-track{
    display:flex;
    width:max-content;
    animation:galleryScroll 25s linear infinite;
}

.gallery-track img{
    width:300px;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-right:20px;
    transition:.3s;
    cursor:pointer;
}

.gallery-track img:hover{
    transform:scale(1.05);
}

/* BOTTOM STATIC ROW */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* Infinite Sliding Animation */

@keyframes galleryScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-track img,
    .gallery-grid img{
        height:180px;
    }

}
.gallery-track:hover{
    animation-play-state:paused;
}
.gallery img{
    cursor:pointer;
}
html{
    scroll-behavior:smooth;
}
.nav-menu a{
    position:relative;
}

.nav-menu a:hover{
    background:#096218;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:#ffd700;
    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}
.staff-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    color:#0d7a1e;
    font-size:38px;
    margin-bottom:10px;
}

.section-subtitle{
    text-align:center;
    color:#d32f2f;
    font-size:18px;
    margin-bottom:50px;
}

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.staff-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:.3s;
}

.staff-card:hover{
    transform:translateY(-8px);
}

.staff-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.staff-card h3{
    margin:20px 0 10px;
    color:#222;
    font-size:22px;
}

.staff-card span{
    display:block;
    color:#0056b3;
    font-weight:600;
    margin-bottom:20px;
}
.audit-intro{
    max-width:1000px;
    margin:0 auto 50px;
    text-align:center;
}

.audit-intro h2{
    color:#0d7a1e;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.audit-intro h3{
    color:#d32f2f;
    font-size:24px;
    margin-bottom:25px;
    font-weight:600;
}

.audit-intro p{
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:18px;
}
.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:30px;
}

.contact-form-box{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-form-box h3{
    color:#0d7a1e;
    margin-bottom:25px;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    outline:none;
    border-color:#0d7a1e;
}

.contact-form-box button{
    background:#0d7a1e;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.contact-form-box button:hover{
    background:#095e16;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}
.contact-intro{
    max-width:1000px;
    margin:0 auto 45px;
    text-align:center;
}

.contact-intro h3{
    color:#0d7a1e;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-intro h4{
    color:#d32f2f;
    font-size:22px;
    margin-bottom:20px;
    font-weight:600;
}

.contact-intro p{
    color:#333;
    font-size:17px;
    line-height:1.8;
    margin-bottom:15px;
}
.contact-section{
    padding:80px 5%;
    background:#f4f8fb;
}

.contact-title{
    text-align:center;
    color:#0b6d1d;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-subtitle{
    text-align:center;
    color:#d62828;
    font-size:18px;
    margin-bottom:25px;
}

.contact-intro{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:50px;
}

.contact-intro h3{
    color:#0b6d1d;
    font-size:34px;
    margin-bottom:10px;
}

.contact-intro h4{
    color:#d62828;
    margin-bottom:20px;
    font-size:22px;
}

.contact-intro p{
    line-height:1.9;
    color:#444;
    font-size:17px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:35px;
}
.contact-form-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3{
    color:#0b6d1d;
    margin-bottom:25px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:#0b6d1d;
    box-shadow:0 0 10px rgba(11,109,29,.15);
    outline:none;
}

.contact-form-box button{
    width:100%;
    background:#0b6d1d;
    color:white;
    border:none;
    padding:15px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form-box button:hover{
    transform:translateY(-3px);
    background:#095516;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.contact-card:hover{
    transform:translateX(8px);
}

.contact-icon{
    width:60px;
    height:60px;
    background:#0b6d1d;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-text h3{
    color:#d62828;
    margin-bottom:8px;
}

.contact-text p{
    color:#444;
    line-height:1.7;
}
@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-title{
        font-size:32px;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
    }

}
.footer{
    background:#0c3d1c;
    color:#fff;
    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-column h3{
    color:#ffd700;
    margin-bottom:20px;
    font-size:22px;
    position:relative;
}

.footer-column h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#d62828;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ffd700;
    padding-left:8px;
}

.footer-column p{
    margin-bottom:12px;
    line-height:1.8;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    background:#082913;
    border-top:1px solid rgba(255,255,255,.1);
}
.hero-slider{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    top:0;
    left:0;
}

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
}

.slide-content h1{
    font-size:55px;
    margin-bottom:15px;
    text-shadow:0 3px 10px rgba(0,0,0,.4);
}

.slide-content p{
    font-size:22px;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.5);
    color:white;
    font-size:28px;
    cursor:pointer;
    z-index:100;
    transition:.3s;
}

.prev:hover,
.next:hover{
    background:#0d7a1e;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

@media(max-width:768px){

    .hero-slider{
        height:350px;
    }

    .slide-content h1{
        font-size:30px;
    }

    .slide-content p{
        font-size:16px;
    }

}
.staff-section{
    padding:80px 20px;
    background:#f8f9fa;
    text-align:center;
}

.staff-section h2{
    color:#0d7a1e;
    margin-bottom:10px;
}

.staff-subtitle{
    color:#666;
    margin-bottom:40px;
}

.staff-notice{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.staff-notice i{
    font-size:60px;
    color:#d62828;
    margin-bottom:20px;
}

.staff-notice h3{
    color:#0d7a1e;
    margin-bottom:15px;
}
.location-section{
    padding:70px 20px;
    background:#f8f9fa;
}

.location-section h2{
    text-align:center;
    color:#0d7a1e;
    margin-bottom:40px;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:30px;
}

.calendar-box,
.map-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.calendar-box h3,
.map-box h3{
    color:#d62828;
    margin-bottom:15px;
    text-align:center;
}

@media(max-width:768px){

    .location-grid{
        grid-template-columns:1fr;
    }

}
/* ===== CONTACT US FINAL DESIGN ===== */

.contact-section{
    padding:80px 20px;
    background:#f5f8fb;
}

.contact-intro{
    max-width:1000px;
    margin:0 auto 50px;
    text-align:center;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-intro h3{
    color:#0d7a1e;
    font-size:34px;
    margin-bottom:10px;
}

.contact-intro h4{
    color:#d62828;
    margin-bottom:20px;
}

.contact-wrapper{
    display:grid !important;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:start;
    max-width:1200px;
    margin:auto;
}

.contact-info{
    display:grid !important;
    gap:20px;
}

.contact-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    min-height:110px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    width:65px;
    height:65px;
    background:#0d7a1e;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:24px;
    flex-shrink:0;
}

.contact-text h3{
    color:#d62828;
    margin-bottom:8px;
}

.contact-text p{
    color:#444;
    line-height:1.6;
}

.contact-form-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
}

.contact-form-box button{
    width:100%;
    background:#0d7a1e;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

/* ===== FOOTER FINAL DESIGN ===== */

.footer{
    background:linear-gradient(135deg,#0b6d1d,#084b13);
    color:#fff;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.footer-column{
    min-height:250px;
}

.footer-column h3{
    color:#ffd700;
    margin-bottom:25px;
    border-bottom:2px solid #d62828;
    display:inline-block;
    padding-bottom:8px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column li{
    margin-bottom:12px;
}

.footer-column a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#ffd700;
    padding-left:8px;
}

.footer-bottom{
    text-align:center;
    background:#06290d;
    padding:20px;
    font-size:14px;
}

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr !important;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
    }

}
