/* Custom Variables */
:root {
    --primary-color: #4f46e5;
    --primary-light: #818cf8;
    --warning-color: #ffd700;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 12px rgba(79, 70, 229, 0.2);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --secondary-color: #3730a3;
    --accent-color: #818cf8;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f8fafc;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
    --gradient-secondary: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --light-bg-color: #f9f9f9;
    --white-color: #ffffff;
    --primary-dark: #343a40;
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.1);
    --heading-color: #2c3e50;
    --border-color-light: #e9ecef;
    --bs-light: #f8f9fa;
    --bs-extra-light: #e9ecef;
    --bs-primary: #4f46e5;
    --bs-primary-dark: #343a40;
    --bs-primary-rgb: 79, 70, 229;
    --bs-background-light: #f8f9fa;
    --bs-heading-color: #2c3e50;
    --bs-text-color-secondary: #6c757d;
    --border-radius-lg: 1rem;
    --border-radius-sm: 0.5rem;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --transition: all 0.3s ease;
    --bs-btn-hover-color: #fff; 
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 69px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Navbar Styles */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand h1 {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    color: var(--text-color) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .btn-primary {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

/* Hero Section */
.hero-section {
    min-height: calc(70vh - 76px); /* Further reduced height */
    background: linear-gradient(120deg, var(--primary-color) 60%, var(--primary-light) 100%);
    overflow: hidden;
    position: relative;
    padding: 50px 0; /* Adjusted padding */
    display: flex;
    align-items: center;
}

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

.hero-title {
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-illustration {
    max-height: 400px;
    animation: float 6s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--warning-color);
    color: #222;
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-section {
        padding: 70px 0 30px; /* Adjusted padding for smaller screens */
        text-align: center;
    }

    .hero-illustration {
        max-height: 300px;
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 20px; /* Further adjusted padding for smaller screens */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-illustration {
        max-height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 50px 0 20px;
    }
}

/* Page Header Section (for all pages except index) */
.page-header {
    background: linear-gradient(120deg, var(--primary-color) 60%, var(--primary-light) 100%);
    padding: 150px 0 80px; /* Increased padding */
    position: relative;
    overflow: hidden;
    margin-top: -76px; /* Offset the body padding */
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 3.5rem; /* Slightly larger title */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.page-breadcrumb {
    display: flex;
    justify-content: center; /* Center align for all page headers by default */
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.page-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.page-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: var(--warning-color);
}

.page-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

/* Remove default breadcrumb styles */
.page-breadcrumb::before,
.page-breadcrumb::after {
    display: none;
}

.page-breadcrumb li::before,
.page-breadcrumb li::after {
    display: none;
}

/* Responsive Page Header */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }

    .page-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-breadcrumb li {
        font-size: 1rem;
    }
}

.about-header .page-title {
    margin-left: auto; /* Push title to the right for about page header */
    margin-right: 0;
}

/* Responsive About Page Header adjustments */
@media (max-width: 991px) {
    .about-header .page-header-content {
        text-align: center; /* Center align content on smaller screens */
    }

    .about-header .page-title {
        margin-left: auto;
        margin-right: auto;
    }

    .about-header .page-breadcrumb {
        justify-content: center;
    }
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    
}

.card-body .btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body .btn i{
    line-height: 16px;  
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

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

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

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Team Section */
.team-section .card {
    border-radius: 1rem;
    overflow: hidden;
}

.team-section .card-img-top {
    height: 300px;
    object-fit: cover;
}

.team-section .social-links a {
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stats-section {
    background: var(--light-background);
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-description {
    color: #a0a0a0;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.social-link {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4f46e5;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-links a:hover {
    color: #4f46e5;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #a0a0a0;
}

.footer-contact li i {
    margin-right: 10px;
    font-size: 16px;
    color: #4f46e5;
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ffffff61;
}

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

.footer-copyright {
    color: #a0a0a0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4f46e5;
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-brand {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        padding-bottom: 20px;
    }
    
    .footer-brand h2 {
        font-size: 24px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-section .hero-illustration {
        max-height: 250px;
        margin-top: 2rem;
    }
    
    .client-logo-wrapper {
        height: 80px;
    }
    
    .client-logo {
        max-height: 40px;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: var(--shadow-md);
    }

    .nav-link::after {
        display: none;
    }

    .footer .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .page-header {
        padding: 6rem 0 2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-6 {
        font-size: 2rem;
    }
}

.client-logo.grayscale-hover:hover {
    filter: grayscale(0%) drop-shadow(0 2px 8px rgba(79,70,229,0.10));
    transform: scale(1.07);
}

.blog-header {
    background: linear-gradient(120deg, var(--primary-color) 60%, var(--primary-light) 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.blog-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--primary-color);
    color: white;
}

.author-info {
    transition: all 0.3s ease;
}

.blog-card:hover .author-info {
    transform: translateY(-5px);
}

.sidebar-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    margin-bottom: 25px;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

.category-list {
    padding-left: 0;
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.category-list li a i {
    font-size: 0.8rem;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-list li a:hover i {
    transform: translateX(5px);
}

.recent-posts-list {
    padding-left: 0;
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: 20px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list img {
    border-radius: var(--border-radius-sm);
}

.recent-posts-list h6 a {
    color: var(--heading-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.recent-posts-list h6 a:hover {
    color: var(--primary-color);
}

.recent-posts-list small {
    font-size: 0.9rem;
}

.search-input {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--border-color);
    padding-left: 20px;
    box-shadow: none;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}

.search-button {
    border-radius: 0 25px 25px 0;
    padding: 0 20px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.pagination .page-link {
    border-radius: 50%;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--primary-color);
    background: #f8f9fa;
    transition: all 0.3s ease;
}

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

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.2);
}

.featured-post {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.featured-post .card-body {
    padding: 2.5rem; /* Adjusted padding for larger screens */
}

.featured-post .text-muted {
    color: var(--text-muted) !important;
}

.featured-post .badge {
    background-color: var(--primary-color) !important;
    color: var(--white-color);
    backdrop-filter: none;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

.featured-post img {
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .featured-post img {
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        height: auto;
    }

    .featured-post .card-body {
        padding: 1.5rem; /* Adjusted padding for smaller screens */
    }
}

.animate-hover-right {
    transition: transform 0.3s ease;
}

.animate-hover-right:hover {
    transform: translateX(5px);
}

.recent-posts-list li {
    margin-bottom: 15px;
}

.recent-posts-list img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.recent-posts-list li:hover img {
    transform: scale(1.05);
}

.recent-posts-list a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: var(--primary-color);
}

.recent-posts-list small {
    color: var(--text-muted) !important;
}

/* Responsive styles for blog */
@media (max-width: 991.98px) {
    .blog-header {
        padding: 120px 0 60px;
    }
}

@media (max-width: 767.98px) {
    .blog-header {
        padding: 100px 0 50px;
    }

    .featured-post .card-img-top {
        height: 300px;
    }
}

/* Projects Page Styles */
.project-filter {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Increased top padding */
    padding-bottom: 80px; /* Increased bottom padding */
}

.section-header {
    margin-bottom: 3rem; /* Spacing below the header block */
    padding-bottom: 1.5rem; /* Padding within the header block */
    border-bottom: 1px solid var(--border-color-light); /* Subtle separator */
    animation-delay: 0.2s;
}

.section-heading {
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 3.7rem; /* Base font size */
    font-weight: 700;
    letter-spacing: -0.05rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
    text-transform: uppercase;
    line-height: 1.1;
}   

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem; /* Base font size */
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Responsive Adjustments for Section Heading and Subtitle */
@media (max-width: 991.98px) {
    .section-heading {
        font-size: 3rem; /* Adjusted for tablets */
    }
    .section-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 2.5rem; /* Adjusted for mobile */
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem; /* Reduced margin on smaller screens */
    }
    .project-filter {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 2rem; /* Even smaller for very small mobiles */
        line-height: 1.2;
    }
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.filter-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

.filter-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.filter-buttons .btn:hover::before {
    transform: translateX(100%);
}

.filter-buttons .btn.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-color), 0.2);
}

/* Projects Grid Section */
.projects-grid-section {
    background-color: var(--light-background);
    padding: 80px 0;
}

/* Project Cards */
.project-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.project-image {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 240px;
    object-fit: cover;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-color), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-category-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-title {
    font-size: 1.5rem;
    margin: 0.75rem 0;
    line-height: 1.4;
    color: var(--dark);
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.02rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.project-card:hover .project-title {
    color: var(--primary);
    transform: translateY(-3px) translateX(5px);
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.project-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    margin-top: 1rem;
}

.project-meta i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Soft Background Colors for Badges */
.bg-primary-soft {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-light);
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* CTA Section (projects page specific, if different from global) */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.9) 0%, rgba(55, 48, 163, 0.9) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--warning-color);
    color: #222;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.cta-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* Project Detail Page Styles */
.project-hero {
    position: relative;
    min-height: 60vh; /* Increased height for prominence */
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-light) 100%);
    overflow: hidden;
    padding: 120px 0 60px; /* Adjusted padding */
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff; /* Ensure text is white */
}

.project-hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px); /* Subtle blur for overlay */
}

.project-title {
    font-size: 3.5rem; /* Larger and more impactful title */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18); /* More pronounced text shadow */
}

.project-subtitle {
    font-size: 1.4rem; /* Slightly larger subtitle */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.project-detail-content {
    padding: 80px 0;
}

.project-gallery {
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* More prominent shadow */
    border-radius: 10px;
    overflow: hidden;
}

.main-gallery {
    width: 100%;
    height: 500px; /* Increased height for main slider */
    border-radius: 10px;
    overflow: hidden;
}

.thumbnail-gallery {
    width: 100%;
    height: 120px; /* Increased height for thumbnails */
    margin-top: 15px; /* Increased margin */
    border-radius: 10px;
    overflow: hidden;
}

.gallery-cell {
    width: 100%;
    height: 100%;
    margin-right: 15px; /* Increased spacing between cells in thumbnails */
}

.main-gallery .gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-gallery .gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, border 0.3s ease;
}

.thumbnail-gallery .gallery-cell.is-nav-selected img {
    opacity: 1;
    transform: scale(1.05);
    border: 3px solid var(--primary-color); /* Thicker border */
}

/* Adjust Flickity dots and arrows */
.flickity-prev-next-button {
    width: 50px; /* Larger buttons */
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6); /* Darker background */
    color: #fff;
    transition: all 0.3s ease;
}

.flickity-prev-next-button.previous {
    left: 20px; /* More inward positioning */
}

.flickity-prev-next-button.next {
    right: 20px; /* More inward positioning */
}

.flickity-prev-next-button:hover {
    background: var(--primary-color);
    transform: scale(1.1); /* Subtle scale on hover */
}

.flickity-button-icon {
    fill: #fff;
}

.flickity-page-dots {
    bottom: 20px; /* Higher positioning */
}

.flickity-page-dots .dot {
    width: 12px; /* Larger dots */
    height: 12px;
    opacity: 0.6;
    background: #fff;
    border: none;
    margin: 0 6px; /* Increased spacing */
    transition: all 0.3s ease;
}

.flickity-page-dots .dot.is-selected {
    background: var(--primary-color);
    opacity: 1;
    width: 15px; /* Even larger when selected */
    height: 15px;
}

/* Responsive Styles for gallery */
@media (max-width: 767.98px) {
    .main-gallery {
        height: 350px; /* Adjusted height for smaller screens */
    }
    .thumbnail-gallery {
        height: 80px; /* Adjusted height for smaller screens */
    }
    .project-hero {
        min-height: 40vh;
        padding: 100px 0 50px;
    }
    .project-title {
        font-size: 2.5rem;
    }
    .project-subtitle {
        font-size: 1.1rem;
    }
}

.info-card {
    background: #f8f9fa;
    border-radius: 12px; /* Slightly more rounded */
    padding: 30px; /* Increased padding */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* More subtle initial shadow */
    border: 1px solid var(--border-color-light);
}

.info-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* More pronounced hover shadow */
}

.info-card-title {
    font-size: 1.4rem; /* Larger title */
    font-weight: 700; /* Bolder */
    margin-bottom: 25px; /* Increased margin */
    color: var(--heading-color);
    position: relative;
}

.info-card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px; /* Underline effect */
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px; /* Increased margin */
    color: var(--text-color); /* Use global text color */
    font-size: 1.05rem;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li i {
    color: var(--primary-color); /* Use primary color for icons */
    margin-right: 12px; /* Increased margin */
    font-size: 1.25rem; /* Larger icons */
}

.info-list li strong {
    padding-right: 5px; /* Space between label and value */
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Increased gap */
}

.tech-badge {
    background: var(--light-background); /* Lighter background */
    color: var(--text-color);
    padding: 10px 20px; /* More generous padding */
    border-radius: 25px; /* More rounded */
    font-size: 0.95rem; /* Slightly larger font */
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.tech-badge:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color), 0.2);
}

.section-title {
    font-size: 2.5rem; /* Larger section titles */
    font-weight: 700; /* Bolder */
    margin-bottom: 40px; /* More spacing */
    color: var(--dark); /* Use dark color for titles */
    text-align: left;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px; /* Longer underline */
    height: 4px; /* Thicker underline */
    background: var(--primary-color);
    border-radius: 2px;
}
.section-title.tech-bottom-line-center::after {
    left: 50%;                  /* Center the underline */
    transform: translateX(-50%);
}

.project-description p.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.project-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-text);
}

.challenge-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-light);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    font-size: 2.5rem; /* Larger icon */
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(var(--primary-color), 0.1); /* Subtle background */
    border-radius: 50%;
    width: 70px; /* Larger circle */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1); /* Pop effect on hover */
}

.challenge-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.challenge-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

.result-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color-light);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.result-icon {
    font-size: 2.8rem; /* Larger icon for results */
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(var(--primary-color), 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Centered */
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.result-card h3 {
    font-size: 2.2rem; /* Large and bold numbers */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.result-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Sidebar Styles */
.sidebar-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    margin-bottom: 25px;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

.category-list {
    padding-left: 0;
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.category-list li a i {
    font-size: 0.8rem;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-list li a:hover i {
    transform: translateX(5px);
}

.recent-posts-list {
    padding-left: 0;
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: 20px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list img {
    border-radius: var(--border-radius-sm);
}

.recent-posts-list h6 a {
    color: var(--heading-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.recent-posts-list h6 a:hover {
    color: var(--primary-color);
}

.recent-posts-list small {
    font-size: 0.9rem;
}

.related-projects {
    margin-top: 25px;
}

.related-project {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-project:hover {
    transform: translateX(5px);
}

.related-project img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.related-project-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-project-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive adjustments for project detail page */
@media (max-width: 991.98px) {
    .project-hero {
        min-height: 50vh;
        padding: 100px 0 50px;
    }

    .project-title {
        font-size: 3rem;
    }

    .project-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .project-hero {
        min-height: 40vh;
        padding: 80px 0 40px;
    }

    .project-title {
        font-size: 2.2rem;
    }

    .project-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .result-card h3 {
        font-size: 1.8rem;
    }

    .project-gallery .col-12 img,
    .project-gallery .col-md-4 img {
        height: auto; /* Allow image to scale */
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }
    .project-subtitle {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .info-card,
    .challenge-card,
    .result-card,
    .sidebar-card {
        padding: 20px;
    }

    .info-card-title {
        font-size: 1.2rem;
    }

    .info-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .tech-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .challenge-icon,
    .result-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .result-card h3 {
        font-size: 1.6rem;
    }

    .sidebar-title {
        font-size: 1.3rem;
    }

    .category-list li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .related-project img {
        width: 60px;
        height: 60px;
    }

    .related-project-info h4 {
        font-size: 1rem;
    }
}

/* Blog Page Styles */
.blog-content {
    padding: 80px 0;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.featured-post .card-body {
    padding: 40px;
}

.featured-post h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.featured-post p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.category-list li,
.recent-posts-list li {
    margin-bottom: 12px;
}

.category-list li:last-child,
.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.recent-posts-list img {
    flex-shrink: 0;
}

.recent-posts-list h6 a {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.pagination .page-item .page-link {
    border-radius: 50%;
    margin: 0 4px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--background);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

@media (max-width: 991.98px) {
    .blog-content {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .blog-content {
        padding: 40px 0;
    }

    .featured-post .card-body {
        padding: 25px;
    }

    .featured-post h2 {
        font-size: 1.8rem;
    }

    .blog-card h3 {
        font-size: 1.2rem;
    }

    .sidebar-title {
        margin-bottom: 20px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/clean-textile.png');
    opacity: 0.05;
    pointer-events: none;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card {
    background: #fff;
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.03) 0%, rgba(79, 70, 229, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, #fff 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color-light);
    animation: ripple 2s linear infinite;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: #fff;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    min-height: 2.5rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: #fff;
}

.service-card.view-all-card:hover .service-title {
    color: #fff;
}

.service-card:hover .service-title::after {
    width: 60px;
    background: var(--primary-color);
}

.service-card.view-all-card:hover .service-title::after {
    background: #fff;
}

.service-description {
    color: var(--text-color-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 3.4rem; /* Approximately 2 lines of text */
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.4rem;
    border-radius: 6px;
    min-height: 2.2rem; /* Ensure equal height for list items */
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-cta {
    margin-top: auto;
    width: 100%;
    padding-top: 1.5rem;
}

.service-cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    min-height: 3.2rem; /* Ensure equal height for buttons */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure equal height for the row */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .service-card {
        padding: 2rem;
    }
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
    }
    .service-title {
        font-size: 1.6rem;
        min-height: 2.3rem;
    }
    .service-description {
        min-height: 3.2rem;
    }
    .service-features {
        padding: 1rem;
    }
    .service-features li {
        min-height: 2rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.8rem;
    }
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.3rem;
    }
    .service-title {
        font-size: 1.4rem;
        min-height: 2.1rem;
    }
    .service-description {
        font-size: 0.95rem;
        min-height: 3rem;
    }
    .service-features {
        padding: 0.9rem;
    }
    .service-features li {
        font-size: 0.95rem;
        min-height: 1.8rem;
    }
    .service-cta .btn {
        padding: 0.8rem 1.8rem;
        min-height: 3rem;
    }
}

/* Client Logos Section */
.client-logos-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.client-logos-section .section-title {
    margin-bottom: 3rem;
}

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.client-logo {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

@media (max-width: 991.98px) {
    .client-logos-section {
        padding: 40px 0;
    }
    
    .client-logo-wrapper {
        height: 100px;
        padding: 1rem;
    }
    
    .client-logo {
        max-height: 50px;
    }
}

@media (max-width: 767.98px) {
    .client-logos-section {
        padding: 30px 0;
    }
    
    .client-logo-wrapper {
        height: 90px;
        padding: 0.75rem;
    }
    
    .client-logo {
        max-height: 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-background);
    position: relative;
}

.testimonials-section .section-title {
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.testimonial-card .client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-card .client-position {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.accordion-item {
    background: #fff;
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 12px !important;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.9) 0%, rgba(55, 48, 163, 0.9) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--warning-color);
    color: #222;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.cta-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--background);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.about-content {
    padding-left: 3rem;
}

.about-content .section-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.about-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.icon-box-sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

/* Stats Section (About Page) */
.stats-section {
    padding: 80px 0;
    background: var(--light-background);
}

.stat-item {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color-light);
    font-weight: 500;
}

/* Values Section (About Page) */
.values-section {
    padding: 100px 0;
    background: var(--background);
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.value-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--heading-color);
}

.value-description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* Team Section (About Page) */
.team-section {
    padding: 100px 0;
    background: var(--light-background);
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.team-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-background);
    color: var(--text-color-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Responsive About Page */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    .about-content .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-section,
    .stats-section,
    .values-section,
    .team-section {
        padding: 60px 0;
    }

    .about-content .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.5rem;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-image {
        height: 220px;
    }
}

/* Services Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(to right, #f8f9fa, #e9ecef); /* Subtle gradient background */
    color: var(--text-color);
    overflow: hidden;
    padding: 6rem 0;
}

.services-hero::before {
    content: none;
}

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

.services-hero .section-subtitle {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.services-hero-title {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-description {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-hero-features {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Increased shadow */
}

.feature-item {
    background: #f0f2f5; /* Different light background for feature items */
    padding: 1.2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
}

.feature-text h5 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.services-hero-buttons {
    margin-top: 2rem;
}

.services-hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-hero-buttons .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.services-hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-hero-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.services-hero-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .services-hero {
        text-align: center;
    }

    .services-hero-buttons .btn {
        margin: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-features {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* Service Detail Page Styles */
.service-detail-content {
    padding: 80px 0;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.feature-item,
.step-item {
    background: var(--white-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-item:hover,
.step-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.icon-box,
.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    box-shadow: 0 5px 15px rgba(var(--primary-color), 0.3);
}

.feature-item h3,
.step-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading-color);
}

/* Sidebar Styles */
.sidebar-heading {
    font-size: 1.5rem; /* Slightly larger heading */
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px; /* More space below heading */
    position: relative;
    padding-left: 15px; /* Indent for visual line */
}

.sidebar-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; /* Thicker accent line */
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar-heading::after {
    content: none; /* Remove existing after pseudo-element */
}

.service-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category-list .category-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 15px 10px; /* Increased padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px; /* Rounded corners for each item */
    transition: all 0.3s ease;
    font-size: 1.05rem;
    margin-bottom: 8px; /* Space between items */
    background: var(--light-bg-color); /* Light background for items */
}

.service-category-list .category-link:last-child {
    margin-bottom: 0;
}

.service-category-list .category-link:hover {
    background: var(--primary-color); /* Primary color background on hover */
    color: #fff; /* White text on hover */
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 5px 15px rgba(var(--primary-color), 0.2); /* Shadow on hover */
}

.category-icon {
    font-size: 1.3rem; /* Slightly larger icon */
    min-width: 35px; /* Ensure consistent spacing */
    text-align: left;
    transition: all 0.3s ease;
    font-family: "Font Awesome 5 Free"; /* Added font-family */
    font-weight: 900; /* Added font-weight for solid icons */
}

.service-category-list .category-link:hover .category-icon {
    color: #fff;
}

.category-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-category-list .category-link:hover .category-arrow {
    transform: translateX(5px);
    color: #fff;
}

/* Contact Sidebar */
.contact-sidebar .card-body {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    background: var(--background);
}

.contact-sidebar .form-group {
    margin-bottom: 1.5rem;
}

.contact-sidebar .form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.contact-sidebar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}

.contact-sidebar .btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-sidebar .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-sidebar .social-icons {
    margin-top: 1.5rem;
}

.contact-sidebar .social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.contact-sidebar .social-icons a:hover {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .section-heading {
        font-size: 3rem; /* Adjusted for tablets */
    }

    .section-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 2.5rem; /* Adjusted for mobile */
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem; /* Reduce margin on smaller screens */
    }

    .project-filter {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .filter-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 2rem; /* Even smaller for very small mobiles */
        line-height: 1.2;
    }
}

/* Project Cards */
.project-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.project-image {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 240px;
    object-fit: cover;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-color), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-category-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-title {
    font-size: 1.5rem; /* Reduced font size slightly */
    margin: 0.75rem 0;
    line-height: 1.4;
    color: var(--dark);
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.02rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.project-card:hover .project-title {
    color: var(--primary);
    transform: translateY(-3px) translateX(5px);
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.project-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    margin-top: 1rem;
}

.project-meta i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-card {
        margin-bottom: 2rem;
    }
    
    .filter-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons .btn {
        margin: 0.25rem 0;
    }
    
    .project-image {
        height: 180px;
    }
}

/* Category List Styles */
.category-list {
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.75rem;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.category-list a:hover {
    color: #4f46e5;
    background-color: rgba(79, 70, 229, 0.05);
    transform: translateX(5px);
}

.category-list .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.65rem;
}

.category-list i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-list a:hover i {
    transform: translateX(3px);
}

/* Contact Section Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-section .img-fluid {
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.contact-section .img-fluid:hover {
    transform: translateY(-5px) scale(1.01);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-info-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.contact-info-item .icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.contact-info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Contact Form Styles */
.contact-section .card {
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 20px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.2rem 1rem;
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.2);
    background-color: white;
}

.form-floating > label {
    padding: 1rem 1rem;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Social Buttons */
.social-links-group .contact-social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.social-links-group .contact-social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-section iframe {
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--shadow-color);
    width: 100%;
    height: 500px;
    border: none;
}

/* Blog Detail Page Styles */
.blog-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.post-meta-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.post-meta-item:hover {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
}

.post-meta-item i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    color: #4f46e5;
}

.blockquote {
    border-left: 4px solid #4f46e5;
    background: rgba(79, 70, 229, 0.05);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    margin: 2rem 0;
}

.blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(79, 70, 229, 0.1);
    font-family: Georgia, serif;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.post-content h2 {
    color: #1a202c;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content img {
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-content img:hover {
    transform: scale(1.02);
}

.tag-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
    font-weight: 500;
    margin: 0.25rem;
}

.tag-btn:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #4f46e5;
    margin: 0 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.share-btn:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
}

.author-bio {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin: 3rem 0;
}

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

.author-bio img {
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.author-bio:hover img {
    transform: scale(1.05);
}

.comment {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comment:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.comment img {
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comment:hover img {
    transform: scale(1.1);
}

.comment-form .form-control {
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.comment-form .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

.related-post {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.related-post:hover {
    transform: translateX(10px);
    background: #f8f9fa;
}

.related-post img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.post-navigation a {
    color: #4f46e5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    color: #3730a3;
}

.post-navigation i {
    margin: 0 0.5rem;
}

/* Service Detail Section Styles */
.service-detail-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
    z-index: 0;
    opacity: 0;
}

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

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
    transform: rotate(0deg);
}

.service-icon i {
    font-size: 35px;
    color: #fff;
    transition: all 0.4s ease;
    line-height: 1;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-description {
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    position: relative;
}

.service-features li {
    margin-bottom: 12px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-card:hover .service-features li i {
    transform: scale(1.2);
}

.service-card .btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card .btn-primary:hover::before {
    width: 100%;
}

.service-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.view-all-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.view-all-card .service-icon {
    background: rgba(255,255,255,0.2);
}

.view-all-card .service-title,
.view-all-card .service-description,
.view-all-card .service-features li {
    color: #fff;
}

.view-all-card .service-features li i {
    color: #fff;
}

.view-all-card .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.view-all-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

/* Dropdown Menu Hover Styles */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateX(5px);
}

.navbar .dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
}

.navbar .dropdown-item.active {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 500;
}

.navbar .dropdown-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
}

.navbar .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(0,0,0,0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active state for dropdown items */
.navbar .dropdown-item.active {
    background-color: transparent;
    color: var(--primary-color);
}

/* Hover effect for dropdown toggle */
.navbar .dropdown-toggle:hover {
    color: var(--primary-color);
}

/* Dropdown Icon Styles */
.navbar .dropdown-toggle .bi-chevron-down {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

/* Main Menu Active State */
.navbar .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 75%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}

/* Banner Button Hover Effects */
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    width: 100%;
}

.hero-buttons .btn-primary {
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

/* Blog Detail Sidebar Styles */
.sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.sidebar-card .card-body {
    padding: 25px;
}

.sidebar-card h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Search Form */
.search-input {
    border: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 30px 0 0 30px;
    border-right: none;
}

.search-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--secondary-color);
}

/* Categories List */
.sidebar-card .list-unstyled li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.sidebar-card .list-unstyled li:last-child {
    margin-bottom: 0;
}

.sidebar-card .list-unstyled li a {
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
}

.sidebar-card .list-unstyled li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-card .list-unstyled li a i {
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.sidebar-card .list-unstyled li a:hover i {
    transform: scale(1.2);
}

.sidebar-card .badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* Popular Posts */
.popular-post {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.popular-post img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.popular-post h6 {
    font-weight: 600;
    line-height: 1.4;
}

.popular-post h6 a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.popular-post h6 a:hover {
    color: var(--primary-color);
}

/* Newsletter Form */
.sidebar-card .form-control {
    border: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 30px 0 0 30px;
}

.sidebar-card .btn-primary {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
}

/* Post Navigation */
.post-navigation {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.post-navigation .row {
    margin: 0;
}

.post-navigation .col-6 {
    padding: 0 15px;
}

.post-navigation .col-6:first-child {
    border-right: 1px solid #eee;
}

.post-navigation a {
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 10px 0;
    display: block;
}

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

.post-navigation a i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.post-navigation .col-6:first-child a:hover i {
    transform: translateX(-5px);
}

.post-navigation .col-6:last-child a:hover i {
    transform: translateX(5px);
}

.post-navigation span {
    font-size: 15px;
}

/* Tags */
.tag-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #f8f9fa;
    color: var(--text-color);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.tag-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Share Buttons */
.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

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

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.1);
}

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

.contact-info-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-info-item .icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    color: #4f46e5;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item .info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-item .info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Contact Form Styles */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-info-item .icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-info-item .info-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 15px;
    }
    
    .contact-form .form-control {
        padding: 10px 12px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-info-item .icon-box {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}