﻿/* Importing Corporate Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Montserrat:wght@400;600;700&display=swap');

/* Default Corporate Typography */
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #333; /* Dark gray for readability */
    line-height: 1.6;
}

/* Headings with Professional Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0d1b2a; /* Dark blue for a professional look */
    margin-bottom: 10px;
}

/* Custom Corporate Heading */
.anton-regular {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d1b2a;
    border-bottom: 2px solid #fca311; /* Thin accent line */
    padding-bottom: 5px;
}

/* Subheadings */
.corporate-subheading {
    font-size: 10px;
    font-weight: 600;
    color: #1b263b;
}

/* Paragraph Styling */
p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

@media (min-width: 768px) {
    p {
        text-align: justify;
        hyphens: auto;
    }
}

/* Corporate Button Styling */
.btn-corporate {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #fca311;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: none;
}

    .btn-corporate:hover {
        background-color: #ff9f1c;
        color: #fff;
    }

/* Corporate Text Colors */
.text-primary {
    color: #0d1b2a !important;
}

.text-secondary {
    color: #1b263b !important;
}

.text-highlight {
    color: #fca311 !important;
}
