/* Base Styles */
:root {
    --primary-color: #1E3A8A;
    --secondary-color: #ff6584;
    --text-color: #333;
    --text-light: #777;
    --background: #D6EFFF;
    --background-alt: #d6e6f2;
    --card-bg: #d6e6f2;
    --border-color: #eee;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

.dark-mode {
    --primary-color: #ff5c45;
    --secondary-color: #ff7c96;
    --text-color: #e4e4e4;
    --text-light: #aaa;
    --background: #121212;
    --background-alt: #1e1e1e;
    --card-bg: #252525;
    --border-color: #333;
    --shadow: 0 10px 30px rgba(0,0,0,0.2);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

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

section {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.5s;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: loadingAnimation 2s ease forwards;
}

@keyframes loadingAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    opacity: 0.8;
}

.cursor-follower {
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.link-grow {
    transform: scale(1.5);
    background-color: var(--secondary-color);
    opacity: 0.6;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    transform: translateY(-3px);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn.center {
    display: block;
    margin: 30px auto 0;
    max-width: 200px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    background-color: var(--background);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.logo span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links1 {
    display: flex;
    list-style: none;
}

.nav-links1 li {
    margin-left: 30px;
}

.nav-links1 a {
    font-weight: 500;
    position: relative;
}

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

.nav-links1 a:hover::after,
.nav-links1 a.active::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    color: var(--text-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 30px;
}

.theme-toggle i {
    position: absolute;
    transition: var(--transition);
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: translateY(20px);
}

.dark-mode .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-20px);
}

.dark-mode .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    margin-right: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    margin-top: 160px;
}

.hero-image .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -30px;
    left: 30px;
    z-index: -1;
    opacity: 0.2;
    animation: morphShape 15s linear infinite;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}
.scroll-indicator {
    margin-top: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    position: absolute;
    width: 4px;
    height: 8px;
    background-color: var(--text-color);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-color);
    border-right: 2px solid var(--text-color);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrowAnimation 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes arrowAnimation {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    background-color: var(--background-alt);
    padding: 80px 0;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Portfolio Section */
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    border-radius: 20px;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portfolio-img {
    position: relative;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 99, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    opacity: 1;
    transform: scale(1);
}

.portfolio-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    margin: 30px 0;
    flex-wrap: wrap;
}

.about-stat {
    margin-right: 40px;
}

.about-stat h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.about-stat p {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-alt);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    flex-shrink: 0;
}

.testimonial-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 30px;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-style: normal;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    pointer-events: none;
    transition: var(--transition);
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    border-bottom-color: var(--primary-color);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Footer Styles */
footer {
    background-color: var(--background-alt);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.subscribe-form {
    position: relative;
    margin-top: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 10px;
    padding-right: 50px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
}

.subscribe-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 40px;
    cursor: pointer;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-social a {
    color: var(--text-light);
    margin-left: 15px;
    transition: var(--transition);
}

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

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    position: relative;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform-origin: right;
}

.reveal-text.active::after {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;

    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        margin-top: 250px;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
        margin-right: 0;
    }
    
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    
    .nav-links1 {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--background);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    
    .nav-links1.active {
        left: 0;
    }
    
    .nav-links1 li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        max-width: 100%;
        
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content, .footer-links, .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-social {
        margin-top: 10px;
    }
    
    .footer-social a {
        margin: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Let's Talk Button and Overlay Styles */
.lets-talk-btn {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 1000;
    padding: 8px 16px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lets-talk-btn:hover {
    background-color: white;
    color: black;
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lets-talk-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 5%;
    height: 100%;
}

@media (min-width: 768px) {
    .overlay-content {
        flex-direction: row;
    }
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .nav-links {
        margin-bottom: 0;
    }
}

.nav-link {
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.overlay-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.overlay-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
.overlay-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
.overlay-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
.overlay-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }

.nav-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.6s;
}

.overlay-menu.active .contact-info {
    opacity: 1;
    transform: translateY(0);
}

.contact-link {
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link.phone {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address {
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Prevent scrolling when overlay is active */
body.overlay-active {
    overflow: hidden;
}

/* Dark mode adjustments */
.dark-mode .lets-talk-btn {
    color: white;
}

/* Services Section Styles */
.services-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: white;
}

.services-container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
}

.services-header {
    padding-top: 80px;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
}

.services-slider {
    position: relative;
    flex: 1;
    width: 100%;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.service-background-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.service-image-container {
    position: relative;
    width: 50%;
    height: 60%;
    transform: rotate(-10deg);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.service-text {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    transform: translateY(-50%);
    z-index: 3;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s, background-color 0.3s ease;
}

.service-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.plus-icon {
    margin-left: 8px;
    font-size: 1.2rem;
    font-weight: 300;
}

.service-slide.active .service-title,
.service-slide.active .service-description,
.service-slide.active .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-indicators {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 40px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #ff4b33;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-content {
        flex-direction: column;
    }
    
    .service-background-text {
        font-size: 20vw;
    }
    
    .service-image-container {
        width: 80%;
        height: 40%;
        margin-bottom: 40px;
    }
    
    .service-text {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        transform: none;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-header {
        padding-top: 60px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 120px 0;
    background-color: #d6e6f2; 
    position: relative;
    overflow: hidden;
    color: #1E3A8A;
}

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    margin-bottom: 80px;
}

.header-left {
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.count1 {
    font-size: 1.2rem;
    font-weight: 700;
}

.header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1E3A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.slider-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.testimonial-content {
    flex: 1;
}

.client-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.testimonial-quote {
    margin-bottom: 30px;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
}

.client-info {
    font-size: 1rem;
    color: #333;
}

.testimonial-image {
    flex: 0 0 300px;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 1;
}

/* Progress Bar */
.testimonials-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.progress-bar {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%; /* 1/4 for 4 testimonials */
    background-color: #fff;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.progress-numbers {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.current {
    font-weight: 700;
}

.separator, .total {
    opacity: 0.7;
}

/* Background Elements */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1E3A8A; 
    transform-origin: right;
}

.reveal-text.active::after {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-left, .header-center, .header-right {
        text-align: center;
    }
    
    .header-right {
        justify-content: center;
    }
    
    .testimonial-item {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .testimonial-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .header-center h2 {
        font-size: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-center h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-image img {
        height: 350px;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-top: 100px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .btn.primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Founder Quote Section Styles */
.founder-quote-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.quote-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Founder Image Styles */
.founder-image {
    flex: 0 0 300px;
    position: relative;
    margin-top: -400px;
}

.image-container1 {
    width: 500px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

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

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

.image-decoration {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.founder-image:hover .image-decoration {
    transform: translate(5px, -5px);
}

/* Quote Content Styles */
.quote-content {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-color);
    font-style: italic;
}

.founder-info {
    margin-bottom: 20px;
}

.founder-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.founder-info span {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: underline;
}

.founder-signature {
    max-width: 300px;
    margin-top: -100px;
}

.founder-signature img {
    width: 100%;
    height: auto;
}

/* Background Elements */
.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape1 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 75, 51, 0.05);
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: 10%;
    animation: floatAnimation 8s infinite alternate ease-in-out;
}

.shape-4 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 5%;
    animation: floatAnimation 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform-origin: right;
}

.reveal-text.active::after {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .quote-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .founder-image {
        flex: 0 0 auto;
        width: 250px;
        margin: 0 auto;
    }
    
    .image-container1 {
        height: 350px;
        width: 200px;
    }
    
    .image-decoration {
        left: -10px;
    }
    
    .quote-icon {
        text-align: center;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
    
    .founder-signature {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .founder-quote-section {
        padding: 60px 0;
    }
    
    blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .founder-image {
        width: 200px;
    }
    
    .image-container1 {
        height: 280px;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid #ddd;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    color: #333;
}

/* Enhanced Blog Preview Section Styles */
.blog-preview {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    overflow: hidden;
  }
  
  /* Enhanced Section Header */
  .blog-preview .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  
  .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
  }
  
  .section-tag.reveal-text.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .blog-preview .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .blog-preview .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }
  
  .section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.8s ease;
  }
  
  .section-line.active {
    transform: scaleX(1);
  }
  
  /* Enhanced Blog Preview Grid */
  .blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .blog-preview-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
  }
  
  .blog-preview-card.reveal.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .blog-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  /* Enhanced Image Section */
  .blog-preview-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(255, 101, 132, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .blog-preview-card:hover .image-overlay {
    opacity: 1;
  }
  
  .read-more-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  
  .blog-preview-card:hover .read-more-btn {
    transform: scale(1);
  }
  
  /* Enhanced Content Section */
  .blog-preview-content {
    padding: 30px;
  }
  
  .blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  
  .category {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .category.design {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
  }
  
  .category.ux {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
  }
  
  .category.development {
    background: rgba(45, 206, 137, 0.1);
    color: #2dce89;
  }
  
  .date,
  .reading-time {
    font-size: 0.85rem;
    color: var(--text-light);
  }
  
  .blog-preview-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .blog-preview-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-preview-content h3 a:hover {
    color: var(--primary-color);
  }
  
  .blog-preview-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Author Info */
  .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
  }
  
  /* Enhanced CTA Section */
  .blog-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--card-bg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .blog-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(255, 101, 132, 0.05));
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  
  .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-buttons .btn.primary {
    background: var(--primary-color);
    color: white;
  }
  
  .cta-buttons .btn.secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
  }
  
  .cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
  }
  
  .cta-buttons .btn.secondary:hover {
    background: var(--primary-color);
    color: white;
  }
  
  /* Background Elements */
  .blog-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  
  .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(255, 101, 132, 0.05));
  }
  
  .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 15s infinite alternate ease-in-out;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 20s infinite alternate-reverse ease-in-out;
  }
  
  .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 12s infinite alternate ease-in-out;
  }
  
  @keyframes float {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    100% {
      transform: translate(30px, 30px) rotate(10deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .blog-preview {
      padding: 80px 0;
    }
  
    .blog-preview .section-header h2 {
      font-size: 2.5rem;
    }
  
    .blog-preview-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 768px) {
    .blog-preview {
      padding: 60px 0;
    }
  
    .blog-preview .section-header h2 {
      font-size: 2rem;
    }
  
    .blog-preview-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .blog-preview-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
    .blog-cta {
      padding: 40px 20px;
    }
  
    .cta-content h3 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .blog-preview-image {
      height: 200px;
    }
  
    .blog-preview-content {
      padding: 20px;
    }
  
    .blog-preview-content h3 {
      font-size: 1.2rem;
    }
  }
  