:root {
    --soft-peach: #FFF8F3;
    --violet-core: #000000;
    --electric-indigo: #353535;
    --data-charcoal: #1a1a1a;
    --cloud-blue: #EEF0FF;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #ffffff;
    --background-primary: #ffffff;
    --background-secondary: #f8f9fa;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--soft-peach);
    color: var(--text-primary);
    line-height: 1.6;
    font-family: poppins, sans-serif;
}

/* Fix for fixed navigation */
/* .main-content {margin-top: 80px;} */

/* Ensure hero sections start below fixed navbar */
.hero, .services-hero, .contact-hero, .about-hero, .case-studies-hero, .blog-hero {
    margin-top: 0;
    position: relative;
    z-index: 1;
    background-color: #F7F7F8;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.text-muted{
    color: var(--text-muted)!important;
}

.ck.ck-toolbar.ck-toolbar_grouping>.ck-toolbar__items{
  flex-wrap: wrap!important;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--violet-core);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--violet-core);
    border-radius: 8px;
    margin-right: 0.75rem;
    position: relative;
}

.logo-icon::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px solid white;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--data-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--violet-core);
}

.cta-button {
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 63, 226, 0.2);
}

/* Hero Section */
.hero {
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2dbdb;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #FFD700;
    font-size: 1rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--data-charcoal) 0%, var(--electric-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-indigo);
    line-height: 1;
}

            .hero-stats .stat-label {
                font-size: 0.9rem;
                color: white;
                font-weight: 500;
            }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.hero-icon-container {
    position: relative;
    width: 500px;
    height: 350px;
    background: #4C3FE2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(76, 63, 226, 0.3);
    overflow: hidden;
}

.hero-icon {
    font-size: 8rem;
    color: white;
    z-index: 2;
    position: relative;
}


.client-logos-container img{
  opacity: 70%;
 -webkit-filter: grayscale(50%); 
  filter: grayscale(100%);
  margin-right: 50px;
  justify-content: center;
  align-items: center;
}



.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.float-element.element-1 {
    top: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    right: 20%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
}

.float-element.element-3 {
    bottom: 20%;
    left: 30%;
    width: 40px;
    height: 40px;
    animation-delay: 4s;
}

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


/* About Section Improvements */
.about-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 63, 226, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--electric-indigo), #8A6EFF);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.header-badge i {
    font-size: 1rem;
}

.about-content {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.about-highlight {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76, 63, 226, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px;
    border: 1px solid rgba(76, 63, 226, 0.1);
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.highlight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
}

            .highlight-content p {
                color: var(--text-secondary);
                line-height: 1.6;
                margin: 0;
            }

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(76, 63, 226, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(76, 63, 226, 0.1);
}

.feature-item i {
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--data-charcoal);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin:0;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 63, 226, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 63, 226, 0.15);
}

.stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-indigo), #8A6EFF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.about-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-indigo);
    line-height: 1;
}

            .about-stat .stat-label {
                font-size: 0.85rem;
                color: var(--text-muted);
                font-weight: 500;
                margin-top: 0.25rem;
            }

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(76, 63, 226, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(76, 63, 226, 0.1);
    border: 1px solid rgba(76, 63, 226, 0.1);
}

.main-visual {
    font-size: 6rem;
    z-index: 2;
    position: relative;
}

.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.visual-element {
    position: absolute;
    background: rgba(76, 63, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-indigo);
    font-size: 1.2rem;
    animation: float 8s ease-in-out infinite;
}

.visual-element.element-1 {
    top: 15%;
    left: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.visual-element.element-2 {
    top: 70%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
}

.visual-element.element-3 {
    bottom: 15%;
    left: 25%;
    width: 35px;
    height: 35px;
    animation-delay: 6s;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-header {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-1 {
    background: linear-gradient(45deg, var(--electric-indigo), #8A6EFF);
}

.card-2 {
    background: linear-gradient(45deg, #4C3FE2, #6866F4);
}

.card-3 {
    background: linear-gradient(45deg, #3C4BC2, #5E7AFF);
}

.card-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 200px;
    opacity: 0.15;
    color: white;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: var(--data-charcoal);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: wheat;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonial-slider {
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #e2dbdb;
}

.about-content {
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--data-charcoal);
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin:0;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--violet-core);
    margin-bottom: 0.5rem;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-image {
    text-align: center;
}

.about-image .image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.2);
}

.about-image .image-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Case Studies Section */
.case-studies-section {
    padding: 3rem 0;
    background: var(--soft-peach);
    border-top: 1px solid #e2dbdb;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid #e2dbdb;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.15);
}

.case-study-card .case-image {
    position: relative;
    height: 200px;
}

.case-study-card .case-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 2.5rem;
}

.case-study-card .case-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 63, 226, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card .case-content {
    padding: 2rem;
}

.case-study-card .case-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    line-height: 1.3;
}

.case-study-card .case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-card .case-metrics {
    display: flex;
    gap: 1.5rem;
}

.case-study-card .metric {
    text-align: center;
}

.case-study-card .metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--violet-core);
    margin-bottom: 0.25rem;
}

.case-study-card .metric-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Button Styles */
.btn-primary {
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
    color: white;
}

.btn-secondary {
    background: rgba(76, 63, 226, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(76, 63, 226, 0.2);
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

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

.mt-5 {
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.white-button {
    background-color: white;
    color: #272727;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.white-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background-color: var(--data-charcoal);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}





/* Blog List Styles */
.blog-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: var(--cloud-blue);
    color: var(--violet-core);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.25rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--violet-core);
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.pagination-link:hover {
    background-color: var(--cloud-blue);
}

.current-page {
    color: var(--data-charcoal);
}



/* Blog Detail Styles */
.blog-detail-section {
    padding: 2rem 0 4rem;
    background-color: #F7F7F8;

}

.blog-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}


.post-header-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 2;
}

.post-image {
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 0 2rem;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

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

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1.5rem;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
}

.post-meta span:not(:last-child):after {
    content: "•";
    margin-left: 1.5rem;
    color: #ddd;
    font-weight: bold;
}

.content-wrapper {
    margin: 0 auto;
    padding: 2rem 4rem 4rem 4rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tags-label {
    font-weight: 600;
    color: #444;
}

.tag {
    background: var(--cloud-blue);
    color: var(--violet-core);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--violet-core);
    color: white;
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    padding: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    justify-content: center;
}

.share-label {
    font-weight: 600;
                color: var(--text-primary);
                margin-right: 0.5rem;
}

.share-icon {
    display: inline-flex;
    align-items: center;
                gap: 0.5rem;
                padding: 0.75rem 1.5rem;
                border-radius: 50px;
    text-decoration: none;
                font-weight: 500;
    transition: all 0.3s ease;
                border: 1px solid var(--border-color);
                background: white;
                color: var(--text-muted);
                position: relative;
                overflow: hidden;
            }

.share-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.share-icon:hover::before {
    left: 100%;
}

.share-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.share-icon.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.share-icon.linkedin:hover {
    background: #0077B5;
    color: white;
    border-color: #0077B5;
}

.share-icon.facebook:hover {
    background: #4267B2;
    color: white;
    border-color: #4267B2;
}

.share-icon i {
    font-size: 1.1rem;
}

.share-icon span {
    font-size: 0.9rem;
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: newsletterGlow 4s ease-in-out infinite;
}

@keyframes newsletterGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.newsletter-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--data-charcoal);
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--violet-core);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.subscribe-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.benefit-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Improved recent posts cards */
.recent-card .recent-image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.recent-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.recent-content {
    padding: 0.5rem;
}

.recent-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--violet-core);
    margin-bottom: 0.5rem;
}

.recent-date {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* Contact Page Styles */
/* Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
        opacity: 1;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 1.3rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 1rem;
}


.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Contact Section */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(76, 63, 226, 0.1);
    border: 1px solid rgba(76, 63, 226, 0.05);
    position: relative;
    overflow: auto;
    margin-top: 70px;
}
.contact-form-container h2 {
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    font-size: 2rem;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(76, 63, 226, 0.3);
}


.form-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--data-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--violet-core);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1.25rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 63, 226, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

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

.submit-btn {
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.4);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px) scale(1.1);
}

/* Contact Info Styles */
.contact-info {
    padding: 2rem 0;
    margin-top: 40px;
}

.info-header {
    margin-bottom: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    font-size: 2.25rem;
    font-weight: 700;
}

.contact-info > p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.15);
    border-color: rgba(76, 63, 226, 0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

.method-content h4 {
    margin-bottom: 0.5rem;
    color: var(--data-charcoal);
    font-size: 1.2rem;
    font-weight: 600;
}

.method-content p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.method-note {
    font-size: 0.85rem;
    color: var(--violet-core);
    font-weight: 500;
    opacity: 0.8;
}

/* Social Links */
.social-links {
    background: #171a1d;
    padding: 6px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 63, 226, 0.05);
    padding-left: 50px;
}

.social-links h4 {
    margin-bottom: 0.75rem;
    color: var(--data-charcoal);
    font-size: 1.3rem;
    font-weight: 600;
}

.social-links p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--cloud-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-core);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(76, 63, 226, 0.1);
}

.social-icon:hover {
    background: var(--violet-core);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(76, 63, 226, 0.4);
}

/* FAQ Section */

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, var(--soft-peach) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(76, 63, 226, 0.3);
}

.header-badge i {
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.15);
    border-color: rgba(76, 63, 226, 0.1);
}

.faq-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

.faq-content h4 {
    color: var(--data-charcoal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.faq-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}



/* Messages/Alerts */
.messages {
    margin-bottom: 2rem;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-content i {
    font-size: 1.2rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    
    .contact-hero { padding: 6rem 0 4rem; }
    .contact-hero h1 { font-size: 2.2rem; }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.75rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 2rem;
        gap: 1rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-links {
        padding: 1.5rem;
    }


}

@media (max-width: 480px) {
    .contact-hero { padding: 4rem 0 2rem; }
    .contact-hero h1 { font-size: 1.5rem; }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .method-content h4 {
        font-size: 1rem;
    }
    
    .method-content p {
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


/*Contact Page */
/* Enhanced Contact Page Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 1.3rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 1rem;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 0rem 0 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, var(--soft-peach) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Enhanced Form Container */

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.4);
    position: relative;
}


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.contact-form-container h2 {
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    font-size: 2.2rem;
    font-weight: 700;
}
/* Desktop */
.contact-hero {
    padding: 3rem 0 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Mobile */
.form-subtitle {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Form Styles */
/* Contact Page Styles - Simplified */

/* Hero Section */
.contact-hero {
    padding: 3rem 0 4rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-studies-hero {
    padding: 8rem 0 6rem;
    color: white;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-content {
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--electric-indigo);
    line-height: 1;
}

            .hero-stats .stat-label {
                font-size: 0.9rem;
                color: var(--text-muted);
                font-weight: 500;
                margin-top: 0.5rem;
            }

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.hero-icon-container {
    position: relative;
    width: 500px;
    height: 350px;
    background: #4C3FE2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(76, 63, 226, 0.3);
    overflow: hidden;
}

.hero-icon {
    font-size: 8rem;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    padding: 1rem 0;
}

.info-header h2 {
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    font-size: 2rem;
}

.info-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    margin-bottom: 0.5rem;
    color: var(--data-charcoal);
    font-size: 1.1rem;
}

.method-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-note {
    font-size: 0.8rem;
    color: var(--violet-core);
    font-weight: 500;
}

/* Social Section */
.social-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.social-section h4 {
    margin-bottom: 0.5rem;
    color: var(--data-charcoal);
    font-size: 1.2rem;
}

.social-section p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.linkedin {
    background: #f0f8ff;
    color: #0077b5;
}

.social-icon.twitter {
    background: #f0f0f0;
    color: #1da1f2;
}

.social-icon.facebook {
    background: #f0f8ff;
    color: #1877f2;
}

.social-icon.instagram {
    background: #fdf2f8;
    color: #e4405f;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: var(--soft-peach);
    border-top: 1px solid #e2dbdb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

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

.faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-content h4 {
    color: var(--data-charcoal);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Messages/Alerts */
.messages {
    margin-bottom: 2rem;
}

.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat {
        min-width: 150px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.25rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .method-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .method-content h4 {
        font-size: 1rem;
    }
    
    .method-content p {
        font-size: 0.85rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-content h4 {
        font-size: 1rem;
    }
    
    .faq-content p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

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

/* Services Hero */
.services-hero {
    padding: 3rem 0 2rem;
    color: white;
    text-align: center;
}

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

.services-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Main Services Section */
.main-services {
    padding: 3rem 0;
    background: #F7F7F8;
    border-bottom: 1px solid #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card.featured {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.1);
    border: 1px solid rgba(76, 63, 226, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(76, 63, 226, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(76, 63, 226, 0.3);
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 25px;
    text-align: center;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0!important;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.service-features i {
    font-size: 1.1rem;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
    color: white;
}

.price {
    color: var(--violet-core);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    padding: 4rem 0;
    background: white;
}

.services-grid-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--soft-peach);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.1);
}

.service-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 3rem 0;
    border-top: 1px solid #e2dbdb;
    background: linear-gradient(135deg, var(--soft-peach) 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons a{
    border:1px solid #fff;
}

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

/* About Hero */
.about-hero {
    padding: 3rem 0 2rem;
    color: white;
    text-align: center;
}

.about-hero .hero-content {
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: var(--soft-peach);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(76, 63, 226, 0.3);
}

.mission-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--data-charcoal);
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
    background: var(--soft-peach);
    border-top: 1px solid #e2dbdb;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--data-charcoal);
}

.story-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.2);
}

.image-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Values Section */
.values-section {
    padding: 3rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--soft-peach);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 63, 226, 0.3);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background: var(--soft-peach);
    border-top: 1px solid #e2dbdb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.15);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image .image-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 2.5rem;
}

.member-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--data-charcoal);
}

.position {
    color: var(--violet-core);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Stats */
.about-stats {
    padding: 4rem 0;
    background: var(--data-charcoal);
    color: white;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.about-stats .stat-item h3 {
    font-size: 3rem;
    color: wheat;
    margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CASE STUDIES PAGE STYLES ===== */

/* Case Studies Hero */
.case-studies-hero {
    padding: 3rem 0 3rem;
    background: linear-gradient(135deg, var(--violet-core) 0%, var(--electric-indigo) 100%);
    color: white;
    text-align: center;
}

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

.case-studies-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Featured Case Study */
.featured-case {
    padding: 3rem 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--data-charcoal);
}

.case-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.case-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #d2d2d2;
    border-radius: 15px;
    padding: 10px;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--violet-core);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.case-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--data-charcoal);
}

.case-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 63, 226, 0.15);
}

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

.case-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 2.5rem;
}

.case-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 63, 226, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--data-charcoal);
    line-height: 1.3;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--violet-core);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.case-cta {
    text-align: right;
}

.case-cta .learn-more {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.case-cta .learn-more:hover {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--soft-peach);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.1);
}

.testimonial-content p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--data-charcoal);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Case Studies CTA */
.case-studies-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    text-align: center;
}

.case-studies-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.case-studies-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE DESIGN FOR ALL PAGES ===== */

@media (max-width: 768px) {
    /* Services Page */
    .services-hero h1,
    .about-hero h1,
    .case-studies-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .mission-grid,
    .story-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured,
    .mission-card,
    .case-card {
        padding: 2rem;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .case-results {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .values-grid,
    .team-grid,
    .cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-secondary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .method-content h4 {
        font-size: 1rem;
    }
    
    .method-content p {
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Enhanced Navigation Styles */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: #F7F7F8;
}


.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--violet-core) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.05);
}

.brand-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--data-charcoal) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--violet-core) !important;
    background: rgba(76, 63, 226, 0.1);
    transform: translateY(-1px);
}

.nav-link i {
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--data-charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-buttons .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--violet-core);
    color: var(--violet-core);
}

.btn-outline-primary:hover {
    color: white;
}

.btn-primary {
    border: none;
    color: white;
}

.btn-primary:hover {
    color: white;
}

/* Main Content */
/* Enhanced Footer Styles */
.footer-main {
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    z-index: -1;
}

.footer-top {
    position: relative;
}

.footer-brand {
    position: relative;
}

.footer-brand .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--violet-core), var(--electric-indigo));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    padding: 15px;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    left: 0;
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
    color: #b0b0b0;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(76, 63, 226, 0.25);
    color: white;
}

.newsletter-form .btn {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}

.footer-newsletter-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.footer-newsletter-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Responsive Design for Navigation and Footer */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        border: none;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-top {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
    }

}

@media (max-width: 480px) {
    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem;
    }
    
    .nav-buttons .btn {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .newsletter-cta {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-cta h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-cta p {
        font-size: 1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Blog Hero Section */
.blog-hero {
    padding: 2rem 0 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2dbdb;
}

.blog-hero-content {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.blog-stats .stat {
    text-align: center;
}

.blog-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--electric-indigo);
    line-height: 1;
}

            .blog-stats .stat-label {
                font-size: 0.9rem;
                color: var(--text-muted);
                font-weight: 500;
                margin-top: 0.5rem;
            }

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.blog-hero-shapes .shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.blog-hero-shapes .shape-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
}

.blog-hero-shapes .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 25%;
    animation-delay: 6s;
}

/* Blog Section Improvements */
.blog-section {
    padding: 2rem 0;
    background: white;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 63, 226, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(76, 63, 226, 0.1);
    gap: 2rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

            .filter-group label {
                font-weight: 600;
                color: var(--text-primary);
                white-space: nowrap;
            }

            .filter-group .form-select {
                padding: 0.75rem 1rem;
                border: 1px solid rgba(76, 63, 226, 0.2);
                border-radius: 10px;
                background: white;
                color: var(--text-primary);
                font-weight: 500;
                min-width: 200px;
                transition: all 0.3s ease;
            }

.filter-group .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 63, 226, 0.1);
}

.search-group {
    position: relative;
    flex: 1;
    max-width: 400px;
}

            .search-group .form-control {
                width: 100%;
                padding: 0.75rem 1rem 0.75rem 3rem;
                border: 1px solid rgba(76, 63, 226, 0.2);
                border-radius: 10px;
                background: white;
                color: var(--text-primary);
                font-weight: 500;
                transition: all 0.3s ease;
            }

.search-group .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 63, 226, 0.1);
}

            .search-group i {
                position: absolute;
                left: 1rem;
                top: 50%;
                transform: translateY(-50%);
                color: var(--text-muted);
                font-size: 1.1rem;
            }

            /* Enhanced Blog Grid */
            .blog-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                margin-bottom: 3rem;
                max-width: 100%;
            }

            @media (min-width: 768px) {
                .blog-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            @media (max-width: 767px) and (min-width: 480px) {
                .blog-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 479px) {
                .blog-grid {
                    grid-template-columns: 1fr;
                }
            }

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 63, 226, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 63, 226, 0.15);
    border-color: var(--electric-indigo);
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.read-more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

.blog-content {
    padding: 1.5rem;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--electric-indigo), #8A6EFF);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

            .blog-date {
                color: var(--text-muted);
                font-size: 0.9rem;
                font-weight: 500;
            }

            .blog-content h3 {
                font-size: 1.3rem;
                font-weight: 700;
                margin-bottom: 1rem;
                color: var(--text-primary);
                line-height: 1.4;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .blog-content p {
                color: var(--text-secondary);
                line-height: 1.6;
                margin-bottom: 1.5rem;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

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

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

            .author-name {
                font-size: 0.9rem;
                font-weight: 600;
                color: var(--text-primary);
            }

            .read-time {
                display: flex;
                align-items: center;
                gap: 0.25rem;
                color: #2e2e2e;
                font-size: 0.85rem;
            }

.read-time i {
    font-size: 0.9rem;
}

/* Enhanced Pagination */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 63, 226, 0.1);
}

            .pagination-link {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 10px;
                background: white;
                color: var(--text-primary);
                text-decoration: none;
                font-weight: 600;
                border: 1px solid rgba(76, 63, 226, 0.2);
                transition: all 0.3s ease;
            }

.pagination-link:hover {
    background: var(--electric-indigo);
    color: white;
    border-color: var(--electric-indigo);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 63, 226, 0.3);
    text-decoration: none;
}

.current-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--electric-indigo);
    color: white;
    font-weight: 600;
}

            .pagination-info {
                color: var(--text-muted);
                font-size: 0.9rem;
                font-weight: 500;
            }




/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .content-wrapper {
    padding: 1rem 2rem 2rem 2rem;
        }
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
    
     .client-logos-section {
        display: none;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats .stat {
        text-align: center;
        min-width: 80px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .hero-icon-container {
        width: 280px;
        height: 220px;
    }
    
    .hero-icon {
        font-size: 4.5rem;
    }
    
    .float-element {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    /* Services Section */
    .services {
        padding: 4rem 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .card-header {
        height: 150px;
    }
    
    .card-icon {
        font-size: 150px;
        bottom: -20px;
        right: -20px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-body h3 {
        font-size: 1.4rem;
    }
    
    .card-body p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-body ul {
        padding-left: 1.5rem;
    }
    
    .card-body li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* About Section */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .highlight-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-features {
        margin: 1.5rem 0;
    }
    
    .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .about-stat {
        justify-content: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .about-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .visual-container {
        width: 280px;
        height: 280px;
    }
    
    .main-visual {
        font-size: 3.5rem;
    }
    
    .visual-element {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    /* Case Studies Section */
    .case-studies-section {
        padding: 4rem 0;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study-card {
        margin-bottom: 1rem;
    }
    
    .case-study-card .case-image {
        height: 180px;
    }
    
    .case-study-card .case-content {
        padding: 1.5rem;
    }
    
    .case-study-card .case-content h3 {
        font-size: 1.3rem;
    }
    
    .case-study-card .case-content p {
        font-size: 0.95rem;
    }
    
    .case-study-card .case-metrics {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .case-study-card .metric {
        text-align: center;
    }
    
    .case-study-card .metric-number {
        font-size: 1.3rem;
    }
    
    .case-study-card .metric-label {
        font-size: 0.8rem;
    }
    
    /* Stats Section */
    .stats {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-content {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .white-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
    }


    .post-content{
        padding:0;
    }
    
     .blog-post {
        padding:0rem;
        margin-bottom: 2rem;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    .post-header-content{
        padding: 0;
    }
    
    .post-content {
        padding: 0.5rem;
    }
    .post-image {
        height: 200px;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog Hero Responsive */
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blog-filters {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-group {
        max-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .pagination-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats .stat {
        min-width: 120px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .hero-icon-container {
        width: 220px;
        height: 180px;
    }
    
    .hero-icon {
        font-size: 3.5rem;
    }
    
    .float-element {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }
    
    /* Services Section */
    .services {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .card-header {
        height: 120px;
    }
    
    .card-icon {
        font-size: 120px;
        bottom: -15px;
        right: -15px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-body h3 {
        font-size: 1.2rem;
    }
    
    .card-body p {
        font-size: 0.9rem;
    }
    
    .card-body li {
        font-size: 0.85rem;
    }
    
    /* About Section */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-highlight {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .about-features {
        margin: 1rem 0;
    }
    
    .feature-item {
        padding: 0.5rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .about-stat {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .about-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .about-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .visual-container {
        width: 220px;
        height: 220px;
    }
    
    .main-visual {
        font-size: 2.5rem;
    }
    
    .visual-element {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.8rem !important;
    }
    
    /* Case Studies Section */
    .case-studies-section {
        padding: 3rem 0;
    }
    
    .case-studies-grid {
        gap: 1rem;
    }
    
    .case-study-card .case-image {
        height: 150px;
    }
    
    .case-study-card .case-content {
        padding: 1rem;
    }
    
    .case-study-card .case-content h3 {
        font-size: 1.2rem;
    }
    
    .case-study-card .case-content p {
        font-size: 0.9rem;
    }
    
    .case-study-card .case-metrics {
        gap: 0.75rem;
    }
    
    .case-study-card .metric-number {
        font-size: 1.2rem;
    }
    
    .case-study-card .metric-label {
        font-size: 0.75rem;
    }
    
    /* Stats Section */
    .stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-content {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .white-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Blog Hero Mobile */
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    
    .blog-stats .stat-number {
        font-size: 2rem;
    }
    
    .blog-filters {
        padding: 1rem;
    }
    
    .filter-group .form-select {
        min-width: 150px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .pagination {
        padding: 0.75rem 1rem;
    }
    
    .pagination-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
        text-align: center;
    }
}



