/* Global Styles */
:root {
    --primary-color: #2c5f8b;
    --secondary-color: #4cae7d;
    --dark-color: #1a3a5a;
    --light-color: #f8f9fa;
    --accent-color: #f8b739;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn.secondary {
    background-color: var(--secondary-color);
}

.btn.secondary:hover {
    background-color: #3d8e68;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 2px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 90px;
    width: 120px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li.active a:after {
    width: 100%;
}

nav ul li.active a {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
}

.who-we-are h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.who-we-are .content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.who-we-are .text {
    flex: 1;
}

.who-we-are .text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.who-we-are .image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are .image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.who-we-are .image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-color);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.why-choose-us .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-choose-us .feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us .feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-choose-us .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-choose-us .feature p {
    color: var(--text-light);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.our-values .values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.our-values .value {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.our-values .value:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.our-values .value .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 95, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.our-values .value:hover .icon {
    background-color: var(--primary-color);
}

.our-values .value .icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.our-values .value:hover .icon i {
    color: var(--white);
}

.our-values .value h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.our-values .value p {
    color: var(--text-light);
}

/* Core Services Section */
.core-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.core-services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.core-services .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.core-services .service {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.core-services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-services .service i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.core-services .service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.core-services .service p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.core-services .service .read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.core-services .service .read-more:hover {
    color: var(--secondary-color);
}

.core-services .service .read-more:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(rgba(44, 95, 139, 0.9), rgba(44, 95, 139, 0.9)), url('../images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider .slides {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slider .slide.active {
    opacity: 1;
}

.testimonial-slider .slide .content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slider .slide p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-slider .slide .author {
    display: flex;
    align-items: center;
}

.testimonial-slider .slide .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary-color);
}

.testimonial-slider .slide .author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-slider .slide .author p {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-slider .dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-slider .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-slider .dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Clients Section */
.clients {
    padding: 80px 0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.client-slider {
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(250px * 12);
}

.client-slider:hover .client-track {
    animation-play-state: paused;
}

.client {
    width: 200px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section.about img.footer-logo {
    height: 110px;
    margin-bottom: 5px;
}

.footer-section.about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section.about .contact span {
    display: block;
    margin-bottom: 10px;
}

.footer-section.about .contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section.links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-section.services ul li {
    margin-bottom: 10px;
}

.footer-section.services ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section.services ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-section.social .social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-section.social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-section.social .social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-section.social .newsletter-form {
    display: flex;
}

.footer-section.social .newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-section.social .newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-section.social .newsletter-form button:hover {
    background-color: #3d8e68;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* About Page Styles */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(44, 95, 139, 0.8), rgba(44, 95, 139, 0.8)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.our-story {
    padding: 80px 0;
}

.our-story .content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.our-story .text {
    flex: 1;
}

.our-story .text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.our-story .image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-story .image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.our-story .image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--light-color);
}

.mission-vision .container {
    display: flex;
    gap: 30px;
}

.mission-vision .mission,
.mission-vision .vision {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-vision .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 95, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-vision .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.mission-vision h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mission-vision p {
    color: var(--text-light);
}

.team {
    padding: 80px 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team .member {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.team .member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team .member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--light-color);
}

.team .member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team .member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team .member .bio {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.team .member .social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team .member .social a {
    width: 35px;
    height: 35px;
    background-color: rgba(44, 95, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team .member .social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.achievements {
    padding: 80px 0;
    background-color: var(--light-color);
}

.achievements .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.achievements .stat {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.achievements .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievements p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

.service-details {
    padding: 80px 0;
}

.service-details.alt {
    background-color: var(--light-color);
}

.service-details .service {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-details .image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-details .image:hover img {
    transform: scale(1.05);
}

.service-details .content {
    flex: 1;
}

.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-details h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.service-details ul {
    margin-bottom: 25px;
}

.service-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-details ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-stack span {
    background-color: rgba(44, 95, 139, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process .step {
    text-align: center;
    position: relative;
}

.process .step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.process .number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process p {
    color: var(--text-light);
}

/* Blog Page Styles */
.blog-categories {
    padding: 30px 0;
    background-color: var(--light-color);
}

.blog-categories .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blog-categories .category {
    padding: 8px 20px;
    background-color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-categories .category:hover,
.blog-categories .category.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.featured-post {
    padding: 80px 0;
}

.featured-post .post {
    display: flex;
    gap: 50px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-post .image {
    flex: 1;
    position: relative;
}

.featured-post .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-post .category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-post .content {
    flex: 1;
    padding: 40px;
}

.featured-post .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-post h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.featured-post .excerpt {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.featured-post .read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.featured-post .read-more:hover {
    color: var(--secondary-color);
}

.featured-post .read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.blog-posts {
    padding: 80px 0;
    background-color: var(--light-color);
}

.blog-posts .posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-posts .post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-posts .post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-posts .image {
    height: 200px;
    position: relative;
}

.blog-posts .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-posts .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.blog-posts .content {
    padding: 25px;
}

.blog-posts .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-posts h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-posts .excerpt {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.blog-posts .read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.blog-posts .read-more:hover {
    color: var(--secondary-color);
}

.blog-posts .read-more i {
    margin-left: 5px;
    font-size: 0.7rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination .page,
.pagination .next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 4px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page:hover,
.pagination .page.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination .next {
    width: auto;
    padding: 0 15px;
}

.pagination .next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter {
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.newsletter .subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter .subscribe-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter .subscribe-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter .subscribe-form button:hover {
    background-color: var(--dark-color);
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.contact-info .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info .card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 95, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-form-container {
    display: flex;
    gap: 50px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-intro {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-intro p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-intro .social-links {
    display: flex;
    gap: 15px;
}

.form-intro .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-intro .social-links a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 139, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .who-we-are .content,
    .our-story .content,
    .service-details .service,
    .contact-form-container {
        flex-direction: column;
    }
    
    .who-we-are .image,
    .our-story .image,
    .service-details .image {
        order: -1;
    }
    
    .mission-vision .container {
        flex-direction: column;
    }
    
    .featured-post .post {
        flex-direction: column;
    }
    
    .form-intro {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2,
    .cta h2,
    .page-header h1,
    .cta-section h2,
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .client-track {
        animation: scroll 15s linear infinite;
    }
    
    .client {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .cta .buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title h2,
    .cta h2,
    .page-header h1,
    .cta-section h2,
    .newsletter h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-slider .slide .author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-slider .slide .author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .newsletter .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter .subscribe-form input,
    .newsletter .subscribe-form button {
        width: 100%;
        border-radius: 4px;
    }
}