
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f7f9fc;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
.homepage_main h3{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
    text-align:center;
    position:relative;
}

.homepage_main h3:after{
    content:"";
    width:80px;
    height:4px;
    background:#f89c1d;
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}
.about_main {
    background: #ffffff;
    padding: 10px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.about_main p {
    margin-bottom: 20px;
}
.terms p {
    margin-bottom: 15px;
}
.terms ul {
    padding-left: 25px;
}
.privacy p {
    margin-bottom: 15px;
}
.privacy ul {
    padding-left: 25px;
}
.logo img {
    max-width: 200px;
}

/* Header */

.header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0 0 0;
}

.logo a{
    text-decoration:none;
    font-size:28px;
    font-weight:700;
    color:#0f4c81;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#0a7cff;
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#0f4c81;
}

/* Hero */

.hero{
    padding:100px 0;
    background:linear-gradient(135deg,#0f4c81,#0a7cff);
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#fff;
    color:#0f4c81;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

/* Sections */

.categories,
.latest{
    padding:50px 0;
}
.news-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.news-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.news-card-img{
    overflow:hidden;
}

.news-card-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.news-card:hover img{
    transform:scale(1.05);
}

.news-card-content{
    padding:20px;
}

.news-meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.news-category{
    background:#fff;
    color:#ff9913;
    font-size:11px;
    font-weight:700;
    padding:7px 12px;
    border-radius:6px;
    letter-spacing:.5px;
}

.news-readtime{
    color:#6b7280;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:5px;
}

.news-card h3{
    font-size:24px;
    line-height:1.5;
    color:#111827;
    margin:0 0 18px;
    font-weight:700;
}

.news-date{
    color:#6b7280;
    font-size:14px;
}

/* Grid */

.news-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Tablet */

@media(max-width:992px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:576px){

    .news-grid{
        grid-template-columns:1fr;
    }

    .news-card h3{
        font-size:20px;
    }

    .news-card-img img{
        height:200px;
    }

}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.card,
.post{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card{
    padding:40px;
    text-align:center;
}

.card a,
.post a{
    text-decoration:none;
    color:inherit;
    display:block;
}

.post{
    transition:.3s;
}

.post:hover{
    transform:translateY(-5px);
}

.card:hover{
    background:#f5f7fa;
}

.post img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.post h3{
    padding:20px;
}

/* Detail Page */

.page-banner{
    background:#0f4c81;
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.single-post{
    padding:60px 0;
}

.featured-img{
    width:100%;
    border-radius:15px;
    margin-bottom:30px;
}

.single-post h1{
    margin-bottom:20px;
}

.single-post h2{
    margin-top:30px;
    margin-bottom:15px;
}

.meta{
    color:#777;
    margin-bottom:25px;
}

/* Footer */

.footer{
    background:#0f172a;
    color:#fff;
    padding:60px 0 20px;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}
h3.main-s {
    color: #fe9b12;
    margin-bottom: 0px;
    width: fit-content;
    text-decoration: underline;
}

.footer h3{
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    color:#94a3b8;
}

/* Tablet & Mobile */

@media(max-width:768px){

    .container{
        width:95%;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
    }

    nav ul li{
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:15px 20px;
    }

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero p{
        font-size:16px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .card{
        padding:25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .latest h2,
    .categories h2{
        text-align:center;
    }
}

/* Small Mobile */



.single-post{
    max-width:850px;
    margin:50px auto;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.featured-img{
    width:100%;
    border-radius:16px;
    margin-bottom:25px;
    display:block;
}

.single-post h1{
    font-size:38px;
    line-height:1.3;
    margin-bottom:10px;
    color:#222;
}

.content p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
}

/* Navigation Buttons */

.nextprebtn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #eee;
    gap:15px;
}

.nextprebtn a{
    flex:1;
    text-align:center;
    text-decoration:none !important;
    padding:15px 25px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
    color:#fff !important;
}

/* Previous Button */
.nextpostslink-first{
    background:linear-gradient(135deg,#ff7a18,#ffb347) !important;
    box-shadow:0 8px 20px rgba(255,122,24,.25);
}

/* Next Button */
.nextpostslink{
    background:linear-gradient(135deg,#2563eb,#60a5fa) !important;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
}

.nextpostslink:hover,
.nextpostslink-first:hover{
    transform:translateY(-3px);
}

.nextprebtn i{
    font-size:14px;
    vertical-align:middle;
}

/* Page Counter */
.page-count{
    font-size:14px;
    color:#666;
    font-weight:600;
    text-align:center;
}
.st-contact-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 15px;
}

.st-contact-header{
    text-align:center;
    margin-bottom:50px;
}

.st-contact-header h1{
    font-size:42px;
    color:#111827;
    margin-bottom:10px;
}

.st-contact-header p{
    font-size:18px;
    color:#6b7280;
}

/* =========================
   WRAPPER
========================= */

.st-contact-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:30px;
}

/* =========================
   CONTACT INFO
========================= */

.st-contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.st-info-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}

.st-info-card:hover{
    transform:translateY(-3px);
}

.st-info-card span{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#fff4e6;
    color:#f89c1d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.st-info-card h4{
    margin:0 0 5px;
    color:#111827;
    font-size:18px;
}

.st-info-card p{
    margin:0;
    color:#6b7280;
    font-size:14px;
    word-break:break-word;
}

/* =========================
   FORM
========================= */

.st-contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.st-form-row{
    margin-bottom:20px;
}

.st-form-row input,
.st-form-row textarea{
    width:100%;
    border:1px solid #dbe1ea;
    border-radius:12px;
    padding:15px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.st-form-row input:focus,
.st-form-row textarea:focus{
    border-color:#2563eb;
}

.st-form-row textarea{
    resize:vertical;
    min-height:140px;
}

.st-submit-btn{
    border:none;
    padding:15px 30px;
    border-radius:12px;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #f89c1d,
        #ffb74d
    );
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.st-submit-btn:hover{
    opacity:.9;
}

/* =========================
   MAP
========================= */

.st-map-section{
    max-width:1200px;
    margin:50px auto;
    padding:0 15px;
}

.st-map-section iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:20px;
    display:block;
}

/* =========================
   FAQ
========================= */

.st-faq-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 15px;
}

.st-faq-section h2{
    text-align:center;
    margin-bottom:30px;
    color:#111827;
}

.st-faq-item{
    background:#fff;
    border-radius:15px;
    padding:20px;
    margin-bottom:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.st-faq-item h4{
    margin:0 0 10px;
    color:#111827;
}

.st-faq-item p{
    margin:0;
    color:#6b7280;
    line-height:1.7;
}
  .about_main{
    max-width:900px;
    margin:60px auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    position:relative;
}

.about_main h3{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
    text-align:center;
    position:relative;
}

.about_main h3:after{
    content:"";
    width:80px;
    height:4px;
    background:#f89c1d;
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}

.about_main p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:22px;
    text-align:justify;
}

/* First paragraph highlight */

.about_main p:first-of-type{
    font-size:20px;
    color:#111827;
    font-weight:500;
}

/* Magazine style first letter */

.about_main p:first-of-type:first-letter{
    float:left;
    font-size:65px;
    line-height:55px;
    padding-right:10px;
    color:#2563eb;
    font-weight:700;
}

/* Hover effect */

.about_main:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* Mobile */
@media (max-width:991px){

    .st-contact-wrapper{
        grid-template-columns:1fr;
    }

    .st-contact-form{
        padding:25px;
    }

}
@media(max-width:768px){
     .about_main{
        padding:30px 20px;
        margin:30px 15px;
    }

    .about_main h3{
        font-size:32px;
    }

    .about_main p{
        font-size:16px;
        line-height:1.8;
        text-align:left;
    }

    .about_main p:first-of-type{
        font-size:18px;
    }

    .about_main p:first-of-type:first-letter{
        font-size:50px;
        line-height:42px;
    }
  .st-contact-section{
        margin:40px auto;
    }

    .st-contact-header{
        margin-bottom:30px;
    }

    .st-contact-header h1{
        font-size:32px;
    }

    .st-contact-header p{
        font-size:15px;
    }

    .st-contact-form{
        padding:20px;
    }

    .st-form-row input,
    .st-form-row textarea{
        padding:12px;
        font-size:14px;
    }

    .st-map-section iframe{
        height:300px;
    }

    .single-post{
        padding:20px;
        margin:20px auto;
    }

    .single-post h1{
        font-size:28px;
    }

    .content p{
        font-size:16px;
    }

    .nextprebtn{
        flex-direction:column;
        gap:15px;
    }

    .nextprebtn a{
        width:100%;
    }
}
@media(max-width:480px){
    .about_main{
        padding:20px 15px;
        border-radius:15px;
    }

    .about_main h3{
        font-size:28px;
    }

    .about_main p{
        font-size:15px;
    }

    .about_main p:first-of-type:first-letter{
        font-size:42px;
        line-height:35px;
    }
  .st-info-card{
        flex-direction:column;
        text-align:center;
    }

    .st-info-card span{
        margin-bottom:5px;
    }

    .st-contact-header h1{
        font-size:28px;
    }

    .st-submit-btn{
        width:100%;
    }

    .st-map-section iframe{
        height:250px;
    }

    .logo a{
        font-size:24px;
    }

    .hero h1{
        font-size:26px;
    }

    .hero p{
        font-size:15px;
    }

    .post img{
        height:180px;
    }

    .post h3{
        font-size:16px;
        padding:15px;
    }
}