*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.header{
    padding:0px 20px;
    display: flex;
    align-items: center;
}
.logo{
    height: 80px;
    width: 100px;
    background-color: transparent;
    border-radius: 5px;

}
.nav{
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 40px;
        margin-left: 100px;
    }
.nav a{
    color:black;
    text-decoration:none;
    font-size:18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}
.nav a:hover{
    color: blue;
    text-decoration: underline;
    text-underline-offset: 8px;
}
.actions{
    display:flex;
    align-items:center;
    gap:25px;
}

.actions i{
    font-size:22px;
    cursor:pointer;
    color:#222;
}

.actions i:hover{
    color:#1d4ed8;
}

.login-btn{
    background:#0b1736;
    color:white;
    border:none;
    padding:10px 22px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

.login-btn:hover{
    background:#162a61;
}
.top-bar{
    background-color: #101a35;
    color: white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.new{
    color: #f4b53f;
    font-weight: bold;
}
/* ================================
   CURRENT AFFAIRS HERO
================================ */

.current-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    padding:60px 35px 45px;
    background:#f8f9fc;
}

.current-left{
    width:50%;
}

.current-tag{
    display:inline-block;
    background:#e5efff;
    color:#1665ff;
    padding:8px 14px;
    border-radius:20px;
    font-size:14px;
    font-family:Arial,sans-serif;
    font-weight:600;
    margin-bottom:20px;
}

.current-left h1{
    font-family:"Inter",sans-serif;
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
}

.current-para{
    font-family:"Inter",sans-serif;
    font-size:18px;
    line-height:29px;
    color:#555;
    max-width:650px;
    margin-bottom:25px;
}


/* SEARCH */

.current-search{
    width:100%;
    max-width:650px;
    height:60px;
    display:flex;
    align-items:center;

    background:white;
    border:1px solid #ddd;
    border-radius:12px;

    padding-left:18px;

    box-shadow:0 3px 12px rgba(0,0,0,0.08);
    overflow:hidden;
}

.current-search i{
    color:#1665ff;
    font-size:20px;
    margin-right:15px;
}

.current-search input{
    flex:1;
    height:100%;
    border:none;
    outline:none;

    font-size:16px;
    font-family:"Inter",sans-serif;
}

.current-search button{
    height:42px;
    width:105px;

    margin-right:8px;

    border:none;
    border-radius:10px;

    background:#1665ff;
    color:white;

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

    cursor:pointer;
}

.current-search button:hover{
    background:#0d4fd4;
}


/* HERO IMAGE */

.current-right{
    width:50%;
}

.current-right img{
    width:100%;
    height:350px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 5px 18px rgba(0,0,0,0.10);
}


/* ================================
   CATEGORIES
================================ */

.current-categories{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:8px;

    padding:0 30px 25px;

    background:#f8f9fc;
}

.current-category{
    height:95px;

    background:white;

    border:1px solid #e1e1e1;
    border-radius:10px;

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

    gap:12px;

    box-shadow:0 2px 7px rgba(0,0,0,0.05);

    transition:0.2s;
}

.current-category i{
    color:#1665ff;
    font-size:27px;
}

.current-category span{
    font-family:"Inter",sans-serif;
    font-size:13px;
    font-weight:600;
    text-align:center;
}

.current-category:hover{
    transform:translateY(-3px);
    border-color:#1665ff;
}


/* ================================
   LATEST CONTENT
================================ */

.current-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;

    padding:0 30px 60px;

    background:#f8f9fc;
}

.latest-updates{
    background:white;
    border-radius:10px;
    padding:0 12px;
}

.latest-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;

    border-bottom:1px solid #ddd;

    padding:12px 5px;
}

.latest-heading h2{
    font-family:"Inter",sans-serif;
    font-size:21px;
    margin:0;
}

.latest-heading a{
    color:#1665ff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}


/* ================================
   ARTICLE
================================ */

.current-article{
    display:flex;
    gap:20px;

    padding:15px 5px;

    border-bottom:1px solid #e5e5e5;
}

.current-article img{
    width:185px;
    height:120px;

    object-fit:cover;

    border-radius:8px;
}

.article-info{
    flex:1;
}

.article-tag{
    display:inline-block;

    padding:5px 10px;

    border-radius:15px;

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

    margin-bottom:7px;
}

.science{
    background:#e5efff;
    color:#1665ff;
}

.national{
    background:#e4f7e9;
    color:#269447;
}

.economy{
    background:#fff0d9;
    color:#e38a00;
}

.environment{
    background:#e3f6e8;
    color:#27934b;
}

.article-info h3{
    font-family:"Inter",sans-serif;
    font-size:17px;
    margin:3px 0 7px;
}

.article-info p{
    font-family:"Inter",sans-serif;
    color:#555;

    font-size:14px;
    line-height:20px;

    margin:0 0 8px;
}

.article-details{
    display:flex;
    gap:18px;

    color:#555;

    font-size:12px;
}

.article-details i{
    margin-right:4px;
}


/* VIEW ALL */

.view-articles{
    display:block;

    width:220px;
    height:38px;

    margin:12px auto;

    background:white;

    border:1px solid #d5d5d5;
    border-radius:8px;

    color:#1665ff;

    font-weight:600;

    cursor:pointer;
}


/* ================================
   SIDEBAR
================================ */

.current-sidebar{
    display:flex;
    flex-direction:column;
    gap:15px;
}


/* QUIZ */

.quiz-box,
.trending-box,
.pdf-box{
    background:white;

    border:1px solid #ddd;
    border-radius:10px;

    padding:20px;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.quiz-box h2,
.trending-box h2,
.pdf-box h2{
    font-family:"Inter",sans-serif;
    font-size:17px;

    margin:0 0 15px;
}

.quiz-box h2 i,
.trending-box h2 i{
    color:#1665ff;
    margin-right:8px;
}

.quiz-box p{
    color:#555;
    font-size:14px;
    line-height:21px;
}

.quiz-box button{
    width:100%;
    height:40px;

    border:none;
    border-radius:7px;

    background:#1665ff;
    color:white;

    font-weight:600;

    cursor:pointer;
}


/* TRENDING */

.trending-box ol{
    padding-left:25px;
    margin:0;
}

.trending-box li{
    padding:7px 0;

    font-size:13px;
    color:#333;
}

.trending-box li::marker{
    color:#1665ff;
    font-weight:bold;
}


/* PDF */

.pdf-title{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.pdf-title > i{
    color:#e32626;
    font-size:28px;
}

.pdf-box h2{
    margin-bottom:5px;
}

.pdf-box p{
    color:#666;
    font-size:13px;
    line-height:19px;
    margin:0;
}

.pdf-box button{
    width:100%;
    height:38px;

    margin-top:15px;

    background:white;

    border:1px solid #ddd;
    border-radius:7px;

    color:#1665ff;

    font-weight:600;

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

    padding:0 15px;

    cursor:pointer;
}


/* ================================
   NEWSLETTER
================================ */

.newsletter-box{
    background:#101a35;
    color:white;

    border-radius:10px;

    padding:20px;
}

.newsletter-box h2{
    color:#f4c95d;

    font-family:"Inter",sans-serif;

    font-size:19px;
    line-height:25px;

    margin-bottom:12px;
}

.newsletter-box p{
    color:#b9c0d0;

    font-size:13px;
    line-height:20px;

    margin-bottom:15px;
}

.newsletter-box input{
    width:100%;
    height:38px;

    border:none;
    outline:none;

    border-radius:7px;

    padding:0 12px;

    margin-bottom:10px;

    font-size:13px;
}

.newsletter-box button{
    width:100%;
    height:38px;

    border:none;
    border-radius:7px;

    background:#1665ff;

    color:white;

    font-weight:600;

    cursor:pointer;
}
/* =========================
   FOOTER
========================= */

.main-footer{
    background:#080d12;
    color:#d7d9de;
    margin-top:30px;
    font-family:"Inter",
    Arial,
    sans-serif;
}
/* =========================
   NEWSLETTER
========================= */

.footer-newsletter{
    margin:50px 4% 70px;
    padding:32px;
    background:#061d36;
    border:1px solid #163858;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.newsletter-text{
    max-width:620px;
}

.newsletter-text h3{
    color:#e4bc3f;
    font-family:Georgia, serif;
    font-size:22px;
    margin-bottom:12px;
}

.newsletter-text p{
    color:#d2d5db;
    font-size:17px;
    line-height:27px;
    margin:0;
}

.newsletter-form{
    display:flex;
    width:470px;
    height:54px;
}

.newsletter-form input{
    flex:1;
    background:#111c27;
    color:white;
    border:1px solid #263849;
    border-radius:8px 0 0 8px;
    outline:none;
    padding:0 16px;
    font-size:16px;
}

.newsletter-form input::placeholder{
    color:#aeb3ba;
}

.newsletter-form button{
    width:135px;
    border:none;
    background:#e4b934;
    color:#101010;
    font-size:16px;
    font-weight:700;
    border-radius:0 8px 8px 0;
    cursor:pointer;
}

.newsletter-form button:hover{
    background:#f0c94d;
}

/* =========================
   FOOTER CONTENT
========================= */
.footer-content{
    padding:0 4% 70px;
    display:grid;
    grid-template-columns:
    1.35fr
    1fr
    1.2fr
    1.05fr;
    gap:70px;
}

/* =========================
   COMPANY
========================= */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    background:white;
    border-radius:6px;
    padding:5px;
}

.footer-logo h2{
    color:#e4bc3f;
    font-family:Georgia, serif;
    font-size:27px;
    line-height:30px;
    margin:0;
}

.company-description{
    max-width:300px;
    color:#b8bdc5;
    font-size:16px;
    line-height:25px;
    margin-bottom:35px;
}

.contact-heading{
    color:white;
    font-family:Georgia, serif;
    font-size:20px;
    margin-bottom:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:17px;
    color:#bfc3ca;
    font-size:16px;
    line-height:23px;
}

.contact-item i{
    color:#e4bc3f;
    font-size:18px;
    width:20px;
    margin-top:3px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons{
    display:flex;
    gap:14px;
    margin-top:30px;
}

.social-icons a{
    width:43px;
    height:43px;
    border:1px solid #29323b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9dce0;
    text-decoration:none;
    font-size:18px;
    transition:0.2s;
}

.social-icons a:hover{
    border-color:#e4bc3f;
    color:#e4bc3f;
    transform:translateY(-2px);
}

/* =========================
   FOOTER COLUMNS
========================= */
.footer-column h3{
    color:white;
    font-family:Georgia, serif;
    font-size:21px;
    margin:0 0 25px;
}

.footer-column a{
    display:block;
    color:#b8bdc5;
    text-decoration:none;
    font-size:16px;
    margin-bottom:17px;
    transition:0.2s;
}

.footer-column a:hover{
    color:#e4bc3f;
    padding-left:3px;
}

.important-heading{
    margin-top:45px !important;
    margin-bottom:25px !important;
}
/* =========================
   FIND US
========================= */

.find-us{
    background:#061d36;
    border:1px solid #173957;
    border-radius:14px;
    overflow:hidden;
    height:max-content;
}

.find-us > h3{
    font-family:Georgia, serif;
    font-size:22px;
    color:white;
    padding:24px 22px;
    margin:0;
    border-bottom:1px solid #24425d;
}

.map-container{
    width:100%;
    height:330px;
    background:#222;
}

.map-container img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.direction-btn{
    width:calc(100% - 40px);
    height:48px;
    margin:20px;
    background:transparent;
    border:1px solid #e4bc3f;
    border-radius:5px;
    color:#e4bc3f;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.direction-btn i{
    margin-left:8px;
}

.direction-btn:hover{
    background:#e4bc3f;
    color:#101010;
}


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

.footer-bottom{
    min-height:80px;
    padding:20px 4%;
    border-top:1px solid #24282c;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-bottom p{
    color:#c2c5ca;
    font-size:15px;
    margin:0;
}

.footer-bottom > span{
    color:#e4bc3f;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
}


.bottom-links{
    display:flex;
    align-items:center;
    gap:12px;
}

.bottom-links a{
    color:#c2c5ca;
    text-decoration:none;
    font-size:15px;
}
.bottom-links a:hover{
    color:#e4bc3f;
}
.bottom-links b{
    color:#555b61;
    font-weight:400;
}



/* =========================================================
   RESPONSIVE DESIGN
   Desktop • Laptop • Tablet • Mobile
   ========================================================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
}


/* ================= LARGE LAPTOP ================= */

@media (max-width:1200px){

    .header{
        padding:0 15px;
    }

    .nav{
        gap:22px;
        margin-left:30px;
    }

    .nav a{
        font-size:16px;
    }

    .actions{
        gap:16px;
    }

    .current-hero{
        gap:30px;
        padding:50px 25px 40px;
    }

    .current-left h1{
        font-size:45px;
    }

    .current-categories{
        grid-template-columns:repeat(4,1fr);
        gap:12px;
    }

    .footer-content{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:45px;
    }

    .find-us{
        grid-column:1 / -1;
        max-width:600px;
        width:100%;
    }
}


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

@media (max-width:992px){

    .header{
        min-height:80px;
        padding:8px 18px;
        flex-wrap:wrap;
        gap:10px;
    }

    .logo{
        width:85px;
        height:70px;
    }

    .nav{
        order:2;
        width:100%;
        margin-left:0;
        justify-content:center;
        gap:14px 20px;
        flex-wrap:wrap;
    }

    .nav a{
        font-size:15px;
    }

    .actions{
        margin-left:auto;
        gap:15px;
    }

    .actions i{
        font-size:19px;
    }

    .login-btn{
        padding:8px 16px;
        font-size:14px;
    }

    .top-bar{
        height:auto;
        min-height:40px;
        padding:8px 15px;
        text-align:center;
        flex-wrap:wrap;
        font-size:14px;
    }

    /* HERO */

    .current-hero{
        flex-direction:column;
        align-items:stretch;
        padding:45px 25px 35px;
        gap:30px;
    }

    .current-left,
    .current-right{
        width:100%;
    }

    .current-left h1{
        font-size:42px;
    }

    .current-para{
        max-width:100%;
    }

    .current-search{
        max-width:100%;
    }

    .current-right img{
        height:300px;
    }

    /* CATEGORIES */

    .current-categories{
        grid-template-columns:repeat(4,1fr);
        padding:0 20px 25px;
        gap:12px;
    }

    .current-category{
        height:90px;
    }

    /* CONTENT */

    .current-content{
        grid-template-columns:1fr;
        padding:0 20px 50px;
        gap:25px;
    }

    .current-sidebar{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .newsletter-box{
        grid-column:1 / -1;
    }

    /* FOOTER */

    .footer-newsletter{
        margin:35px 3% 50px;
        padding:25px;
        flex-direction:column;
        align-items:stretch;
        gap:20px;
    }

    .newsletter-form{
        width:100%;
        max-width:none;
    }

    .footer-content{
        grid-template-columns:1fr 1fr;
        gap:40px;
        padding:0 25px 55px;
    }

    .find-us{
        grid-column:1 / -1;
    }

    .footer-bottom{
        flex-wrap:wrap;
        justify-content:center;
        text-align:center;
    }
}


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

@media (max-width:768px){

    .header{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        padding:10px 10px 14px;
        gap:10px;
    }

    .logo{
        width:80px;
        height:65px;
    }

    .nav{
        order:0;
        width:100%;
        margin-left:0;
        gap:8px 14px;
    }

    .nav a{
        font-size:13px;
    }

    .actions{
        margin-left:0;
        justify-content:center;
        gap:18px;
    }

    .actions i{
        font-size:18px;
    }

    .login-btn{
        padding:8px 16px;
        font-size:13px;
    }

    .top-bar{
        padding:8px 10px;
        gap:6px 9px;
        font-size:12px;
        line-height:18px;
    }

    /* HERO */

    .current-hero{
        padding:35px 15px 30px;
        gap:25px;
    }

    .current-tag{
        font-size:12px;
        padding:7px 12px;
        margin-bottom:15px;
    }

    .current-left h1{
        font-size:32px;
        line-height:1.15;
        margin-bottom:15px;
    }

    .current-para{
        font-size:15px;
        line-height:24px;
        margin-bottom:20px;
    }

    .current-search{
        height:52px;
        padding-left:12px;
        border-radius:10px;
    }

    .current-search i{
        font-size:17px;
        margin-right:9px;
    }

    .current-search input{
        font-size:13px;
        min-width:0;
    }

    .current-search button{
        width:78px;
        height:38px;
        margin-right:6px;
        border-radius:8px;
        font-size:13px;
    }

    .current-right img{
        height:230px;
        border-radius:12px;
    }

    /* CATEGORIES */

    .current-categories{
        grid-template-columns:repeat(2,1fr);
        padding:0 12px 20px;
        gap:10px;
    }

    .current-category{
        height:82px;
        gap:7px;
    }

    .current-category i{
        font-size:22px;
    }

    .current-category span{
        font-size:11px;
    }

    /* CONTENT */

    .current-content{
        grid-template-columns:1fr;
        padding:0 12px 40px;
        gap:20px;
    }

    .latest-updates{
        padding:0 10px;
    }

    .latest-heading{
        padding:12px 3px;
    }

    .latest-heading h2{
        font-size:18px;
    }

    .latest-heading a{
        font-size:12px;
    }

    .current-article{
        flex-direction:column;
        gap:12px;
        padding:14px 3px;
    }

    .current-article img{
        width:100%;
        height:190px;
        border-radius:8px;
    }

    .article-info h3{
        font-size:16px;
        line-height:22px;
    }

    .article-info p{
        font-size:13px;
        line-height:20px;
    }

    .article-details{
        flex-wrap:wrap;
        gap:8px 15px;
        font-size:11px;
    }

    .view-articles{
        width:100%;
        max-width:220px;
    }

    /* SIDEBAR */

    .current-sidebar{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .quiz-box,
    .trending-box,
    .pdf-box{
        padding:17px;
    }

    .newsletter-box{
        padding:18px;
    }

    /* FOOTER */

    .main-footer{
        margin-top:20px;
    }

    .footer-newsletter{
        margin:30px 12px 40px;
        padding:22px 16px;
        gap:18px;
    }

    .newsletter-text h3{
        font-size:19px;
    }

    .newsletter-text p{
        font-size:14px;
        line-height:22px;
    }

    .newsletter-form{
        width:100%;
        height:48px;
    }

    .newsletter-form input{
        min-width:0;
        font-size:13px;
        padding:0 11px;
    }

    .newsletter-form button{
        width:105px;
        font-size:13px;
    }

    .footer-content{
        grid-template-columns:1fr;
        gap:35px;
        padding:0 16px 45px;
    }

    .company-description{
        max-width:100%;
    }

    .find-us{
        width:100%;
    }

    .find-us > h3{
        font-size:20px;
        padding:20px 18px;
    }

    .map-container{
        height:240px;
    }

    .direction-btn{
        width:calc(100% - 30px);
        margin:15px;
    }

    .footer-bottom{
        flex-direction:column;
        padding:18px 12px;
        gap:9px;
    }

    .footer-bottom p{
        font-size:12px;
        text-align:center;
    }

    .footer-bottom > span{
        font-size:9px;
        text-align:center;
    }

    .bottom-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .bottom-links a{
        font-size:12px;
    }
}


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

@media (max-width:480px){

    .nav{
        gap:7px 10px;
    }

    .nav a{
        font-size:11px;
    }

    .actions{
        gap:13px;
    }

    .current-hero{
        padding:28px 10px 25px;
    }

    .current-left h1{
        font-size:27px;
    }

    .current-para{
        font-size:14px;
        line-height:22px;
    }

    .current-search{
        height:48px;
    }

    .current-search input{
        font-size:11px;
    }

    .current-search button{
        width:68px;
        height:34px;
        font-size:12px;
    }

    .current-right img{
        height:190px;
    }

    .current-categories{
        padding-left:8px;
        padding-right:8px;
    }

    .current-category{
        height:75px;
    }

    .current-category i{
        font-size:19px;
    }

    .current-category span{
        font-size:10px;
    }

    .current-article img{
        height:165px;
    }

    .footer-newsletter{
        margin-left:8px;
        margin-right:8px;
    }

    .newsletter-form button{
        width:90px;
        font-size:12px;
    }

    .map-container{
        height:210px;
    }
}
/* =========================================================
   HOME PAGE NAVBAR + FOOTER
   Current Affairs content remains unchanged.
   ========================================================= */
.top-bar{
    min-height:40px;padding:8px 20px;background:#101a35;color:#fff;
    display:flex;justify-content:center;align-items:center;gap:12px;
    text-align:center;font-size:16px;line-height:22px;
}
.top-bar .new{color:#f4b53f;font-weight:800}
.top-bar a{color:#f4c84a;font-weight:700;text-decoration:underline}

.header{
    min-height:92px;padding:8px 3%;display:flex;align-items:center;
    gap:25px;background:#fff;
}
.header .logo{width:150px;height:120px;object-fit:contain}
.nav{
    flex:1;display:flex;justify-content:center;align-items:center;
    gap:28px;margin-left:0;
}
.nav a{
    font-family:"Gill Sans","Gill Sans MT",Calibri,sans-serif;
    font-size:19px;font-weight:700;color:#111;white-space:nowrap;
}
.nav a:hover{color:#1665ff;text-decoration:underline;text-underline-offset:7px}
.actions{display:flex;align-items:center;gap:20px}
.actions i{font-size:23px;color:#222;cursor:pointer}
.actions i:hover{color:#1665ff}
.login-btn{
    border:0;background:#0b1736;color:#fff;padding:11px 22px;
    border-radius:10px;font-size:16px;cursor:pointer;
}
.login-btn:hover{background:#162a61}

.main-footer{
    background:#080d12;color:#d7d9de;margin-top:30px;
    font-family:Arial,Helvetica,sans-serif;width:100%;
}
.main-footer .footer-top{
    max-width:1400px;margin:0 auto;padding:55px 3%;
    display:grid;grid-template-columns:1.35fr 1fr 1fr 1.25fr;
    gap:45px;align-items:start;
}
.main-footer .footer-brand img{
    width:68px;height:68px;object-fit:contain;background:#fff;
    border-radius:7px;padding:5px;display:block;margin-bottom:14px;
}
.main-footer .footer-brand h2{
    margin:0 0 12px;color:#e4bc3f;font-family:Georgia,serif;
    font-size:27px;line-height:1.1;
}
.main-footer .footer-brand p{
    max-width:310px;margin:0;color:#b8bdc5;font-size:15px;line-height:25px;
}
.main-footer .footer-column{display:flex;flex-direction:column;min-width:0}
.main-footer .footer-column h3,.main-footer .contact-column h3,
.main-footer .app-content h3,.main-footer .location-section h3,
.main-footer .social-section h3{
    color:#fff;font-family:Georgia,serif;font-size:20px;margin:0 0 20px;
}
.main-footer .footer-column>a{
    color:#b8bdc5;text-decoration:none;font-size:15px;line-height:22px;
    margin-bottom:13px;transition:.2s;
}
.main-footer .footer-column>a:hover{color:#e4bc3f;padding-left:3px}
.main-footer .footer-contact-item{
    display:flex;align-items:flex-start;gap:13px;margin-bottom:18px;
}
.main-footer .footer-contact-item>i{
    color:#e4bc3f;font-size:18px;width:20px;min-width:20px;margin-top:3px;
}
.main-footer .footer-contact-item a,.main-footer .footer-contact-item p{
    color:#b8bdc5;font-size:15px;line-height:23px;text-decoration:none;margin:0;
}
.main-footer .footer-contact-item a{display:block;margin-bottom:3px}
.main-footer .footer-contact-item a:hover{color:#e4bc3f}
.main-footer .footer-middle{
    max-width:1400px;margin:0 auto;padding:32px 3%;
    border-top:1px solid #252d35;border-bottom:1px solid #252d35;
    display:grid;grid-template-columns:1fr 1.25fr 1.35fr;gap:45px;align-items:center;
}
.main-footer .social-section h3{margin-bottom:16px}
.main-footer .social-icons{display:flex;align-items:center;gap:12px}
.main-footer .social-icons a{
    width:44px;height:44px;border:1px solid #39434d;border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:#d9dce0;
    text-decoration:none;font-size:18px;transition:.25s;
}
.main-footer .social-icons a:hover{
    background:#e4bc3f;border-color:#e4bc3f;color:#101010;transform:translateY(-3px);
}
.main-footer .app-section{display:flex;gap:15px;align-items:flex-start}
.main-footer .app-icon{
    width:55px;height:55px;min-width:55px;border-radius:10px;
    background:#173957;border:1px solid #2c5574;color:#e4bc3f;
    display:flex;align-items:center;justify-content:center;font-size:21px;
}
.main-footer .app-content h3{margin-bottom:7px}
.main-footer .app-content p{color:#aeb5c0;font-size:14px;line-height:21px;margin:0 0 12px}
.main-footer .app-btn{
    display:inline-flex;align-items:center;gap:8px;padding:9px 15px;
    background:#e4bc3f;color:#101010;text-decoration:none;border-radius:6px;
    font-size:13px;font-weight:bold;
}
.main-footer .app-btn:hover{background:#f0c94d}
.main-footer .location-section{min-width:0}
.main-footer .location-section h3{margin-bottom:12px}
.main-footer .map-card{
    position:relative;display:block;width:100%;height:150px;overflow:hidden;
    border:1px solid #173957;border-radius:10px;background:#061d36;text-decoration:none;
}
.main-footer .map-card img{width:100%;height:100%;object-fit:cover;display:block;transition:.3s}
.main-footer .map-overlay{
    position:absolute;inset:0;background:rgba(8,13,18,.58);
    display:flex;align-items:center;justify-content:center;gap:8px;color:#fff;
    font-size:15px;font-weight:600;opacity:0;transition:.3s;
}
.main-footer .map-card:hover img{transform:scale(1.05)}
.main-footer .map-card:hover .map-overlay{opacity:1}
.main-footer .map-overlay i{color:#e4bc3f;font-size:20px}
.main-footer .map-address{color:#aeb5c0;font-size:12px;line-height:19px;margin:9px 0 0}
.main-footer .footer-bottom{
    min-height:75px;padding:20px 3%;display:flex;align-items:center;
    justify-content:space-between;gap:25px;max-width:1400px;margin:0 auto;
}
.main-footer .footer-bottom p{color:#c2c5ca;font-size:14px;margin:0}
.main-footer .footer-bottom-links{display:flex;align-items:center;gap:10px}
.main-footer .footer-bottom-links a{color:#c2c5ca;text-decoration:none;font-size:14px}
.main-footer .footer-bottom-links a:hover{color:#e4bc3f}
.main-footer .footer-bottom-links span{color:#50575e}
.main-footer .footer-tagline{color:#e4bc3f;font-size:11px;font-weight:bold;letter-spacing:1.5px}

@media (max-width:1000px){
    .header{padding:8px 3%;flex-wrap:wrap}
    .header .logo{width:120px;height:95px}
    .nav{gap:20px}.nav a{font-size:17px}.actions{gap:16px}
    .main-footer .footer-top{grid-template-columns:1.3fr 1fr 1fr;gap:35px}
    .main-footer .contact-column{grid-column:1 / -1}
    .main-footer .footer-middle{grid-template-columns:1fr 1fr}
    .main-footer .location-section{grid-column:1 / -1}
}
@media (max-width:650px){
    .top-bar{min-height:40px;padding:8px 12px;font-size:13px;line-height:20px;flex-wrap:wrap}
    .header{min-height:92px;flex-direction:column;justify-content:center;align-items:center;padding:10px 12px 15px;gap:12px}
    .header .logo{width:100px;height:80px}
    .nav{width:100%;gap:10px 18px;flex-wrap:wrap;justify-content:center}
    .nav a{font-size:14px}.actions{justify-content:center;gap:18px}
    .actions i{font-size:18px}.login-btn{padding:8px 17px;font-size:14px}
    .main-footer .footer-top{grid-template-columns:1fr;padding:45px 25px;gap:35px}
    .main-footer .contact-column{grid-column:auto}
    .main-footer .footer-middle{grid-template-columns:1fr;padding:35px 25px;gap:35px}
    .main-footer .location-section{grid-column:auto}
    .main-footer .map-card{height:220px}
    .main-footer .footer-bottom{flex-direction:column;text-align:center;padding:25px 20px;gap:15px}
    .main-footer .footer-bottom-links{flex-wrap:wrap;justify-content:center}
}
@media (max-width:400px){
    .header .logo{width:90px;height:72px}
    .nav{gap:8px 12px}.nav a{font-size:12px}
    .main-footer .social-icons a{width:40px;height:40px}
}


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

.main-footer {

    background:#080d12;

    color:#d7d9de;

    margin-top:80px;

    font-family:
        "Inter",
        Arial,
        sans-serif;

}


/* =========================================
   MAIN FOOTER CONTENT
========================================= */

.footer-content {

    max-width:1400px;

    margin:auto;

    padding:65px 5% 55px;

    display:grid;

    grid-template-columns:
        1.35fr
        1fr
        1.1fr
        1.25fr;

    gap:55px;

}


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

.footer-logo {

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

}


.footer-logo img {

    width:68px;

    height:68px;

    object-fit:contain;

    background:white;

    border-radius:7px;

    padding:5px;

}


.footer-logo h2 {

    color:#e4bc3f;

    font-family:Georgia,serif;

    font-size:27px;

    line-height:29px;

    margin:0;

}


.company-description {

    max-width:310px;

    color:#b8bdc5;

    font-size:15px;

    line-height:25px;

}


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

.footer-column h3,
.footer-contact h3,
.connect-social h3,
.footer-app h3,
.telegram-box h3,
.footer-map h3 {

    color:white;

    font-family:Georgia,serif;

    font-size:20px;

    margin:0 0 22px;

}


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

.footer-column {

    display:flex;

    flex-direction:column;

}


.footer-column a {

    color:#b8bdc5;

    text-decoration:none;

    font-size:15px;

    margin-bottom:16px;

    transition:.2s;

}


.footer-column a:hover {

    color:#e4bc3f;

    padding-left:3px;

}


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

.footer-contact p {

    display:flex;

    align-items:flex-start;

    gap:14px;

    color:#b8bdc5;

    font-size:15px;

    line-height:23px;

    margin-bottom:18px;

}


.footer-contact i {

    color:#e4bc3f;

    font-size:18px;

    width:20px;

    margin-top:3px;

}


/* =========================================
   CONNECT SECTION
========================================= */

.footer-connect {

    max-width:1400px;

    margin:auto;

    padding:35px 5%;

    border-top:1px solid #252d35;

    border-bottom:1px solid #252d35;

    display:grid;

    grid-template-columns:
        1fr
        1.25fr
        1.25fr
        1.35fr;

    gap:45px;

    align-items:center;

}


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

.social-icons {

    display:flex;

    gap:12px;

}


.social-icons a {

    width:44px;

    height:44px;

    border:1px solid #39434d;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#d9dce0;

    text-decoration:none;

    font-size:18px;

    transition:.25s;

}


.social-icons a:hover {

    background:#e4bc3f;

    border-color:#e4bc3f;

    color:#101010;

    transform:translateY(-3px);

}


/* =========================================
   APP
========================================= */

.footer-app {

    display:flex;

    gap:15px;

    align-items:flex-start;

}


.app-icon {

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:10px;

    background:#173957;

    border:1px solid #2c5574;

    color:#e4bc3f;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:21px;

}


.footer-app h3 {

    margin-bottom:8px;

}


.footer-app p,
.telegram-box p {

    color:#aeb5c0;

    font-size:14px;

    line-height:21px;

    margin-bottom:13px;

}


.app-btn {

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:9px 15px;

    background:#e4bc3f;

    color:#101010;

    text-decoration:none;

    border-radius:6px;

    font-size:13px;

    font-weight:bold;

}


.app-btn:hover {

    background:#f0c94d;

}


/* =========================================
   TELEGRAM
========================================= */

.telegram-box {

    display:flex;

    gap:15px;

    align-items:flex-start;

}


.telegram-icon {

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:10px;

    background:#173957;

    border:1px solid #2c5574;

    color:#29b6f6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

}


.telegram-box h3 {

    margin-bottom:8px;

}


.telegram-btn {

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:9px 15px;

    background:#19c9e8;

    color:#06151d;

    text-decoration:none;

    border-radius:6px;

    font-size:13px;

    font-weight:bold;

}


.telegram-btn:hover {

    background:#43ddf4;

}


/* =========================================
   MAP
========================================= */

.footer-map {

    background:#061d36;

    border:1px solid #173957;

    border-radius:12px;

    overflow:hidden;

}


.footer-map h3 {

    margin:0;

    padding:17px 18px;

    border-bottom:1px solid #24425d;

}


.footer-map a {

    display:block;

    position:relative;

    height:170px;

}


.footer-map img {

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.3s;

}


.map-overlay {

    position:absolute;

    inset:0;

    background:rgba(8,13,18,.58);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:white;

    font-size:15px;

    font-weight:600;

    opacity:0;

    transition:.3s;

}


.footer-map a:hover img {

    transform:scale(1.05);

}


.footer-map a:hover .map-overlay {

    opacity:1;

}


.map-overlay i {

    color:#e4bc3f;

    font-size:20px;

}


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

.footer-bottom {

    max-width:1400px;

    margin:auto;

    min-height:75px;

    padding:20px 5%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

}


.footer-bottom p {

    color:#c2c5ca;

    font-size:14px;

    margin:0;

}


.footer-bottom > span {

    color:#e4bc3f;

    font-size:11px;

    font-weight:bold;

    letter-spacing:1.5px;

}


.bottom-links {

    display:flex;

    align-items:center;

    gap:10px;

}


.bottom-links a {

    color:#c2c5ca;

    text-decoration:none;

    font-size:14px;

}


.bottom-links a:hover {

    color:#e4bc3f;

}


.bottom-links b {

    color:#50575e;

    font-weight:400;

}


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

@media (max-width:1000px) {

    .footer-content {

        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap:40px;

    }


    .footer-connect {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-map {

        grid-column:span 2;

    }

}


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

@media (max-width:650px) {

    .footer-content {

        grid-template-columns:1fr;

        padding:50px 25px 40px;

        gap:38px;

    }


    .footer-connect {

        grid-template-columns:1fr;

        padding:35px 25px;

        gap:35px;

    }


    .footer-map {

        grid-column:auto;

    }


    .footer-map a {

        height:220px;

    }


    .footer-bottom {

        flex-direction:column;

        text-align:center;

        padding:25px 20px;

        gap:15px;

    }


    .bottom-links {

        flex-wrap:wrap;

        justify-content:center;

    }

}


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

@media (max-width:400px) {

    .footer-logo img {

        width:58px;

        height:58px;

    }


    .footer-logo h2 {

        font-size:23px;

    }


    .social-icons a {

        width:40px;

        height:40px;

    }


    .footer-app,
    .telegram-box {

        gap:12px;

    }

}


/* =========================================================
   FINAL FOOTER FIX
   This section styles the footer classes that are actually
   present in about.html. Nothing above this section is changed.
========================================================= */

.main-footer{
    background:#080d12;
    color:#d7d9de;
    margin-top:80px;
    font-family:Arial, Helvetica, sans-serif;
    width:100%;
}

.main-footer .footer-top{
    max-width:1400px;
    margin:0 auto;
    padding:55px 3%;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.25fr;
    gap:45px;
    align-items:start;
}

.main-footer .footer-brand{
    min-width:0;
}

.main-footer .footer-brand img{
    width:68px;
    height:68px;
    object-fit:contain;
    background:#fff;
    border-radius:7px;
    padding:5px;
    display:block;
    margin-bottom:14px;
}

.main-footer .footer-brand h2{
    margin:0 0 12px;
    color:#e4bc3f;
    font-family:Georgia,serif;
    font-size:27px;
    line-height:1.1;
}

.main-footer .footer-brand p{
    max-width:310px;
    margin:0;
    color:#b8bdc5;
    font-size:15px;
    line-height:25px;
}

.main-footer .footer-column{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.main-footer .footer-column h3,
.main-footer .contact-column h3,
.main-footer .app-content h3,
.main-footer .location-section h3,
.main-footer .social-section h3{
    color:#fff;
    font-family:Georgia,serif;
    font-size:20px;
    margin:0 0 20px;
}

.main-footer .footer-column > a{
    color:#b8bdc5;
    text-decoration:none;
    font-size:15px;
    line-height:22px;
    margin-bottom:13px;
    transition:.2s;
}

.main-footer .footer-column > a:hover{
    color:#e4bc3f;
    padding-left:3px;
}

.main-footer .footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:18px;
}

.main-footer .footer-contact-item > i{
    color:#e4bc3f;
    font-size:18px;
    width:20px;
    min-width:20px;
    margin-top:3px;
}

.main-footer .footer-contact-item a,
.main-footer .footer-contact-item p{
    color:#b8bdc5;
    font-size:15px;
    line-height:23px;
    text-decoration:none;
    margin:0;
}

.main-footer .footer-contact-item a{
    display:block;
    margin-bottom:3px;
}

.main-footer .footer-contact-item a:hover{
    color:#e4bc3f;
}

.main-footer .footer-middle{
    max-width:1400px;
    margin:0 auto;
    padding:32px 3%;
    border-top:1px solid #252d35;
    border-bottom:1px solid #252d35;
    display:grid;
    grid-template-columns:1fr 1.25fr 1.35fr;
    gap:45px;
    align-items:center;
}

.main-footer .social-section h3{
    margin-bottom:16px;
}

.main-footer .social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.main-footer .social-icons a{
    width:44px;
    height:44px;
    border:1px solid #39434d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9dce0;
    text-decoration:none;
    font-size:18px;
    transition:.25s;
}

.main-footer .social-icons a:hover{
    background:#e4bc3f;
    border-color:#e4bc3f;
    color:#101010;
    transform:translateY(-3px);
}

.main-footer .app-section{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.main-footer .app-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:10px;
    background:#173957;
    border:1px solid #2c5574;
    color:#e4bc3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.main-footer .app-content{
    min-width:0;
}

.main-footer .app-content h3{
    margin-bottom:7px;
}

.main-footer .app-content p{
    color:#aeb5c0;
    font-size:14px;
    line-height:21px;
    margin:0 0 12px;
}

.main-footer .app-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    background:#e4bc3f;
    color:#101010;
    text-decoration:none;
    border-radius:6px;
    font-size:13px;
    font-weight:bold;
}

.main-footer .app-btn:hover{
    background:#f0c94d;
}

.main-footer .location-section{
    min-width:0;
}

.main-footer .location-section h3{
    margin-bottom:12px;
}

.main-footer .map-card{
    position:relative;
    display:block;
    width:100%;
    height:150px;
    overflow:hidden;
    border:1px solid #173957;
    border-radius:10px;
    background:#061d36;
    text-decoration:none;
}

.main-footer .map-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.3s;
}

.main-footer .map-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,13,18,.58);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    opacity:0;
    transition:.3s;
}

.main-footer .map-card:hover img{
    transform:scale(1.05);
}

.main-footer .map-card:hover .map-overlay{
    opacity:1;
}

.main-footer .map-overlay i{
    color:#e4bc3f;
    font-size:20px;
}

.main-footer .map-address{
    color:#aeb5c0;
    font-size:12px;
    line-height:19px;
    margin:9px 0 0;
}

.main-footer .footer-bottom{
    min-height:75px;
    padding:20px 3%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    max-width:1400px;
    margin:0 auto;
}

.main-footer .footer-bottom p{
    color:#c2c5ca;
    font-size:14px;
    margin:0;
}

.main-footer .footer-bottom-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.main-footer .footer-bottom-links a{
    color:#c2c5ca;
    text-decoration:none;
    font-size:14px;
}

.main-footer .footer-bottom-links a:hover{
    color:#e4bc3f;
}

.main-footer .footer-bottom-links span{
    color:#50575e;
}

.main-footer .footer-tagline{
    color:#e4bc3f;
    font-size:11px;
    font-weight:bold;
    letter-spacing:1.5px;
}

/* TABLET */
@media (max-width:1000px){
    .main-footer .footer-top{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:35px;
    }

    .main-footer .contact-column{
        grid-column:1 / -1;
    }

    .main-footer .footer-middle{
        grid-template-columns:1fr 1fr;
    }

    .main-footer .location-section{
        grid-column:1 / -1;
    }
}

/* MOBILE */
@media (max-width:650px){
    .main-footer .footer-top{
        grid-template-columns:1fr;
        padding:45px 25px;
        gap:35px;
    }

    .main-footer .contact-column{
        grid-column:auto;
    }

    .main-footer .footer-middle{
        grid-template-columns:1fr;
        padding:35px 25px;
        gap:35px;
    }

    .main-footer .location-section{
        grid-column:auto;
    }

    .main-footer .map-card{
        height:220px;
    }

    .main-footer .footer-bottom{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
        gap:15px;
    }

    .main-footer .footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}