/* ============================================================
   ALUFAME – Custom CSS  |  Font: Ubuntu
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* ── Root Variables ── */
:root {
    --gold: #D4A017;
    --gold-dark: #b8880f;
    --navy: #1a1f6e;
    --navy-dark: #12165a;
    --dark: #111111;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text-muted: #6c757d;
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px !important ;
    line-height: 1.75;
    color: #444;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* ── Section base ── */
section {
    padding: 70px 0;
}

/* ── Shared helpers ── */
.section-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
}

.section-heading {
    font-size:24px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}
.text-blue
{
  color: #100A56 !important;  
}
.card-text
{
 color: #7a7a7a !important;
}
.card-title
{
   color: #100A56 !important;  
}

.section-text {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.section-divider {
    width: 55px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.alufame-navbar {
    background-color: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
}


.navbar-toggler {
    /* padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x); */
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: rgb(243 240 240);
    background-color: #f9f9f9;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.alufame-navbar .navbar-brand img {
    height: 45px;
}

.alufame-navbar .nav-link {
    color: #ccc !important;
    font-size: 17px;
    font-weight: 500;
    padding: 6px 14px !important;
    border-radius: 4px;
    transition: color 0.25s, background 0.25s;
}

.alufame-navbar .nav-link:hover,
.alufame-navbar .nav-link.active {
    color: var(--gold) !important;
    background: rgba(212, 160, 23, 0.1);
}

/* ============================================================
   BANNER
   ============================================================ */
   .banner-section-about {
    position: relative;
    width: 100%;
    height: 300px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.banner-overlay-about {
    position: relative;
    width: 100%;
    height: 300px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-section {
    position: relative;
    width: 100%;
    min-height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) grayscale(0.3);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.banner-tagline {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner-title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* Banner Buttons */
.btn-banner-primary {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-banner-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}

.btn-banner-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-banner-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 1 – ABOUT ALUFAME
   ============================================================ */
.about-section {
    background: #fff;
}

.about-img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}

.btn-alufame {
    background: var(--navy);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--navy);
}

.btn-alufame:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 31, 110, 0.2);
}

/* ============================================================
   SECTION 2 – OUR SERVICES (black bg)
   ============================================================ */
.services-section {
    background: #0d0d0d;
    color: #fff;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 32px 24px;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon i {
    font-size: 26px;
    color: var(--gold);
}

.service-title {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.btn-services-more {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 34px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-services-more:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

/* ============================================================
   SECTION 3 – WHY CHOOSE US (white bg)
   ============================================================ */
.why-section {
    background: #fff;
}

.why-intro {
    color: #666;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

.why-card {
    background: #f8f9ff;
    border: 1px solid #eaecf7;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 31, 110, 0.1);
    border-color: var(--navy);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 31, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-icon i {
    font-size: 28px;
    color: var(--navy);
}

.why-card h5 {
    font-size: 23px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SECTION 3b – TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, #111 0%, #1a1f6e 100%);
    color: #fff;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 32px 26px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(212, 160, 23, 0.2);
    border-color: var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.4);
}

.testimonial-author strong {
    color: #fff;
    font-size: 15px;
}

.testimonial-author small {
    color: var(--gold);
    font-size: 13px;
}

/* ============================================================
   SECTION 4 – CTA
   ============================================================ */
.cta-section {
    background: var(--gray);
}

.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, #2e3491 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(26, 31, 110, 0.25);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.alufame-footer {
    background: var(--navy);
    color: #bbb;
    font-size: 14.5px;
    position: relative;
}

/* Wave SVG sits on top */
.footer-wave {
    line-height: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-body {
    padding: 55px 0 30px;
}

.footer-heading {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Contact list */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-icon {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s;
}

.footer-list a:hover {
    color: var(--gold);
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    transition: color 0.25s, padding-left 0.25s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links i {
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
}

/* Social */
.footer-social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #000;
}

.social-btn.youtube {
    background: #ff0000;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin: 0;
}

.footer-brand-link {
    color: var(--gold);
    font-weight: 600;
    transition: color 0.25s;
}

.footer-brand-link:hover {
    color: #fff;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
/* ============================================================
   NEW ABOUT PAGE STYLES
   ============================================================ */
.about-image-overlap {
    position: relative;
    padding-bottom: 50px;
}
.about-img-main {
    border-radius: 12px;
    width: 85%;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 8px solid #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 2;
}

.offer-section-bg {
    background: url('../img/bg-about.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: #fff !important;
}
.offer-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 110, 0.85);
    z-index: 1;
}
.offer-section-bg .container {
    position: relative;
    z-index: 2;
}
.offer-section-bg .section-heading {
    color: #fff !important;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}
.team-member-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.team-member-img img {
    width: 100%;
    transition: transform 0.5s ease;
}
.team-card:hover .team-member-img img {
    transform: scale(1.1);
}
.team-info {
    padding-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.team-card:hover .team-info {
    opacity: 1;
    transform: translateY(0);
}
.team-info h5 {
    margin: 0;
    color: var(--navy);
}
.team-info p {
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 40px 22px;
    }

    .footer-body {
        padding: 40px 0 20px;
    }

    .section-heading {
        font-size: 1.6rem;
    }
    
    .about-img-main {
        width: 100%;
    }
    .about-img-sub {
        width: 70%;
        position: relative;
        margin-top: -80px;
        margin-left: auto;
    }
}