/* style.css - UPDATED WITH INNER PAGE STYLES */
/*
Theme Name: Intuitexaisol
Theme URI: https://intuitexaisol.com
Author: Javed Iqbal
Author URI: https://intuitexaisol.com
Description: Custom theme for Intuitexaisol software solutions company
Version: 1.0
All Rights Reserved
Unauthorized use, reproduction, or distribution is strictly prohibited.
Text Domain: intuitexaisol
*/

:root {
    --primary-color: #0F9D58;
    --secondary-color: #4285F4;
    --light-color-1: #E6F4EA;
    --light-color-2: #E8F0FE;
    --dark-color-1: #0B8043;
    --dark-color-2: #3367D6;
    --light-gray: #F8F9FA;
    --dark-gray: #5F6368;
    --text-color: #202124;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Google Colors Option */
body.color-google {
    --primary-color: #4285F4;
    --secondary-color: #34A853;
    --light-color-1: #E8F0FE;
    --light-color-2: #E6F4EA;
    --dark-color-1: #3367D6;
    --dark-color-2: #0B8043;
}

/* Green Colors Option (Default) */
body.color-green {
    --primary-color: #0F9D58;
    --secondary-color: #4285F4;
    --light-color-1: #E6F4EA;
    --light-color-2: #E8F0FE;
    --dark-color-1: #0B8043;
    --dark-color-2: #3367D6;
}

/* Gradient Colors Option */
body.color-gradient {
    --primary-color: #4285F4;
    --secondary-color: #34A853;
    --light-color-1: #E8F0FE;
    --light-color-2: #E6F4EA;
    --dark-color-1: #3367D6;
    --dark-color-2: #0B8043;
}

/* Gradient Styles */
body.gradient-blue-green .top-bar,
body.gradient-blue-green .hero {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%) !important;
}

body.gradient-green-blue .top-bar,
body.gradient-green-blue .hero {
    background: linear-gradient(135deg, #34A853 0%, #4285F4 100%) !important;
}

body.gradient-purple-blue .top-bar,
body.gradient-purple-blue .hero {
    background: linear-gradient(135deg, #6A0DAD 0%, #4285F4 100%) !important;
}

body.gradient-orange-red .top-bar,
body.gradient-orange-red .hero {
    background: linear-gradient(135deg, #FF9500 0%, #FF3B30 100%) !important;
}

/* Gradient specific styles */
body.color-gradient .top-bar {
    background: var(--primary-color);
}

body.color-gradient header {
    background: linear-gradient(to right, #ffffff, #f1f8ff);
}

body.color-gradient .hero {
    color: white;
    position: relative;
    overflow: hidden;
}

body.color-gradient .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(30deg);
}

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

body.color-gradient .hero h1 {
    color: white;
}

body.color-gradient .hero p {
    color: rgba(255, 255, 255, 0.9);
}

body.color-gradient .btn.primary {
    background-color: white;
    color: var(--primary-color);
}

body.color-gradient .btn.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

body.color-gradient .btn.primary:hover {
    background-color: var(--light-color-1);
}

body.color-gradient .btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

body.color-gradient .service-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

body.color-gradient .client-avatar {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 15px;
    background-color: #fff;
}

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

/* Top info bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    margin-bottom: 0;
}

.top-bar-content {
    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;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Header with logo and menu */
header {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.logo span {
    color: var(--secondary-color);
}

.tagline {
    font-size: 13px;
    color: var(--dark-gray);
    padding-left: 10px;
    border-left: 1px solid #ddd;
    white-space: nowrap;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

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

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero section - HOME PAGE ONLY */
.home .hero {
    padding: 35px 0;
    background: linear-gradient(135deg, var(--light-color-1) 0%, var(--light-color-2) 100%);
    text-align: center;
    color: var(--text-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

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

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

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

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

/* Sections common styling - HOME PAGE ONLY */
.home section {
    padding: 70px 0;
}

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

.section-title h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.section-title p {
    max-width: 100%;
    margin: 0 auto;
    color: var(--dark-gray);
    font-size: 15px;
}

/* Why Us section - HOME PAGE ONLY */
.home .why-us {
    background-color: var(--light-gray);
}

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

.feature {
    text-align: center;
    padding: 25px;
    border-radius: var(--border-radius);
    transition: transform 0.3s;
    background: white;
    box-shadow: var(--box-shadow);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Services section - HOME PAGE ONLY */
.home .services {
    background-color: white;
    padding:0;
}

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

.home .service {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.service:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--light-color-1);
    color: var(--primary-color);
}

.service h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Portfolio section - HOME PAGE ONLY */
.home .portfolio {
    background-color: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    background: linear-gradient(45deg, #f1f1f1, #e1e1e1);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Testimonials section - HOME PAGE ONLY */
.home .testimonials {
    background-color: white;
    padding:0;
}

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

.home .testimonial {
    background: var(--light-color-2);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

.client {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.client-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 13px;
    color: var(--secondary-color);
    margin: 0;
}

/* Team section - HOME PAGE ONLY */
.home .team {
    background-color: var(--light-gray);
    padding:0;
}

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

.team-member {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--light-color-1), var(--light-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 50px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.team-member-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Blog section - HOME PAGE ONLY */
.home .blog {
    background-color: white;
}

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

.blog-post {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-thumb {
    height: 200px;
    background: linear-gradient(45deg, #f1f1f1, #e1e1e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.blog-post-content {
    padding: 20px;
}

.blog-post h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-post-meta {
    font-size: 13px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-post-excerpt {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-post-read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.blog-post-read-more:hover {
    text-decoration: underline;
}

/* Contact section - HOME PAGE ONLY */
.home .contact {
    background-color: var(--light-gray);
}

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

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    min-width: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: var(--dark-color-1);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 60px 0 30px;
    font-size: 14px;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 极14px;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13极px;
    color: #ccc;
}

/* WhatsApp button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.whatsapp-float {
    transform: translateZ(0);
    will-change: transform;
    -webkit-transform: translateZ(0);
}

/* INNER PAGES STYLES */
/* Page content for inner pages */
.inner-page .page-content {
    padding: 70px 0;
    background-color: #fff;
}

/* Page header styles for inner pages */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.page-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
}

.page-content .entry-content {
    font-size: 16px;
    line-height: 1.7;
}

.page-content .entry-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.page-content .entry-content h3 {
    font-size: 20px;
    margin: 25极 0 15px;
    color: var(--secondary-color);
}

/* Sidebar */
.sidebar {
    margin-top: 50px;
}

.widget {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Single post */
.single-post {
    padding: 70px 0;
    background-color: #fff;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.post-meta {
    font-size: 14px;
    color: var(--dark-gray);
}

.post-content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.post-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Archive pages */
.archive-header {
    text-align: center;
    margin: 20px 0;
}

.archive-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.archive-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
}

.archive-description {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Archive */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-item h2 a {
    color: var(--text-color);
    text-decoration: none;
}

.service-item h2 a:hover {
    color: var(--primary-color);
}

/* Testimonials Archive */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Team Archive */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.team-social-links a {
    color: var(--dark-gray);
    font-size: 18px;
    transition: color 0.3s;
}

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

/* Blog Archive */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-thumb {
    height: 200px;
    overflow: hidden;
}

.blog-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post:hover .blog-post-thumb img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 20px;
}

.blog-post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-post-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-post-content h3 a:hover {
    color: var(--primary-color);
}

.blog-post-meta {
    font-size: 13极px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-post-excerpt {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-post-read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.blog-post-read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.navigation.pagination {
    text-align: center;
    margin-top: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    display: inline-block;
    padding: 8px 15px;
    background: var(--light-gray);
    color: var(--text极-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

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

/* Content with sidebar layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.main-content {
    width: 100%;
}

.sidebar {
    position: sticky;
    top: 100px;
}

/* Single post header */
.single-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-post-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.single-post-meta {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Featured image */
.page-featured-image,
.single-post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.page-featured-image img,
.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team section on about page */
.team-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Contact page styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    min-width: 20px;
    margin-top: 5px;
}

.contact-info-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
   极 color: var(--text-color);
}

.contact-info-content p {
    margin: 0;
    color: var(--dark-gray);
}

/* Team member profile */
.team-member-profile {
    display: grid;
    grid-template-columns: 300极px 1fr;
    gap: 40px;
    align-items: start;
}

.team-member-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.team-member-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light-color-1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 100px;
}

/* Testimonial full page */
.testimonial-full {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 0 0 30px 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-content {
        position: relative;
        flex-wrap: wrap;
        padding: 0 10px !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .logo-container {
        /*flex-direction: column;
        align-items: flex-start; */
        gap: 5px;
    }
    .custom-logo { width:50px;}
    .tagline {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid,
    .testimonial-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-title,
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle,
    .archive-subtitle {
        font-size: 16px;
    }
    
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
    }
    
    .team-member-profile {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: row;
        gap: 5px;
        align-items: center;
        width:100%;
    }
    
    .contact-info span {
        justify-content: center;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .logo {
        font-size: 16px;
        transform: scale(1,1.5);
        transform-origin: center;
    }
    
    .tagline {
        font-size: 10px;
        transform: scale(1,1.5);
        transform-origin: center;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .archive-title,
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle,
    .archive-subtitle {
        font-size: 15px;
    }
    
    .service-item,
    .testimonial,
    .team-member,
    .blog-post {
        padding: 20px;
    }
    
    .page-title,
    .single-post-title {
        font-size: 24px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        left: 10px;
        font-size: 24px;
    }
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
    height: 300px;
    background: linear-gradient(45deg, #E6F4EA, #E8F0FE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5F6368;
    font-size: 18px;
    flex-direction: column;
}

.about-image-placeholder i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0F9D58;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0F9D58;
}

.about-text p {
    margin-bottom: 15px;
    color: #5F6368;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.mission-box, .vision-box {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mission-box i, .vision-box i {
    font-size: 40px;
    color: #0F9D58;
    margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #202124;
}

.mission-box p, .vision-box p {
    color: #5F6368;
    line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-image-placeholder {
        height: 250px;
        font-size: 16px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .mission-box, .vision-box {
        padding: 20px;
    }
    
    .mission-box i, .vision-box i {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

/* Page Title Section Styles */
.page-title-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.page-title {
    font-size: 32px;
    color: #202124;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Breadcrumb Styles */
.rank-math-breadcrumb {
    font-size: 14px;
    color: #5F6368;
}

.rank-math-breadcrumb a {
    color: #0F9D58;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rank-math-breadcrumb a:hover {
    color: #0B8043;
    text-decoration: underline;
}

.rank-math-breadcrumb p {
    margin: 0;
    padding: 0;
}

/* Alternative breadcrumb style if using different plugin */
.breadcrumb {
    font-size: 14px;
    color: #5F6368;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    color: #0F9D58;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0B8043;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #5F6368;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-title-section {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .rank-math-breadcrumb,
    .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .rank-math-breadcrumb,
    .breadcrumb {
        font-size: 12px;
    }
    
    .breadcrumb .separator {
        margin: 0 5px;
    }
}

.contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info-card {
            background: var(--light-gray);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            height: fit-content;
        }
        
        .contact-info-card h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--primary-green);
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            min-width: 40px;
            height: 40px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .contact-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: var(--dark-gray);
            font-size: 14px;
            line-height: 1.5;
        }
        
        .map-container {
            height: 500px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #f1f1f1, #e1e1e1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
            font-weight: 500;
            flex-direction: column;
        }
        
        .map-placeholder i {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--primary-green);
        }
        
        /* Mobile responsiveness */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .map-container {
                height: 400px;
            }
            
        }
        
        @media (max-width: 768px) {
            .contact-info-card {
                padding: 25px;
            }
            
            .contact-detail {
                flex-direction: column;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
            .contact-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .contact-info-card {
        padding: 25px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .contact-info-card h3 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .contact-detail {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .contact-icon {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .contact-text {
        text-align: center !important;
    }
    
    .contact-text h4,
    .contact-text p {
        text-align: center !important;
    }
        }
        
        @media (max-width: 480px) {
            .contact-info-card {
                padding: 20px;
            }
            
            .contact-info-card h3 {
                font-size: 18px;
                margin-bottom: 20px;
            }
            
            .map-container {
                height: 300px;
            }
            
            .map-placeholder i {
                font-size: 32px;
                margin-bottom: 10px;
            }
            .contact-info-card {
        padding: 20px !important;
    }
    
    .contact-detail {
        margin-bottom: 15px !important;
    }
        }

/* Minimal CSS for single post */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-header {
    padding: 10px 0 0;
    //background: linear-gradient(135deg, #E6F4EA 0%, #E8F0FE 100%);
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.2rem;
    font-family: 'Roboto', sans-serif;
    color: #202124;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    padding: 0;
}

.breadcrumb li {
    display: inline;
    margin: 0 5px;
}

.breadcrumb li:not(:last-child):after {
    content: ">";
    margin-left: 10px;
    color: #5F6368;
}

.breadcrumb a {
    color: #0F9D58;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.content-main {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-image {
    margin-bottom: 25px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    line-height: 1.7;
    color: #5F6368;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #0F9D58;
    font-family: 'Roboto', sans-serif;
}

.article-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #4285F4;
    font-family: 'Roboto', sans-serif;
}

.content-sidebar {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #202124;
    border-bottom: 2px solid #0F9D58;
    padding-bottom: 10px;
}

.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-main {
        padding: 20px;
    }
    
    .article-content h2 {
        font-size: 22px;
    }
    
    .article-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0 15px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb li {
        margin: 3px;
    }
}

