/* css/style.css */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

/* --- Global Variables & Styles --- */
:root {
    --primary-color: #0d6efd; /* Bootstrap Blue */
    --secondary-color: #6c757d; /* Bootstrap Gray */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0a58ca;
}

.section-padding {
    padding: 80px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* --- Smooth Scrolling --- */
html {
    scroll-behavior: smooth;
}

/* --- Navbar --- */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Logo Styling --- */
.navbar-logo {
    height: 40px; /* Adjust height as needed */
}

.footer-logo {
    max-height: 45px; /* Adjust height as needed */
    filter: brightness(0) invert(1); /* Makes the logo white for dark footer */
    opacity: 0.8;
}


.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}


/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.8)), url('https://via.placeholder.com/1920x1080.png/333/fff?text=Adynix+Media+Background') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero .tagline {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* --- Service Highlights & Cards --- */
.service-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* --- Testimonials Section --- */
.testimonial-slider .carousel-item {
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
    background-color: var(--dark-color);
    border-radius: 50%;
}

.testimonial-slider blockquote {
    font-style: italic;
    color: #555;
}

/* --- Page Header --- */
.page-header {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* --- About Us Page --- */
.director-profile img {
    max-width: 150px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

/* --- Contact Page --- */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
}

.map-placeholder {
    height: 450px;
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

/* --- Legal Pages (Terms, Privacy) --- */
.legal-content h3 {
    margin-top: 2rem;
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-color);
    color: #adb5bd;
}

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

footer a {
    color: #adb5bd;
}

footer a:hover {
    color: white;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #adb5bd;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 1rem;
    margin-top: 1rem;
}