/* ======================= */
/* BASE STYLES */
/* ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ======================= */
/* TYPOGRAPHY */
/* ======================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ======================= */
/* SECTION COMMON STYLES */
/* ======================= */
.section-subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle .slash {
    color: var(--primary-color);
    font-weight: var(--font-regular);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ======================= */
/* NAVBAR STYLES */
/* ======================= */
.navbar {
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
}

/* Logo Images */
.navbar-logo {
    height: 40px;
    width: auto;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary) !important;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* ======================= */
/* HERO SECTION */
/* ======================= */
.hero-section {
    padding-top: 70px;
    background-color: #F8F9FB;
    position: relative;
    overflow: hidden;
}

/* Tile/Grid Background Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(200, 210, 230, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 210, 230, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: var(--spacing-md) 0;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle .slash {
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--font-medium);
    color: var(--secondary-color);
}

.hero-title-bold {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
}

.hero-title-accent {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

.hero-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 450px;
}

/* Hero Search Box */
.hero-search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-md);
    max-width: 480px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.search-input-wrapper i {
    color: var(--text-muted);
    margin-right: 10px;
}

.hero-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    width: 100%;
    padding: 10px 0;
}

.hero-search-input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-semibold);
    white-space: nowrap;
}

/* Hero Images Wrapper */
.hero-images-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    padding: var(--spacing-xl);
}

.hero-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-1 {
    width: 240px;
    height: 280px;
    left: 0;
    bottom: 10%;
    z-index: 2;
    border-radius: 20px;
}

.hero-image-2 {
    width: 220px;
    height: 260px;
    right: 0;
    top: 0;
    z-index: 1;
    border-radius: 20px;
}

.hero-promo-badge {
    position: absolute;
    bottom: 18%;
    right: 15%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 16px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-promo-badge p {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-promo-badge p:last-child {
    margin-bottom: 0;
}

.hero-promo-badge i {
    color: var(--white);
}

/* Legacy Hero Image Styles (kept for compatibility) */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-3xl);
}

.hero-image {
    width: 380px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 0 0 200px 200px;
    position: relative;
    z-index: 2;
}

/* Hero Circles */
.hero-circle {
    position: absolute;
    border-radius: var(--radius-full);
    z-index: 1;
}

.hero-circle-lg {
    width: 450px;
    height: 450px;
    background-color: #DBEAFE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-circle-md {
    width: 100px;
    height: 100px;
    background-color: #E5E7EB;
    bottom: 10%;
    right: 5%;
}

.hero-circle-sm {
    width: 60px;
    height: 60px;
    background-color: #E5E7EB;
    top: 20%;
    right: 0;
}

.hero-circle-xs {
    width: 80px;
    height: 80px;
    background-color: #E5E7EB;
    bottom: 25%;
    left: 0;
}

/* ======================= */
/* ABOUT SECTION */
/* ======================= */
.about-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-image-wrapper {
    position: relative;
    padding: var(--spacing-xl);
}

.about-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

/* About Decorations */
.about-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: var(--radius-full);
}

.deco-circle-1 {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    top: -20px;
    right: 20%;
    opacity: 0.7;
}

.deco-circle-2 {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    bottom: 20%;
    right: 10%;
    opacity: 0.5;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
}

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

.contact-info h5 {
    font-size: var(--font-size-base);
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-info p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

.phone-link {
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

.phone-link:hover {
    color: var(--primary-dark);
}

/* ======================= */
/* PROCESS SECTION */
/* ======================= */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.process-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-light);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    opacity: 0.15;
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.process-icon i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
}

.process-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.process-divider {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto var(--spacing-md);
}

.process-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ======================= */
/* WHAT WE DO SECTION */
/* ======================= */
.whatwedo-section {
    padding: 80px 0 100px 0;
    background-color: var(--secondary-color);
}

.whatwedo-section .section-subtitle {
    color: var(--white);
}

.whatwedo-section .section-subtitle .slash {
    color: var(--primary-color);
}

.whatwedo-section .section-title {
    color: var(--white);
}

.whatwedo-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.whatwedo-title {
    font-size: 2rem !important;
}

.whatwedo-image-wrapper {
    position: relative;
}

.whatwedo-image {
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.whatwedo-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-lg);
}

.whatwedo-content {
    padding-left: var(--spacing-xl);
}

.vision-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.vision-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
}

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

.vision-content h5 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-xs);
}

.vision-content p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ======================= */
/* SERVICES SECTION */
/* ======================= */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: var(--transition-base);
}

.service-card:hover {
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.service-icon i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
}

.service-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.service-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ======================= */
/* TEAM SECTION */
/* ======================= */
.team-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.team-card {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    margin-bottom: 0;
}

/* ======================= */
/* TESTIMONIALS SECTION */
/* ======================= */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--spacing-xl);
}

.quote-icon {
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    opacity: 0.3;
    transform: scaleX(-1);
}

.quote-right {
    transform: scaleX(1);
}

.testimonial-content {
    text-align: center;
    padding: 0 var(--spacing-xl);
    max-width: 600px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.testimonial-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

.testimonial-indicators {
    position: relative;
    bottom: -20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-indicators button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background-color: #CBD5E1 !important;
    border: none !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-indicators button:hover {
    background-color: #94A3B8 !important;
}

.testimonial-indicators button.active {
    background-color: #3B82F6 !important;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
}

/* ======================= */
/* BLOG SECTION */
/* ======================= */
.blog-section {
    padding: 80px 0 100px 0;
    background-color: var(--white);
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    margin-bottom: var(--spacing-lg);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    padding: 15px 15px 0 15px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
    border-radius: 15px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.blog-title:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-right: var(--spacing-sm);
    border: 2px solid var(--primary-light);
}

.blog-author span {
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
    font-weight: 500;
}

.blog-date {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    padding: var(--spacing-2xl) var(--spacing-xl);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 43, 77, 0.9) 0%, rgba(45, 62, 102, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

/* ======================= */
/* CONTACT SECTION */
/* ======================= */
.contact-section {
    padding: 80px 0 100px 0;
    background-color: var(--secondary-color);
}

.section-subtitle-light {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle-light .slash {
    color: var(--primary-color);
}

.section-title-light {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    height: 100%;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 14px 0;
    font-size: 0.95rem;
    background-color: transparent;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: transparent;
}

.contact-form .form-control::placeholder {
    color: #888;
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: var(--font-semibold);
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Contact Info Single Card */
.contact-info-card-single {
    background-color: var(--white);
    padding: 30px 28px;
    border-radius: 12px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

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

.contact-info-content h5 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    margin-bottom: 4px;
    color: var(--primary-color);
}

.contact-info-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    line-height: 1.5;
}

/* Contact Social */
.contact-social {
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid #eee;
    text-align: center;
}

.contact-social h5 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-social h5 {
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ======================= */
/* FOOTER SECTION */
/* ======================= */
.footer-section {
    background-color: var(--secondary-color);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-brand .logo-icon {
    background-color: var(--primary-color);
}

.footer-description {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-start;
}

.social-icon-sm {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

.social-icon-sm:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    transition: var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Career Items */
.career-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.career-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.career-icon.react {
    background-color: #61DAFB;
    color: var(--secondary-color);
}

.career-icon.wordpress {
    background-color: #21759B;
    color: var(--white);
}

.career-icon.wix {
    background-color: var(--primary-color);
    color: var(--white);
}

.career-info h6 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: 2px;
}

.career-info span {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

/* Subscribe Form */
.footer-subscribe p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.subscribe-form input {
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background-color: transparent;
    color: var(--white);
    font-size: var(--font-size-sm);
}

.subscribe-form input::placeholder {
    color: var(--text-light);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscribe-form .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    text-align: left;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0;
}

/* ======================= */
/* ABOUT PAGE STYLES */
/* ======================= */

/* Page Header Banner */
.page-header {
    background-color: var(--secondary-color);
    padding: 80px 0 80px 0;
    margin-top: 76px;
}

.page-header-content {
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

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

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Page Section */
.about-page-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-page-image {
    position: relative;
}

.about-page-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.about-page-content {
    padding-left: 30px;
}

.about-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

/* Professional Advice Card */
.advice-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.advice-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.advice-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.advice-content h5 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.advice-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.phone-link {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
}

.phone-link:hover {
    color: var(--primary-dark);
}

/* Team Page Section */
.team-page-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.team-member-card {
    text-align: center;
}

.team-member-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info h5 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 4px;
}

.team-member-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Team Gallery Layout (About Page) */
.team-gallery {
    width: 100%;
    overflow: hidden;
}

.team-row {
    overflow: hidden;
    margin-bottom: 15px;
}

.team-row-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.team-row-right .team-row-track {
    animation: scrollRight 25s linear infinite;
}

.team-row-left .team-row-track {
    animation: scrollLeft 25s linear infinite;
}

/* Pause animation on hover */
.team-row:hover .team-row-track {
    animation-play-state: paused;
}

/* Keyframes for infinite scrolling */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.team-gallery-item {
    flex: 0 0 auto;
    width: 180px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-gallery-item-wide {
    width: 280px;
}

.team-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.team-gallery-item:hover img {
    transform: scale(1.08);
}

/* Responsive Team Gallery */
@media (max-width: 1200px) {
    .team-gallery-item {
        width: 150px;
        height: 180px;
    }
    
    .team-gallery-item-wide {
        width: 230px;
    }
}

@media (max-width: 992px) {
    .team-gallery-item {
        width: 140px;
        height: 170px;
    }
    
    .team-gallery-item-wide {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .team-row {
        gap: 10px;
    }
    
    .team-gallery-item {
        width: 120px;
        height: 150px;
    }
    
    .team-gallery-item-wide {
        width: 170px;
    }
}

@media (max-width: 576px) {
    .team-gallery-item {
        width: 100px;
        height: 130px;
    }
    
    .team-gallery-item-wide {
        width: 140px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Footer About */
.footer-about {
    padding-right: var(--spacing-lg);
}

.footer-about .footer-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-about .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ======================= */
/* SERVICES PAGE STYLES */
/* ======================= */

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background-color: var(--white);
}

.what-we-do-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.what-we-do-content {
    padding-left: 30px;
}

.what-we-do-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Vision & Goal Cards */
.vision-goal-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.vision-goal-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

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

.vision-goal-content h5 {
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 4px;
}

.vision-goal-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Our Expertise Section */
.expertise-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.expertise-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-base);
    border-left: 3px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.expertise-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.expertise-card h5 {
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.expertise-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.expertise-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ======================= */
/* PORTFOLIO PAGE STYLES */
/* ======================= */

/* Portfolio Page Section */
.portfolio-page-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Portfolio Grid */
.portfolio-grid {
    margin-top: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.portfolio-item-large {
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 43, 77, 0.9) 0%, rgba(30, 43, 77, 0) 60%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h5 {
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: 5px;
}

.portfolio-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* ======================= */
/* BLOG PAGE STYLES */
/* ======================= */

/* Blog Page Section */
.blog-page-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Featured Blog Card */
.blog-card-featured {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.blog-card-featured .blog-card-image {
    overflow: hidden;
    padding: 15px;
    padding-bottom: 0;
}

.blog-card-featured .blog-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition-base);
    border-radius: 8px;
}

.blog-card-featured:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-featured .blog-card-content {
    padding: 25px;
}

.blog-card-featured .blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.blog-card-featured .blog-title {
    font-size: 1.15rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Side Blog Cards */
.blog-card-side {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.blog-card-side-image {
    width: 140px;
    min-width: 140px;
    height: 140px;
    overflow: hidden;
    padding: 15px;
}

.blog-card-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-base);
}

.blog-card-side:hover .blog-card-side-image img {
    transform: scale(1.05);
}

.blog-card-side-content {
    padding: 15px 20px 15px 5px;
    flex: 1;
}

.blog-card-side .blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
}

.blog-card-side .blog-title {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.blog-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: var(--font-medium);
}

.blog-read-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Blog Grid Cards */
.blog-card-grid {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.blog-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-grid-image {
    height: 180px;
    overflow: hidden;
    padding: 15px 15px 0 15px;
}

.blog-card-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-base);
}

.blog-card-grid:hover .blog-card-grid-image img {
    transform: scale(1.05);
}

.blog-card-grid-content {
    padding: 20px;
}

.blog-card-grid .blog-title {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-date-small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ======================= */
/* CONTACT PAGE STYLES */
/* ======================= */

/* Contact Page Section */
.contact-page-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-page-section .contact-form-wrapper {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    height: 100%;
}

.contact-page-section .contact-info-card-single {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    height: 100%;
}

/* ======================= */
/* CLIENT LOGOS SECTION */
/* ======================= */
.client-logos-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.client-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
}

/* Auto Scrolling Marquee */
.client-logos-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 20s linear infinite;
}

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

.marquee-track .client-logo-item {
    flex-shrink: 0;
}

.marquee-track .client-logo {
    height: 45px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive marquee */
@media (max-width: 767px) {
    .marquee-track {
        gap: 40px;
    }
    
    .marquee-track .client-logo {
        height: 30px;
    }
}

.letter-spacing-1 {
    letter-spacing: 2px;
}
