* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #fff;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.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
}
.logo {
    width: 150px;
    height: 120px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px
}

.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
}

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

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

.hero{

    width:100%;

    max-width:1500px;

    margin:0 auto;

    padding:65px 5%;

    display:grid;

    grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

    gap:60px;

    align-items:center;

}


/* ========================================
   LEFT SIDE
======================================== */

.hero-left{

    width:100%;

    min-width:0;

}


/* ========================================
   TAG
======================================== */

.hero-tag{

    display:inline-block;

    background:#f1f3f5;

    color:#202938;

    padding:9px 18px;

    border-radius:25px;

    font-family:Arial,sans-serif;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:20px;

}


/* ========================================
   HEADING
======================================== */

.hero-left h1{

    margin:0 0 22px;

    color:#111827;

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

    font-size:38px;

    line-height:1.18;

    font-weight:700;

}


/* BLUE PART */

.hero-left h1 span{

    color:#1665ff;

}


/* ========================================
   DESCRIPTION
======================================== */

.hero-para{

    max-width:680px;

    margin:0 0 28px;

    color:#555;

    font-family:Arial,sans-serif;

    font-size:17px;

    line-height:28px;

}


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

.hero-search{

    width:100%;

    max-width:650px;

    height:60px;

    display:flex;

    align-items:center;

    background:white;

    border:1px solid #ddd;

    border-radius:18px;

    overflow:hidden;

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

}


/* INPUT */

.hero-search input{

    flex:1;

    min-width:0;

    height:100%;

    border:none;

    outline:none;

    padding:0 20px;

    background:white;

    color:#222;

    font-size:16px;

    font-family:Arial,sans-serif;

}


.hero-search input::placeholder{

    color:#999;

}


/* SEARCH BUTTON */

.hero-search button{

    width:105px;

    height:44px;

    margin-right:7px;

    border:none;

    border-radius:14px;

    background:#1665ff;

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    flex-shrink:0;

}


.hero-search button:hover{

    background:#0d55dc;

}


/* ========================================
   POPULAR
======================================== */

.hero-popular{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

    font-family:Arial,sans-serif;

    font-size:14px;

}


.hero-popular b{

    color:#222;

}


.hero-popular span{

    background:#f1f3f5;

    color:#333;

    padding:7px 13px;

    border-radius:20px;

    font-size:13px;

}


/* ========================================
   RIGHT SIDE
======================================== */

.hero-right{

    width:100%;

    min-width:0;

    display:flex;

    justify-content:center;

    align-items:center;

}


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

.hero-slider{

    position:relative;

    width:100%;

    max-width:620px;

    aspect-ratio:16 / 10;

    overflow:hidden;

    border-radius:20px;

    background:#fff;

}


/* SLIDER IMAGE */

.hero-slider img{

    width:100%;

    height:100%;

    display:block;

    object-fit:contain;

    opacity:1;

    transition:opacity .25s ease;

}


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

@media (max-width:900px){

    .hero{

        grid-template-columns:
        1fr 1fr;

        gap:30px;

        padding:50px 4%;

    }


    .hero-left h1{

        font-size:34px;

        line-height:1.2;

    }


    .hero-para{

        font-size:16px;

        line-height:26px;

    }


    .hero-search{

        height:56px;

    }


    .hero-slider{

        max-width:100%;

    }

}


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

@media (max-width:650px){

    .hero{

        display:flex;

        flex-direction:column;

        padding:40px 20px;

        gap:35px;

    }


    .hero-left{

        width:100%;

    }


    .hero-left h1{

        font-size:30px;

        line-height:1.2;

    }


    .hero-para{

        font-size:16px;

        line-height:25px;

    }


    .hero-search{

        width:100%;

        height:55px;

    }


    .hero-search button{

        width:90px;

        height:42px;

        font-size:15px;

    }


    .hero-popular{

        gap:7px;

    }


    .hero-popular span{

        font-size:12px;

        padding:6px 10px;

    }


    .hero-right{

        width:100%;

    }


    .hero-slider{

        width:100%;

        max-width:100%;

        aspect-ratio:16 / 10;

    }

}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 14px 2%
}

.stat-box {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid #ddd
}

.stat-box:last-child {
    border-right: 0
}

.stat-box i {
    font-size: 27px;
    color: #1665ff
}

.stat-box div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.stat-box strong {
    font-size: 18px
}

.stat-box span {
    font-size: 13px;
    letter-spacing: 1px
}

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

.categories{
    padding:60px 5%;
    background:#f8f9fb;
}

.categories h2{
    font-family:"Inter",sans-serif;
    font-size:32px;
    margin-bottom:35px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.category-card{
    display:flex;
    flex-direction:column;
    height:auto;
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
    transition:0.3s;
}

/* IMAGE - 90% */

.category-image{
    width:100%;
    aspect-ratio:16 / 10;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* TITLE - 10% */

.category-title{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:white;
    color:#111d4a;

    font-family:"Inter",sans-serif;
    font-size:17px;
    font-weight:700;

    border-top:1px solid #e5e5e5;
}

.category-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.category-card:hover .category-title{
    color:#1665ff;
}

.founders-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f8f9fc, #fff 50%, #f8f9fc)
}

.founders-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center
}

.founders-label,
.founder-tag {
    color: #1665ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px
}

.founders-label {
    margin-bottom: 12px
}

.founders-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #101a35;
    margin-bottom: 14px
}

.founders-heading>p:last-child {
    color: #687386;
    font-size: 16px;
    line-height: 26px
}

.founder-card {
    max-width: 1180px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 360px 1fr;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(16, 26, 53, .07)
}

.founder-card-two {
    grid-template-columns: 1fr 360px
}

.founder-card-two .founder-photo {
    grid-column: 2;
    grid-row: 1
}

.founder-card-two .founder-content {
    grid-column: 1;
    grid-row: 1
}

.founder-photo {
    position: relative;
    min-height: 440px;
    background: #eef1f5;
    overflow: hidden
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.founder-photo-badge {
    position: absolute;
    left: 20px;
    bottom: 18px;
    background: rgba(16, 26, 53, .92);
    color: #fff;
    padding: 9px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700
}

.founder-photo-badge i {
    color: #e4bc3f;
    margin-right: 5px
}

/* ========= ENQUIRY MODAL ========= */
.enquiry-modal { display: none; }
.enquiry-modal.active { display: block; }
.enquiry-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
}
.enquiry-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    max-width: calc(100% - 32px);
    background: #fff;
    border-radius: 12px;
    padding: 22px 22px 18px;
    box-shadow: 0 12px 40px rgba(16,26,53,0.15);
    z-index: 9999;
}
.enquiry-close {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
}
.enquiry-dialog h2 { margin: 4px 0 12px; color: #101a35; }
.enquiry-form { display: grid; gap: 10px; }
.enquiry-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.enquiry-form label { font-weight:700; font-size:14px; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea { padding:10px 12px; border:1px solid #d9d9d9; border-radius:8px; font-size:14px; }
.enquiry-form textarea { resize: vertical; }
.form-actions { display:flex; gap:10px; align-items:center; margin-top:6px; }
.submit-btn { background:#1665ff; color:#fff; border:0; padding:10px 16px; border-radius:8px; cursor:pointer; }
.submit-btn[disabled] { opacity:0.6; cursor:not-allowed; }
.cancel-btn { background:transparent; border:1px solid #ccc; padding:8px 12px; border-radius:8px; cursor:pointer; }
.required { color:#d33; }
.enq-status { margin-top:8px; font-size:14px; color:#0b1736; }

/* Footer CTA */
.enquiry-cta-btn { background:#1665ff; color:#fff; border:0; padding:10px 14px; border-radius:10px; cursor:pointer; }
.contact-cta { margin-top:12px; }

@media (max-width:600px){
    .enquiry-dialog { width: 94%; padding:16px; }
    .enquiry-form input, .enquiry-form select, .enquiry-form textarea { font-size:15px; }
}

.founder-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.founder-tag {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 13px
}

.founder-content h2 {
    font-size: 31px;
    line-height: 1.25;
    color: #101a35;
    margin-bottom: 20px
}

.founder-message {
    font-size: 16px;
    line-height: 27px;
    color: #596273;
    margin-bottom: 14px
}

.founder-message strong {
    color: #101a35
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 15px;
    padding-top: 16px;
    border-top: 1px solid #e9ecf1
}

.signature-line {
    width: 4px;
    height: 42px;
    background: #e4bc3f;
    border-radius: 5px
}

.founder-signature strong {
    display: block;
    font: 19px/23px Georgia, serif;
    color: #101a35
}

.founder-signature span {
    display: block;
    font-size: 13px;
    color: #7b8492;
    margin-top: 3px
}


/* =========================================
   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;

}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #c2c5ca;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

.footer-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e4bc3f;
    font-weight: 700;
    text-decoration: none;
}

.footer-credit-link i {
    font-size: 12px;
}

.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;
    }
}