@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #FF6B19;
    /* Orange from the logo */
    --primary-light: #FFF0E6;
    /* Very light orange for backgrounds */
    --primary-dark: #D94C00;
    /* Darker orange for hover states */
    --secondary-color: #FFEEE0;
    /* Light orange/peach */
    --dark-color: #2D2D2D;
    /* Dark gray for text */
    --light-color: #FFFFFF;
    /* White */
    --gray-color: #F8F9FA;
    /* Light gray for sections */
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
    position: relative;
    width: 100%;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 25, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 25, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 107, 25, 0.1);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

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

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

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover, .cta-button.active {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 25, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(135deg, var(--light-color) 70%, var(--primary-light) 100%);
    overflow: hidden;
}

.enso-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    opacity: 0.03;
    z-index: 0;
}

.orange-blob {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 10px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    color: #525252;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.hero-img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-img:hover img {
    transform: scale(1.03);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
    z-index: 2;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.card-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 14px;
    color: #666;
}

.floating-card-right {
    position: absolute;
    top: 40px;
    right: -20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
    z-index: 2;
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background-color: var(--gray-color);
    position: relative;
}

.clients-title {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Services Section */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-blob {
    position: absolute;
    left: -200px;
    top: 50%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-icon img {
    width: 35px;
    height: auto;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-features {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
}

.feature-text {
    font-size: 15px;
    color: #555;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    background: var(--primary-color);
    opacity: 0.04;
    border-radius: 50%;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.service-card:hover .service-bg {
    transform: scale(1.5);
    opacity: 0.06;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.about-enso {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    opacity: 0.03;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-img-container {
    position: relative;
    z-index: 1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 140px;
    height: 140px;
    z-index: 2;
}

.exp-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 107, 25, 0.05);
    border-radius: 20px;
    z-index: 0;
}

.about-text {
    position: relative;
}

.about-subtitle {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-title span {
    color: var(--primary-color);
    position: relative;
}

.about-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.about-description {
    margin-bottom: 30px;
    color: #555;
}

.about-features {
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.about-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature-text p {
    font-size: 15px;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 24px;
    color: var(--primary-color);
}

.stat-text {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.portfolio-header-text {
    max-width: 600px;
}

.portfolio-filters {
    display: flex;
    gap: 15px;
}

.portfolio-filter {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.portfolio-filter:hover:not(.active) {
    background: rgba(255, 107, 25, 0.1);
    border-color: rgba(255, 107, 25, 0.1);
}

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

.portfolio-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.portfolio-card:hover .portfolio-icon {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

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

.portfolio-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.portfolio-link:hover {
    gap: 12px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.testimonial-enso {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    opacity: 0.03;
    z-index: 0;
}

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

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text {
    margin-bottom: 25px;
    font-style: italic;
    color: #444;
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #FFD700;
    font-size: 18px;
}

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

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

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

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.cta-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -100px;
    left: 50px;
    z-index: 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text {
    max-width: 600px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-title span {
    color: var(--primary-color);
    position: relative;
}

.contact-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.contact-description {
    color: #555;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-text p {
    color: #555;
    font-size: 16px;
}

.social-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 25, 0.2);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.form-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 107, 25, 0.03);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.form-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 25, 0.1);
    background-color: white;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 25, 0.2);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 25, 0.3);
}

/* Footer */
footer {
    background-color: #202020;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-enso {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    opacity: 0.03;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.footer-logo-text span {
    color: #FF6B19;
}

.footer-description {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #aaa;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

.footer-link:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-contact-text {
    color: #aaa;
    font-size: 15px;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Ubuntu', sans-serif;
}

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

.newsletter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

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

.copyright {
    color: #aaa;
    font-size: 14px;
}

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

.footer-bottom-link {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--dark-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-link {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    display: block;
}

.mobile-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 40px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title,
    .about-title,
    .contact-title,
    .cta-title {
        font-size: 36px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: -1;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-header {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

    .cta-container {
        padding: 60px 40px;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title,
    .about-title,
    .contact-title,
    .cta-title {
        font-size: 30px;
    }

    .portfolio-grid,
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        flex-wrap: wrap;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .logo-circle {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .clients-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .client-logo {
        max-width: 120px;
        height: 50px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 32px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-img {
        width: 38px;
        height: 38px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .service-bg {
        width: 150px;
        height: 150px;
        bottom: -75px;
        right: -75px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .logo-circle {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .footer-logo-img {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
}

/* Services Page Specific Styles */
.services-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--light-color) 70%, var(--primary-light) 100%);
    overflow: hidden;
    width: 100%;
}

.services-hero .orange-blob {
    right: -200px;
}

.services-hero .enso-background {
    width: 500px;
    right: 0;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.services-page .service-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.services-page .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.services-page .service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-page .service-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-page .service-features {
    margin-bottom: 20px;
}

.services-page .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.services-page .feature-icon {
    width: 20px;
    height: 20px;
}

.services-page .service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-page .service-link:hover {
    color: var(--primary-dark);
}

.services-page .service-link img {
    transition: transform 0.3s ease;
}

.services-page .service-link:hover img {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.process-section .section-title span {
    color: var(--primary-color);
    position: relative;
}

.process-section .section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: rgba(255, 107, 25, 0.2);
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(255, 107, 25, 0.15);
}

.process-content {
    padding-top: 10px;
}

.process-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Technologies Section */
.technologies-section {
    padding: 120px 0;
    background-color: var(--light-color);
    position: relative;
}

.technologies-section .section-title span {
    color: var(--primary-color);
    position: relative;
}

.technologies-section .section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.tech-categories {
    margin-top: 60px;
}

.tech-category {
    margin-bottom: 50px;
}

.tech-category h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 25px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

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

.tech-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon img {
    width: 40px;
    height: auto;
}

.tech-name {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--gray-color);
    position: relative;
}

.faq-section .section-title span {
    color: var(--primary-color);
    position: relative;
}

.faq-section .section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(255, 107, 25, 0.2);
    z-index: -1;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    max-width: 90%;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-question.active {
    background-color: var(--primary-light);
}

.faq-question.active h3 {
    color: var(--primary-color);
}

.faq-question.active .faq-toggle {
    background-color: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

/* Animation Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

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

@keyframes drawCircle {
  0% { stroke-dashoffset: 283; }
  100% { stroke-dashoffset: 0; }
}

/* SVG Animations */
.logo-circle img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-circle img {
  transform: rotate(180deg);
}

.enso-background img {
  animation: pulse 6s infinite ease-in-out;
}

.floating-card {
  animation: float 4s infinite ease-in-out;
}

.floating-card-right {
  animation: float 4s infinite ease-in-out 1s;
}

.service-icon img {
  transition: transform 0.4s ease;
}

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

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

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

.reveal-delay-1 {
  transition-delay: 0.2s;
}

.reveal-delay-2 {
  transition-delay: 0.4s;
}

.reveal-delay-3 {
  transition-delay: 0.6s;
}

/* Improved Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

/* Hero SVG Animation */
.hero-image img {
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* Portfolio Card Animations */
.portfolio-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.portfolio-overlay {
  transition: opacity 0.3s ease;
}

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

.portfolio-icon {
  transition: transform 0.3s ease;
}

.portfolio-image:hover .portfolio-icon {
  transform: scale(1.2);
}

/* Testimonial Card Animation */
.testimonial-card {
  transition: transform 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Social Media Icons Animation */
.social-link svg, .footer-social-link {
  transition: transform 0.3s ease;
}

.social-link:hover svg, .footer-social-link:hover {
  transform: scale(1.15);
}

.social-link circle {
  transition: fill-opacity 0.3s ease;
}

.social-link:hover circle {
  fill-opacity: 0.2;
}

/* WebGL Animation */
.webgl-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  background-color: var(--gray-color);
  padding: 160px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.cta-webgl-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  opacity: 0.8;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Career Form Styles */
.career-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.career-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.career-form input[type="file"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.featured-project-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
}

.featured-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 830px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

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

.featured-details {
    flex: 1;
    min-width: 300px;
}

.featured-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.featured-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.featured-info-item p {
    font-size: 15px;
    color: var(--dark-color);
}

.featured-description p {
    margin-bottom: 20px;
    color: #555;
}

.featured-results {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.featured-results h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.featured-results ul {
    padding-left: 20px;
}

.featured-results li {
    margin-bottom: 10px;
    color: #555;
}

.case-study-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.case-study-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 25, 0.2);
}

@media (max-width: 991px) {
    .featured-image {
        width: 100% !important;
    }
    
    .featured-image img {
        max-height: 320px;
    }
    
    .featured-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-image img {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .featured-image img {
        max-height: 220px;
    }
    
    .featured-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}