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

:root {
    --primary-color: #ff324d;
    --secondary-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 3vh;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-content {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    border-radius: 50px;
}

.nav-content .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0;
    font-weight: bold;
    color: var(--text-dark);
}

.logo img {
    height: 35px;
    width: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    position: absolute;
    right: 0;
}

/* Hero Section */
.hero {
    padding: 10px 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    background-color: #ffffff;
    background-image: 

        url('../heroimg.png');
    background-size: 80%;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 70vh;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    left: 31vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 0;
    margin-top: 2rem;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 40vh;
}

.hero-content {
    animation: fadeInUp 1s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.hero-buttons {
    display: flex;
    justify-content: space-between;
    width: 130%;
    gap: 5rem;
    position: relative;
    right: 13vh;
}

.btn {
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #e62a43;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.hero-image {
    position: relative;
    height: 400px;
}


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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* GIF Divider */
.gif-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: -40px;
    background-color: var(--secondary-color);
    margin-bottom: 10vh;
}

.gif-divider img {
    max-width: 150vh;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Featured Products */
.featured-products {
    padding: 0 0 80px 0;
    background-image: url('../images/ss.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1vh;
    position: relative;
    padding-top: 10vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 3rem;
    justify-content: center;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    border: 2px solid #ececec;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 400px;
}

.product-card::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(58, 208, 213, 0) 20%,
        var(--primary-color) 50%, 
        rgba(58, 79, 213, 0) 80%,
        transparent 100%);
    border-radius: 4px;
    opacity: 0.8;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 50, 77, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px 10px 0 0;
}

.product-image-slider {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1vh;
    padding: 0.3vh 0.5vh;
    z-index: 2;
}

.indicator {
    width: 32px;
    height: 4px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 40px;
}

.indicator:hover {
    background: rgba(255, 50, 77, 0.5);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
    text-align: center;
}

.product-card:hover h3 {
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.3rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 50, 77, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-feature:hover {
    background: rgba(255, 50, 77, 0.06);
    transform: translateX(5px);
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(145deg, rgba(255, 50, 77, 0.15), rgba(255, 50, 77, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
    text-align: left;
}

.product-buy-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.product-buy-btn:hover {
    transform: translateY(-3px);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.pricing-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: #e62a433f;
    padding: 1rem;
    border-radius: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 0.7rem 2rem;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0);
    color: var(--primary-color);
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

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

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 50, 77, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 420px);
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid #ececec;
}

.pricing-card.hide {
    display: none;
}

.pricing-image {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    gap: 1rem;
}

.pricing-image::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.726) 60%,
        rgba(255, 255, 255, 0.884) 80%,
        rgb(255, 255, 255) 100%);
    z-index: 1;
}

.pricing-logo {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pricing-image-text {
    position: relative;
    z-index: 2;
    text-align: left;
}

.pricing-image-text h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.308), 0 1px 3px rgba(0, 0, 0, 0.445);
}

.pricing-image-text p {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
}

.pricing-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.btn-choose {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0.8rem 0;
    display: block;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

.pricing-card::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(58, 208, 213, 0) 20%,
        var(--primary-color) 50%, 
        rgba(58, 79, 213, 0) 80%,
        transparent 100%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 50, 77, 0.3);
}

.pricing-card:hover::after {
    opacity: 0.8;
}


.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.price {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.2rem;
}

.currency {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.amount {
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.pricing-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    border: none;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 50, 77, 0.3);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.before-after-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.portfolio .container {
    max-width: 85%;
    padding: 0;
}

.portfolio-item {
    background: transparent;
    transition: all 0.3s ease;
    overflow: visible;
}

.portfolio-item.large {
    height: 450px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid #ececec;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.portfolio-item.small {
    display: flex;
    flex-direction: column;
}

.portfolio-item.small .behance-embed {
    height: 400px;
    border-radius: 0;
    overflow: hidden;
}

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

.portfolio-item.large:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 50, 77, 0.3);
}

.project-info {
    padding: 1rem 0.5rem;
    background: transparent;
}

.project-category {
    display: block;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.project-info h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-stats i {
    font-size: 0.75rem;
    color: var(--text-light);
}

.floating-see-more {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    overflow: hidden;
}

.floating-see-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-see-more:hover::before {
    width: 300px;
    height: 300px;
}

.floating-see-more:hover {
    transform: translateX(-5px);
    padding-right: 1.5rem;
}

.see-more-text {
    position: relative;
    z-index: 1;
}

.see-more-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.floating-see-more:hover .see-more-icon {
    transform: translateX(5px) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-full-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ff324d;
    border: 2px solid #ff324d;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.view-full-portfolio:hover {
    background: #ff324d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.view-full-portfolio i {
    transition: transform 0.4s ease;
}

.view-full-portfolio:hover i {
    transform: translateX(5px);
}

.juxtapose-wrapper,
.behance-embed {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.juxtapose-wrapper iframe,
.behance-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: auto;
}

.portfolio-info {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.portfolio-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.see-more-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 50, 77, 0.3);
    margin-bottom: 1rem;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    color: var(--text-dark);
    padding: 60px 0 20px;
    border-top: 2px solid #ececec;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    border: 2px solid #ececec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), #ff5a6e);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 50, 77, 0.3);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #ececec;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

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

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

    .hero-image {
        height: 300px;
    }

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

    .products-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
