/*
    P2T Brand Styles
    Colors: Primary Blue (#38BDF8), Primary Text (#0B0F19), Slate (#334155)
    Fonts: Poppins (Headings), Inter (Body)
*/

:root {
    --p2t-blue: #38BDF8;
    --p2t-dark: #0B0F19;
    --p2t-slate: #334155;
    --p2t-light: #F8FAFC;
    --white: #FFFFFF;
    --transition: all 0.3s ease-in-out;
}

body {
    /* font-family: 'Inter', sans-serif; */
    color: var(--p2t-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #212529 !important;
    font-weight: 700;
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: #eeeeef !important;
    font-weight: 700;
}

/* Navbar */
.navbar {
    transition: var(--transition);
    padding: 1rem 0;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.navbar .nav-link,
.navbar .dropdown-item {
    color: #111 !important;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover,
.navbar .nav-link.active {
    color: #007bff !important; /* Or your preferred highlight color */
}



.navbar-brand span {
    color: var(--p2t-blue);
    font-weight: 300;
    font-size: 0.9rem;
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 10px;
}

.nav-link {
    color: rgba(10, 10, 10, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--p2t-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 60px;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 15, 25, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Cards & Components */
.p2t-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.p2t-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--p2t-blue);
}

.p2t-card i {
    font-size: 2.5rem;
    color: var(--p2t-blue);
    margin-bottom: 1.5rem;
}

.btn-p2t-primary {
    background: var(--p2t-blue);
    color: var(--p2t-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: var(--transition);
}

.btn-p2t-primary:hover {
    background: var(--white);
    color: var(--p2t-dark);
}

.btn-p2t-outline {
    background: transparent;
    border: 2px solid var(--p2t-blue);
    color: var(--p2t-blue);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 6px;
}

.btn-p2t-outline:hover {
    background: var(--p2t-blue);
    color: var(--p2t-dark);
}

/* Section Headings */
.section-title {
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--p2t-blue);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background: var(--p2t-dark);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 30px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--p2t-blue);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Industry Tiles */
.industry-tile {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.industry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.industry-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.9), transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-tile:hover img {
    transform: scale(1.1);
}

.industry-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.industry-tile:hover .industry-details {
    max-height: 200px;
}

/* Form Styles */
.form-control {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.25);
    border-color: var(--p2t-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .navbar-brand span {
        display: none;
    }
}
