/* --- Global Styles --- */
:root {
    --primary-color: #0d1a26;
    --secondary-color: #1a2e3f;
    --accent-color: #00bcd4;
    --text-color: #e0e6ed;
    --light-text-color: #f0f4f8;
    --font-family-body: 'Poppins', sans-serif;
    --font-family-heading: 'Montserrat', sans-serif;
}

/* Import Google Fonts (replace with your desired fonts) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.7;
    color: var(--text-color);
    background: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header & Navigation --- */
.header {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
  display: flex;
  align-items: center; /* vertically align logo and text */
  justify-content: center; /* center them horizontally */
  gap: 10px; /* space between logo and text */
}

.logo {
  width: 60px; /* adjust logo size */
  height: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar a {
    color: var(--light-text-color);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* --- Hero Section --- */
.hero-section {
    background: url('../images/hero-image.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text-color);
    position: relative;
    padding: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 26, 38, 0.7);
}

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

.hero-content h1 {
    font-size: 3rem;
    font-family: var(--font-family-heading);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-in-out;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.cta-button:hover {
    background: #0097a7;
    transform: translateY(-3px);
}

/* --- Content Sections --- */
.services-overview, .testimonials, .contact-section, .faq-section, .content-section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-family-heading);
    color: var(--accent-color);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

blockquote {
    background: var(--secondary-color);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    border-radius: 8px;
}

cite {
    display: block;
    margin-top: 1.5rem;
    text-align: right;
    font-style: normal;
    color: var(--accent-color);
}
    
     /* --- Tables & Lists --- */;
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}


th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #3b4c5e;
}

th {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-transform: uppercase;
}

tr:nth-child(even) {
    background-color: #263c50;
}

.blog-list {
    list-style: none;
    display: grid;
    gap: 2rem;
}

.blog-list li {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Forms --- */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form label {
    font-weight: 600;
    margin-top: 1.5rem;
    color: var(--light-text-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #3b4c5e;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 8px;
    margin-top: 0.5rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent-color);
}

.contact-form button {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 2rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background: #0097a7;
    transform: translateY(-3px);
}

/* --- Multimedia & Other elements --- */
.team-photo {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 3rem auto;
    border-radius: 12px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* This is a 16:9 aspect ratio (9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.faq-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
.footer {
    background: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #3b4c5e;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links img {
    height: 28px;
    margin-left: 1.5rem;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.back-to-top {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #0097a7;
}

/* --- Responsive Design (Media Queries) --- */
@media (max-width: 768px) {
    .header .container, .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .navbar ul {
        flex-direction: column;
        text-align: center;
    }

    .navbar li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-list, .testimonial-list {
        grid-template-columns: 1fr;
    }

    

 */
    
    .social-links img {
        margin: 0 0.5rem;
    }
}

/* --- Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- Text-based Logo Style --- */
.logo-text {
    font-family: 'Montserrat', sans-serif; /* A strong, modern font */
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--accent-color); /* Uses the accent color from your color palette */
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--light-text-color); /* Changes color on hover */
}

  