/* styles.css - Combined CSS from index.html and portfolio.html */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #171a20;
    --light-gray: #f4f4f4;
    --text-primary: #393c41;
    --text-secondary: #5c5e62;
    --accent: #3e6ae1;
}

body {
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Tesla-style Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease;
    padding: 20px 40px;
    color: #000;
}

.navbar.scrolled {
    background: var(--white);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-cta {
    color: var(--text-primary);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: auto;
    height: 45px;
}

.navbar.scrolled .logo img {
    filter: none; /* Reset to original color when scrolled */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0 auto;
}

.nav-link {
    color: var(--black); /* White text for navbar links */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: transparent;
    color: var(--black); /* White text for CTA */
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #000;
}

.nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-cta {
    background: var(--dark-gray);
    color: var(--white);
    border: 1px solid var(--dark-gray);
}

.navbar.scrolled .nav-cta:hover {
    background: #2a2d32;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--black); /* White hamburger icon */
    font-size: 20px;
}

.navbar.scrolled .hamburger {
    color: var(--text-primary); /* Dark hamburger when scrolled */
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px 60px;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(62, 106, 225, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 16px;
}

.hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(62, 106, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: #2d5ac7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(62, 106, 225, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-frame {
    width: 100%;
    max-width: 400px;
    height: 500px;   border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.floating-element-1 {
    top: 6%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.floating-element-2 {
    bottom: 3%;
    right: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 106, 225, 0.1);
    color: var(--accent);
    border-radius: 50%;
    font-size: 18px;
}

.floating-text h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--dark-gray);
}

.floating-text p {
    font-size: 12px;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .image-frame {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 40px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-frame {
        height: 600px;
        max-width: 600px;
    }
    
    .floating-element-1 {
        top:1%;
        left: 1px;
    }
    
    .floating-element-2 {
        bottom: 10%;
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .image-frame {
        height: 450px;
    }
    
    .floating-element {
        padding: 5px;
    }
    
    .floating-text h4 {
        font-size: 12px;
    }
    
    .floating-text p {
        font-size: 10px;
    }
    
  
}

/* Services Section - Tesla Style */
.services-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--accent);
    background: rgba(62, 106, 225, 0.1);
    border-radius: 50%;
}

.service-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Gallery Section - Tesla Style */
.gallery-section {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 300px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.gallery-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Portfolio CTA Section - Tesla Style */
.portfolio-cta {
    padding: 100px 40px;
    background: var(--white);
}

.portfolio-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-cta-content {
    text-align: center;
}

.portfolio-cta-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.portfolio-cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-item {
    height: 200px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: var(--light-gray);
    border-radius: 8px;
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}
/* Loading states */
.loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4a6cf7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-portfolio {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-portfolio i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #e9ecef;
}

/* Client logos in case studies */
.case-study-logos {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.client-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.portfolio-overlay-category {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 12px 80px;
    font-size: 14px;
    min-width: 220px;
}

/* Blog Section - OpenAI Style */
.blog-section {
    padding: 100px 40px;
    background: var(--light-gray);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.blog-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: rgba(62, 106, 225, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-date {
    color: var(--text-secondary);
}

.blog-read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #2a4fb3;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}





/* Contact Form Styles */
.contact-holder{
    width: 100%;
    background-color: var(--light-gray);
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-section {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
     border-radius: 20px;
    transform: scale(90%);
    max-width: 500px;
    align: center;
    margin: auto;
}

.contact-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}
.inputs-holder input{
    width: 96%;
    
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    height: 40px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: #000;
    
}
.inputs-holder{
    display: flex;
    color: #000;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}


label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

input , textarea {
    width: 98%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    height: 40px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-primary);
    color: #000;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(62, 106, 225, 0.2);
}

textarea {
    min-height: 80px;
    resize: vertical;
}


.submit-btn {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 98%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2d5ac7;
}

/* Portfolio Page Specific Styles */
.portfolio-hero {
    height: 70vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('portfolio/bg-portfolio.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 140px 20px 100px;
}

.portfolio-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.portfolio-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-filter {
    padding: 60px 40px;
    background-color: var(--white);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.filter-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.filter-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

.portfolio-grid-section {
    padding: 60px 40px 100px;
    background-color: var(--light-gray);
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-category {
    display: inline-block;
    background: rgba(62, 106, 225, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-item-title {
    color: white;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.portfolio-item-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.portfolio-item-link {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.portfolio-item-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.portfolio-item-link:hover i {
    transform: translateX(5px);
}

.portfolio-stats {
    padding: 80px 40px;
    background-color: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.testimonials-section {
    padding: 100px 40px;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: rgba(62, 106, 225, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active .nav-link {
        color: var(--text-primary);
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        display: block;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        display: block;
        color: var(--text-primary);
        border: 1px solid rgba(0, 0, 0, 0.2);
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-cta-title {
        font-size: 28px;
    }
    
    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero-title {
        font-size: 36px;
    }
    
    .portfolio-hero-subtitle {
        font-size: 16px;
    }
    
    .filter-title {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .hero, .services-section, .gallery-section, .portfolio-cta, .blog-section {
        padding: 80px 20px;
    }

    
    .hero-content {
        text-align: center;
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .portfolio-cta-title {
        font-size: 24px;
    }
    
    .portfolio-showcase {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero, .portfolio-filter, .portfolio-grid-section, .portfolio-stats, .testimonials-section, .portfolio-cta {
        padding: 80px 20px;
    }

    .portfolio-hero-title {
        font-size: 32px;
    }
    
    .portfolio-hero-subtitle {
        font-size: 14px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .portfolio-cta-title {
        font-size: 22px;
    }
    
    .blog-title {
        font-size: 24px;
    }
    
    .portfolio-hero-title {
        font-size: 28px;
    }
    
    .portfolio-hero-subtitle {
        font-size: 13px;
    }
    
    .filter-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .portfolio-cta-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

.adv-img {
    min-height: 100vh;
    align-items: center;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 60px;

}

.adv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.adv-content {
    flex: 1;
    max-width: 700px;
}

.adv-badge {
    display: inline-block;
    background: ;
    text-decoration: underline;
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adv-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.adv-title span {
    color: ;
}

.adv-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.adv-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
   
    position: relative;
    padding: 0;
}

.adv-frame {
    width: 100%;
    height: 500px;   
    overflow: hidden;
    
    position: relative;
}

.adv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


        /* Additional styles specific to the About page */
        .about-hero {
            padding: 140px 40px 60px;
            background-color: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .about-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 60px;
        }
        
        .about-hero-content {
            flex: 1;
            max-width: 600px;
        }
        
        .about-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-gray);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .about-hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .about-hero-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .about-image-frame {
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        
        .about-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .values-section {
            padding: 100px 40px;
            background-color: var(--light-gray);
        }
        
        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .value-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .value-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 28px;
            color: var(--accent);
            background: rgba(62, 106, 225, 0.1);
            border-radius: 50%;
        }
        
        .value-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .value-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 400;
        }
        
        .team-section {
            padding: 100px 40px;
            background-color: var(--white);
        }
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .team-member {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .team-member.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--light-gray);
        }
        
        .member-name {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        
        .member-role {
            color: var(--accent);
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        .member-bio {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(62, 106, 225, 0.1);
            color: var(--accent);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .story-section {
            padding: 100px 40px;
            background-color: var(--light-gray);
        }
        
        .story-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .story-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .story-text {
            flex: 1;
        }
        
        .story-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 24px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        
        .story-description {
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .story-image-container {
            flex: 1;
        }
        
        .story-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .milestones-section {
            padding: 100px 40px;
            background-color: var(--white);
        }
        
        .milestones-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .milestones-timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0;
        }
        
        .milestones-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: var(--accent);
            transform: translateX(-50%);
        }
        
        .milestone {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .milestone.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .milestone:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .milestone-content {
            flex: 1;
            padding: 30px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .milestone-year {
            font-size: 18px;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .milestone-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        
        .milestone-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 400;
        }
        
        .milestone-marker {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        /* Responsive styles for About page */
        @media screen and (max-width: 1024px) {
            .about-hero-title {
                font-size: 40px;
            }
            
            .about-hero-subtitle {
                font-size: 16px;
            }
            
            .about-image-frame {
                height: 350px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .about-hero {
                padding: 120px 20px 40px;
            }
            
            .about-hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .about-hero-content {
                max-width: 100%;
            }
            
            .about-hero-title {
                font-size: 36px;
            }
            
            .about-image-frame {
                height: 300px;
                max-width: 400px;
            }
            
            .values-section, .team-section, .story-section, .milestones-section {
                padding: 80px 20px;
            }
            
            .story-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .milestones-timeline::before {
                left: 30px;
            }
            
            .milestone {
                flex-direction: row !important;
            }
            
            .milestone-content {
                margin-left: 60px;
            }
            
            .milestone-marker {
                left: 30px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .about-hero-title {
                font-size: 32px;
            }
            
            .about-hero-subtitle {
                font-size: 15px;
            }
            
            .about-image-frame {
                height: 250px;
            }
            
            .value-card, .team-member {
                padding: 30px 20px;
            }
            
            .member-photo {
                width: 150px;
                height: 150px;
            }
        }


        
        /* Additional styles specific to the Blogs & News page */
        .blogs-hero {
            padding: 140px 40px 60px;
            background-color: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .blogs-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 60px;
        }
        
        .blogs-hero-content {
            flex: 1;
            max-width: 600px;
        }
        
        .blogs-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-gray);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .blogs-hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .blogs-hero-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .blogs-image-frame {
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        
        .blogs-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .content-toggle {
            padding: 60px 40px 0;
            background-color: var(--light-gray);
        }
        
        .toggle-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .toggle-buttons {
            display: inline-flex;
            background: var(--white);
            border-radius: 8px;
            padding: 6px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .toggle-btn {
            padding: 12px 30px;
            background: transparent;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .toggle-btn.active {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(62, 106, 225, 0.3);
        }
        
        .content-section {
            display: none;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .content-section.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .blogs-section {
            padding: 40px 40px 100px;
            background-color: var(--light-gray);
        }
        
        .blogs-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .news-section {
            padding: 40px 40px 100px;
            background-color: var(--light-gray);
        }
        
        .news-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .news-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .news-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 24px;
        }
        
        .news-category {
            display: inline-block;
            background: rgba(255, 107, 107, 0.1);
            color: #ff6b6b;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .news-card-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
            font-weight: 400;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }
        
        .news-date {
            color: var(--text-secondary);
        }
        
        .news-read-more {
            color: #ff6b6b;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .news-read-more:hover {
            color: #ff5252;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .blog-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 24px;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(62, 106, 225, 0.1);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .blog-card-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
            font-weight: 400;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }
        
        .blog-date {
            color: var(--text-secondary);
        }
        
        .blog-read-more {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .blog-read-more:hover {
            color: #2a4fb3;
        }
        
        .blog-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        .floating-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(62, 106, 225, 0.1);
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }
        
        .shape-1 {
            top: 10%;
            left: 5%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }
        
        .shape-2 {
            bottom: 15%;
            right: 8%;
            width: 120px;
            height: 120px;
            animation-delay: 2s;
        }
        
        .shape-3 {
            top: 40%;
            left: 80%;
            width: 60px;
            height: 60px;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        /* Responsive styles for Blogs & News page */
        @media screen and (max-width: 1024px) {
            .blogs-hero-title {
                font-size: 40px;
            }
            
            .blogs-hero-subtitle {
                font-size: 16px;
            }
            
            .blogs-image-frame {
                height: 350px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .blogs-hero {
                padding: 120px 20px 40px;
            }
            
            .blogs-hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .blogs-hero-content {
                max-width: 100%;
            }
            
            .blogs-hero-title {
                font-size: 36px;
            }
            
            .blogs-image-frame {
                height: 300px;
                max-width: 400px;
            }
            
            .content-toggle, .blogs-section, .news-section {
                padding: 40px 20px 80px;
            }
            
            .toggle-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
            }
            
            .toggle-btn {
                width: 100%;
            }
            
            .blog-grid, .news-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 480px) {
            .blogs-hero-title {
                font-size: 32px;
            }
            
            .blogs-hero-subtitle {
                font-size: 15px;
            }
            
            .blogs-image-frame {
                height: 250px;
            }
            
            .blog-content, .news-content {
                padding: 20px;
            }
        }
    
       
        .services-cta-section {
            position: relative;
            padding: 120px 40px;
            overflow: hidden;
            color: #333;
            background-size: cover;
            background-position: center;
            background: none;

=        }

        .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(8px);
            z-index: -2;
            transform: scale(1.1);
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: var(--accent);;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent););
            animation: pulse 2s infinite;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .cta-subtitle {
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.7s;
        }

        .cta-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 30px 20px;
            width: 200px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #333;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cta-feature:hover .feature-icon {
            transform: scale(1.1);
            background: var(--accent);
            color: #fff;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 14px;
            opacity: 0.8;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.9s;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            min-width: 180px;
            position: relative;
            overflow: hidden;
        }

        .cta-btn-primary {
            color: #fff;
            background: var(--accent);
            border: none;
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .cta-btn-secondary {
            background: none;
            color: #000;
            border: 2px solid #000;
            
        }

        .cta-btn-secondary:hover {
          
            transform: translateY(-3px);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 40%;
            right: 20%;
            animation-delay: 4s;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 30%;
            left: 5%;
            animation-delay: 1s;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .cta-title {
                font-size: 40px;
            }
            
            .cta-subtitle {
                font-size: 16px;
            }
        }

        @media screen and (max-width: 768px) {
            .services-cta-section {
                padding: 80px 20px;
            }
            
            .cta-title {
                font-size: 36px;
            }
            
            .cta-features {
                gap: 20px;
            }
            
            .cta-feature {
                width: 160px;
                padding: 20px 15px;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .feature-title {
                font-size: 16px;
            }
            
            .feature-description {
                font-size: 13px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 280px;
            }
        }

        @media screen and (max-width: 480px) {
            .cta-title {
                font-size: 32px;
            }
            
            .cta-subtitle {
                font-size: 15px;
            }
            
            .cta-features {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-feature {
                width: 100%;
                max-width: 280px;
            }
        }

        .cta-container-service {
            background-color: var(--white);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Additional styles specific to the Services page */
        .services-hero {
            padding: 140px 40px 60px;
            background-color: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .services-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 60px;
        }
        
        .services-hero-content {
            flex: 1;
            max-width: 600px;
        }
        
        .services-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-gray);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .services-hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .services-hero-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .services-image-frame {
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        
        .services-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .services-overview {
            padding: 100px 40px;
            background-color: var(--light-gray);
        }
        
        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .overview-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .overview-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .overview-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .overview-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            color: var(--accent);
            background: rgba(62, 106, 225, 0.1);
            border-radius: 50%;
        }
        
        .overview-title {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .overview-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 24px;
        }
        
        .overview-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .overview-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .overview-link:hover i {
            transform: translateX(5px);
        }
        
        .services-detailed {
            padding: 100px 40px;
            background-color: var(--white);
        }
        
        .detailed-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-detail {
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .service-detail.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-detail:last-child {
            margin-bottom: 0;
        }
        
        .service-header {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-icon-large {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--accent);
            background: rgba(62, 106, 225, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .service-info h2 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        
        .service-info p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 400;
            max-width: 600px;
        }
        
        .workflow-section {
            margin-top: 60px;
        }
        
        .workflow-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 30px;
            color: var(--text-primary);
            text-align: center;
        }
        
        .workflow-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 60px;
        }
        
        .workflow-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
            z-index: 1;
        }
        
        .workflow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 200px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(62, 106, 225, 0.3);
        }
        
        .step-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-primary);
            text-align: center;
        }
        
        .step-description {
            font-size: 14px;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.5;
        }
        
        .workflow-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .detail-box {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .detail-box.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .detail-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .detail-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(62, 106, 225, 0.1);
            color: var(--accent);
            border-radius: 50%;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .detail-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        
        .detail-content {
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 400;
        }
        
        .service-cta {
            text-align: center;
            margin-top: 50px;
            padding: 40px;
            background: var(--light-gray);
            border-radius: 12px;
        }
        
        .service-cta h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .service-cta p {
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .floating-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(62, 106, 225, 0.1);
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }
        
        .shape-1 {
            top: 10%;
            left: 5%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }
        
        .shape-2 {
            bottom: 15%;
            right: 8%;
            width: 120px;
            height: 120px;
            animation-delay: 2s;
        }
        
        .shape-3 {
            top: 40%;
            left: 80%;
            width: 60px;
            height: 60px;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        /* Responsive styles for Services page */
        @media screen and (max-width: 1024px) {
            .services-hero-title {
                font-size: 40px;
            }
            
            .services-hero-subtitle {
                font-size: 16px;
            }
            
            .services-image-frame {
                height: 350px;
            }
            
            .workflow-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            
            .workflow-steps::before {
                display: none;
            }
            
            .workflow-step {
                max-width: 150px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .services-hero {
                padding: 120px 20px 40px;
            }
            
            .services-hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .services-hero-content {
                max-width: 100%;
            }
            
            .services-hero-title {
                font-size: 36px;
            }
            
            .services-image-frame {
                height: 300px;
                max-width: 400px;
            }
            
            .services-overview, .services-detailed {
                padding: 80px 20px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .service-info h2 {
                font-size: 28px;
            }
            
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
            
            .workflow-step {
                max-width: 120px;
            }
            
            .workflow-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 480px) {
            .services-hero-title {
                font-size: 32px;
            }
            
            .services-hero-subtitle {
                font-size: 15px;
            }
            
            .services-image-frame {
                height: 250px;
            }
            
            .overview-card, .detail-box {
                padding: 25px 20px;
            }
            
            .service-info h2 {
                font-size: 24px;
            }
            
            .workflow-step {
                max-width: 100px;
            }
            
            .step-title {
                font-size: 14px;
            }
            
            .step-description {
                font-size: 12px;
            }
        }


        /* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 60px 0 20px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #ff6584);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6c63ff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #6c63ff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #6c63ff;
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: #6c63ff;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    color: #999;
    font-size: 14px;
}
/* Upwork social icon */
.social-link.upwork {
    background: rgba(20, 168, 0, 0.12); /* Upwork green soft bg */
    color: #14a800; /* Upwork brand green */
}

.upwork-icon {
    width: 18px;
    height: 18px;
    color: #14a800;
    transition: color 0.3s ease;
}

.social-link.upwork:hover .upwork-icon {
    color: #ffffff;
}


.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #6c63ff;
}

.separator {
    color: #666;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}




.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content p {
    margin: 0 0 15px 0;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #000;
}

.cookie-btn.accept:hover {
    background-color: #e0e0e0;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #555;
}

.cookie-btn.decline:hover {
    background-color: #222;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* Enhanced Philosophy Section - Now using Font Awesome icons instead of images */
.philosophy-section {
    padding: 120px 40px;
    background-color: var(--light-gray);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.philosophy-content {
    flex: 1;
    max-width: 650px;
}

.philosophy-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0 40px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.philosophy-title span {
    color: var(--accent);
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.block-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(62, 106, 225, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(62, 106, 225, 0.1);
}

.block-icon i {
    transition: transform 0.3s ease;
}



.philosophy-block p {
    flex: 1;
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.7;
}

.philosophy-block strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.philosophy-closing {
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
    color: var(--accent);
    text-align: center;
}

/* Image side */
.philosophy-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.philosophy-image-container .image-frame {
    width: 100%;
    max-width: 420px;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.philosophy-image-container .floating-element-1 {
    top: 8%;
    left: -15px;
    animation: float 4s ease-in-out infinite;
}

.philosophy-image-container .floating-element-2 {
    bottom: 8%;
    right: -20px;
    animation: float 4s ease-in-out infinite 2s;
}

.floating-icon {
    font-size: 24px;
    color: var(--accent);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .philosophy-title {
        font-size: 42px;
    }
    
    .philosophy-container {
        gap: 60px;
    }
}

@media screen and (max-width: 768px) {
    .philosophy-section {
        padding: 100px 20px;
    }
    
    .philosophy-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .philosophy-content {
        max-width: 100%;
    }
    
    .philosophy-title {
        font-size: 38px;
    }
    
    .philosophy-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .block-icon {
        margin-bottom: 15px;
    }
    
    .philosophy-image-container .image-frame {
        height: 500px;
        max-width: 100%;
    }
    
    .philosophy-image-container .floating-element-1,
    .philosophy-image-container .floating-element-2 {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .philosophy-title {
        font-size: 34px;
    }
    
    .philosophy-block p {
        font-size: 16px;
    }
    
    .philosophy-image-container .image-frame {
        height: 400px;
    }
}
/* Blogs Section Styles */
.blogs-section {
    padding: 120px 40px;
    background-color: #f9f9fb;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 32px;
}

.blog-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.blog-read-more {
    font-weight: 600;
    color: #3e6ae1; /* your accent color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blogs-cta {
    text-align: center;
}

.btn-view-more {
    display: inline-block;
    background: #3e6ae1;
    color: white;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}



.loading-text {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 60px 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .blogs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 100px 20px;
    }
    .section-title {
        font-size: 36px;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    .blog-content {
        padding: 28px;
    }
}



/* FAQ Section Styles */
.faq-section {
    padding: 100px 40px;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 60px;
    padding: 0;
    overflow: hidden;    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}



.faq-question {
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    background-color: var(--light-gray);
    transition: background-color 0.3s ease;
}



.question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
    margin-right: 30px;
}

.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(62, 106, 225, 0.1);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 600;
    margin-right: 16px;
    flex-shrink: 0;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .toggle-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: var(--light-gray);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.faq-item.active .faq-answer {
    padding-bottom: 28px;
    max-height: 500px;
}

.answer-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.answer-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* FAQ Call to Action */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(62, 106, 225, 0.05) 0%, rgba(62, 106, 225, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(62, 106, 225, 0.1);
}

.faq-cta-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.faq-cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Decorative Elements */
.faq-decorations {
    position: relative;
}

.faq-decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(62, 106, 225, 0.1) 0%, rgba(62, 106, 225, 0.05) 100%);
    top: -30px;
    left: -30px;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(62, 106, 225, 0.08) 0%, rgba(62, 106, 225, 0.03) 100%);
    bottom: -20px;
    right: -20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 80px 20px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 24px 20px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 24px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta-title {
        font-size: 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .faq-title {
        font-size: 32px;
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
    
    .question-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .toggle-icon {
        width: 32px;
        height: 32px;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

