﻿/* =========================
   RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================== */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}


/* =========================
   HEADER
========================== */

.header {
    background: #222;
    color: #fff;
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================
   LOGO
========================== */

.logo h1 {
    font-size: 30px;
}


/* =========================
   MENU
========================== */

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}

    .menu a:hover {
        color: #ff9800;
    }


/* =========================
   MAIN CONTENT
========================== */

.content-area {
    max-width: 1100px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}


/* =========================
   FOOTER
========================== */

.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px;
    margin-top: 30px;
}


/* =========================
   RESPONSIVE DESIGN
========================== */

@media(max-width:768px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        margin-top: 10px;
    }

        .menu a {
            display: inline-block;
            margin: 8px;
        }

    .content-area {
        margin: 15px;
        padding: 20px;
    }
}

.blog-details {
   /* width: 90%;*/
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ddd;
}

.blog-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.blog-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-content {
    font-size: 17px;
    line-height: 30px;
    color: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background: #050505;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ================= HEADER ================= */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* LOGO */

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
    display: block;
}

/* NAVIGATION */

nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

    nav ul li a {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        transition: .3s;
    }

        nav ul li a:hover {
            color: #ffd000;
        }

/* BUTTON */

.btn {
    background: #ffd000;
    color: #000;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .3s;
    display: inline-block;
}

    .btn:hover {
        transform: translateY(-4px);
    }

/* ================= INNER BANNER ================= */

.inner-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url('./website/images/about.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    padding-top: 80px;
}

    .inner-banner-content h1 {
        font-size: 65px;
        font-weight: 800;
        margin-bottom: 18px;
    }

/* BREADCRUMB */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: #ffd000;
        font-size: 18px;
        font-weight: 600;
    }

    .breadcrumb span,
    .breadcrumb p {
        color: #fff;
        font-size: 18px;
    }

/* ================= CONTENT ================= */

.content-area {
    min-height: 700px;
    padding: 70px 0;
}

/* ================= FOOTER ================= */

.footer {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.92)), url('./website/images/footer.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px 25px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.footer-box h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffd000;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
}

    .footer-box h3::after {
        content: '';
        width: 60px;
        height: 3px;
        background: #ffd000;
        position: absolute;
        left: 0;
        bottom: -10px;
        border-radius: 50px;
    }

.footer-box p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-box ul {
    list-style: none;
}

    .footer-box ul li {
        margin-bottom: 15px;
    }

        .footer-box ul li a {
            color: #ddd;
            transition: .3s;
        }

            .footer-box ul li a:hover {
                color: #ffd000;
                padding-left: 8px;
            }

/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: .3s;
    }

        .social-icons a:hover {
            background: #ffd000;
            color: #000;
            transform: translateY(-5px);
        }

/* COPYRIGHT */

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #bbb;
    font-size: 14px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {
    .blog-title {
        font-size: 25px;
        font-weight: bold;
        color: #222;
        margin-bottom: 30px !important;
        line-height: 1.2;
    }
    .blog-img {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 25px;
        margin-top: 22px;
    }
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    nav ul {
        gap: 18px;
    }

    .inner-banner-content h1 {
        font-size: 48px;
    }
}

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        width: 150px;
    }

    .inner-banner {
        height: 260px;
    }

    .inner-banner-content {
        padding-top: 100px;
    }

        .inner-banner-content h1 {
            font-size: 40px;
        }

    .breadcrumb a,
    .breadcrumb span,
    .breadcrumb p {
        font-size: 15px;
    }

    .content-area {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }
}

@media(max-width:480px) {

    nav ul li a {
        font-size: 14px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .inner-banner {
        height: 220px;
    }

    .inner-banner-content h1 {
        font-size: 30px;
    }

    .footer-box h2 {
        font-size: 24px;
    }

    .footer-box h3 {
        font-size: 20px;
    }
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

    .footer-box h3::after {
        content: '';
        width: 60px;
        height: 3px;
        background: #ffd000;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        border-radius: 50px;
    }

.footer-box {
    text-align: left;
}

@media(max-width:768px) {

    .footer-box {
        text-align: center;
    }

        .footer-box h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
}