/* Corporate Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --navy: #0f172a;
    --blue: #1e40af;
    --gold: #ca8a04;
    --gray-light: #f3f4f6;
    --gray-text: #4b5563;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: white;
}

h1,
h2,
h3,
.logo,
.btn {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    font-size: 1rem;
    color: var(--gold);
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--navy);
    color: white !important;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--blue);
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    /* Navy overlay */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--blue);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--navy);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subheading {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--gold);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

/* About */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--navy);
}

.check-list i {
    color: var(--blue);
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    padding: 4px;
    font-size: 1.2rem;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gold);
    padding: 30px;
    border-radius: 8px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(202, 138, 4, 0.4);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Case Studies (Portfolio) */
.case-studies {
    padding: 100px 0;
    background: white;
}

.studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

.study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.study-content {
    padding: 30px;
}

.study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.study-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.study-content a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.study-content a:hover {
    gap: 8px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--navy);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-box h3 {
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-info-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 8px;
    color: var(--navy);
}

.contact-form-box h3 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .services-grid,
    .about-content,
    .contact-wrapper,
    .form-row {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        position: absolute;
    }
}

/* Client Words (Testimonials) */
.testimonials {
    padding: 100px 0;
    background: var(--navy);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .subheading {
    color: var(--gold);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.client-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-details img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.client-details h4 {
    margin-bottom: 2px;
    color: white;
}

.client-details span {
    font-size: 0.9rem;
    color: var(--gray-light);
    opacity: 0.7;
}

/* Industry News (Blog) */
.news {
    padding: 100px 0;
    background: var(--gray-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-item:hover .news-img img {
    transform: scale(1.1);
}

.date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--blue);
    color: white;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.news-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.read-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.read-link:hover {
    border-bottom-color: var(--blue);
}

@media (max-width: 900px) {

    .testimonials-slider,
    .news-grid {
        grid-template-columns: 1fr;
    }
}