/* Global Styles */
:root {
    --primary-color: #3B82F6;
    --secondary-color: #6366F1;
    --accent-color: #0EA5E9;
    --text-color: #1E293B;
    --light-text: #64748B;
    --background: #ffffff;
    --section-bg: #F8FAFC;
    --logo-gradient-start: #3B82F6;
    --logo-gradient-middle: #6366F1;
    --logo-gradient-end: #0EA5E9;
    --logo-shadow: rgba(59, 130, 246, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --neon-glow: 0 0 10px rgba(59, 130, 246, 0.5);
    --card-hover-transform: translateY(-10px) scale(1.02);
}

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

body {
    cursor: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Meme Sidebar Styles */
.meme-sidebar {
    position: fixed;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 15px 15px 0;
    transition: left 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.meme-sidebar.active {
    left: 0;
}

.meme-toggle-btn {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.meme-toggle-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.meme-nav ul {
    list-style: none;
    padding: 20px;
}

.meme-link {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.meme-link:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: white;
}

.meme-icon {
    font-size: 24px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.meme-link:hover .meme-icon {
    transform: rotate(360deg);
}

.meme-text {
    font-size: 14px;
    font-weight: 500;
}

.meme-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.meme-link:hover .meme-hover {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .meme-sidebar {
        width: 250px;
        left: -250px;
    }
    
    .meme-text {
        font-size: 12px;
    }
    
    .meme-hover {
        font-size: 12px;
    }
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 100px;
}

.animated-background {
    position: absolute;
  width: 100%;
    height: 100%;
    background-color: #DFDBE5;
    background: url('../img/pattern1.jpg');
    opacity: 0.1;
    animation: float 20s linear infinite; 
}

.hero-content {
    text-align: center;
    color:white;
    padding: 2rem;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Horizontal Scroll Section */
.horizontal-scroll {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    background: var(--section-bg);
}

.scroll-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    animation: scrollX 50s linear infinite;
    width: max-content; /* Important for continuous scroll */
}

/* Pause animation on hover */
.scroll-container:hover {
    animation-play-state: paused;
}

.scroll-item {
    flex: 0 0 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.scroll-item:hover img {
    transform: scale(1.1);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.scroll-item:hover .caption {
    transform: translateY(0);
}

/* Scroll Animation */
@keyframes scrollX {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 4.5)); /* Adjust based on number of items */
    }
}

.scroll-container > * {
    flex: 0 0 auto;
}

/* Add gradient masks for smooth fade effect */
.horizontal-scroll::before,
.horizontal-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.horizontal-scroll::before {
    left: 0;
    background: linear-gradient(90deg, var(--section-bg) 0%, transparent 100%);
}

.horizontal-scroll::after {
    right: 0;
    background: linear-gradient(-90deg, var(--section-bg) 0%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-item {
        flex: 0 0 250px;
    }
    
    .scroll-item img {
        height: 160px;
    }
    
    @keyframes scrollX {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 4.5));
        }
    }
}

/* Journey Section */
.journey-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.journey-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.journey-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
}

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

.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: var(--card-hover-transform);
    color: white;
}

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

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  position: relative;
    z-index: 2;
}

.service-item:hover .service-icon i {
    transform: scale(1.2);
}

/* Clients Section */
.clients-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.client-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-bg);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.client-card:hover .client-logo {
    transform: scale(1.1);
}

.client-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
          align-items: center;
          justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.hover-content {
    color: white;
    text-align: center;
}

.hover-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.special-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.special-card .client-logo i {
    font-size: 3rem;
    color: white;
}

.client-cta-button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 2rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.cta-content {
    color: #6366f1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin: 1rem 0 2rem;
}

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

.cta-feature {
    text-align: center;
    padding: 1rem;
    background: aliceblue;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.cta-feature i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modern-cta-button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.modern-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* Blog Section */
.blog-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.blog-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.blog-card {
    flex: 0 0 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.about-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 300px;
}

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

#graphic_designer::before {
    background-position-y: 0% !important;
    background: url(../img/dr_strange.png) no-repeat center / cover;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

#frontend_devloper::before {
      background-position-y: 0% !important;
      background: url(../img/spider_man.png) no-repeat center / cover;
      background-color: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

#software_devloper::before {
      background-position-y: 0% !important;
      background: url(../img/iron_man.png) no-repeat center / cover;
      background-color: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}
.team-member:hover .member-image::before {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-social a {
    transform: translateY(0);
    opacity: 1;
}

.member-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
}

/* Staggered animation for social icons */
.member-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.member-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.member-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.member-info {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.member-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
  display: block;
    margin-bottom: 10px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
          justify-content: center;
    margin-top: 15px;
}

.member-skills span {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-member:hover .member-skills span {
    background: var(--primary-color);
    color: #ffffff;
}

/* Modern Button Styles */
.modern-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.modern-button:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
    }

    .cta-image {
        order: -1;
    }

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

    .cta-features {
        grid-template-columns: 1fr;
    }

    .member-image {
        height: 250px;
    }
    
    .member-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-skills span {
        font-size: 0.8rem;
    }
}

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

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Meme Search Styles */
.meme-search {
    padding: 15px;
  position: relative;
}

.meme-search-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.meme-search-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    transform: scale(1.02);
}

.meme-search-results {
  position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.meme-search-results.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.meme-result-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  display: flex;
          align-items: center;
    gap: 10px;
}

.meme-result-item:hover {
    background: var(--section-bg);
    transform: translateX(5px);
}

.meme-result-icon {
    font-size: 20px;
}

.meme-helper-text {
    text-align: center;
    font-size: 12px;
    color: var(--light-text);
    padding: 0 15px 10px;
    font-style: italic;
}

.highlight-section {
  position: relative;
}

.highlight-section::after {
    content: '👈 You are here!';
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    animation: bounce 1s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-60%);
    }
}

.meme-message {
  position: fixed;
    bottom: 20px;
  left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
  opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
  opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Floating Menu Helper Styles */
.floating-menu-helper {
  position: fixed;
    bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.helper-content {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.helper-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.helper-icon {
    font-size: 24px;
    color: white;
    margin-right: 12px;
    animation: float 2s infinite;
}

.helper-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    height: 20px;
}

.default-text,
.hover-text {
    position: absolute;
  width: 100%;
    transition: transform 0.3s ease;
}

.hover-text {
    transform: translateY(100%);
}

.helper-content:hover .default-text {
    transform: translateY(-100%);
}

.helper-content:hover .hover-text {
    transform: translateY(0);
}

.helper-bubble {
    position: absolute;
    background: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    top: -45px;
    right: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.helper-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent-color);
}

.floating-menu-helper.show-bubble .helper-bubble {
    opacity: 1;
    transform: translateY(0);
}

.floating-menu-helper.pointing-menu {
    transform: translateX(-150px);
}

.floating-menu-helper.pointing-menu .helper-icon {
    animation: point-left 1s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes point-left {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.floating-menu-helper.merging {
    animation: merge-with-menu 0.8s forwards;
}

@keyframes merge-with-menu {
    0% {
        transform: translateX(0);
    opacity: 1;
    }
    50% {
        transform: translateX(-200px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-400px);
    opacity: 0;
    }
}

/* Add sparkle effect for menu activation */
.menu-sparkle {
    position: absolute;
    pointer-events: none;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: sparkle 0.8s linear forwards;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
    opacity: 1;
    }
    100% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0;
    }
}

/* Mobile responsiveness for helper */
@media (max-width: 768px) {
    .floating-menu-helper {
        bottom: 20px;
    right: 20px;
    }

    .helper-content {
        padding: 12px 20px;
    }

    .helper-text {
        font-size: 12px;
    }
}

/* Logo Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
          align-items: center;
}

.logo {
    width: 220px;
    height: 65px;
  position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-svg {
  width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px var(--logo-shadow));
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text-light {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 400;
    fill: var(--text-color);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 1rem;
    color: var(--light-text);
    margin-top: 0.4rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* Logo Animation */
@keyframes logoGradient {
    0% {
        stop-color: var(--logo-gradient-start);
    }
    33% {
        stop-color: var(--logo-gradient-middle);
    }
    66% {
        stop-color: var(--logo-gradient-end);
  }
  100% {
        stop-color: var(--logo-gradient-start);
    }
}

#logo-gradient stop {
    animation: logoGradient 6s infinite;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 3px var(--logo-shadow));
}

/* Mobile Responsive Logo */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

    .logo {
        width: 180px;
        height: 50px;
    }

    .logo-text, .logo-text-light {
        font-size: 28px;
    }

    .logo-tagline {
        font-size: 0.85rem;
    }
}

/* Custom Cursor Styles */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
  border-radius: 50%;
    position: fixed;
    pointer-events: none;
  z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
  pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Cursor hover effects */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(1.5);
    background: rgba(59, 130, 246, 0.1);
    mix-blend-mode: difference;
}

.custom-cursor.clicking {
    transform: scale(0.8);
    background: var(--primary-color);
}

.cursor-dot.clicking {
    transform: scale(1.5);
}

/* Hide default cursor on specific elements */
a, button, .meme-link, .client-card, .service-card, .team-member {
    cursor: none;
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
  text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
  border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero-wrapper {
    position: relative;
    height: 100vh;
  display: flex;
          align-items: center;
          justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 100px;
}

/* Mission Section */
.mission-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mission-card:hover i {
    transform: rotate(360deg);
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
  width: 100%;
  height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover::before {
    opacity: 0.1;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  position: relative;
    z-index: 2;
}

.service-item:hover .service-icon i {
    transform: scale(1.2);
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

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

/* Values Section */
.values-section {
    padding: 6rem 2rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: rotate(360deg) scale(1.1);
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta-section .modern-cta-button {
    background: white;
    color: var(--primary-color);
    margin-top: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mission-cards,
    .service-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-cta-section h2 {
        font-size: 2rem;
    }
}
.logo {
    width: 480px;
    height: 60px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-text-light {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 400;
}

/* Tablet Screens */
@media (max-width: 1024px) {
    .logo {
        width: 320px;
        height: 50px;
    }

    .logo-text, .logo-text-light {
        font-size: 80px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .logo {
        width: 250px;
        height: 45px;
    }

    .logo-text, .logo-text-light {
        font-size: 90px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .logo {
        width: 180px;
        height: 40px;
    }

    .logo-text, .logo-text-light {
        font-size: 90px;
    }
}

/* Testimonial Page Styles */
.testimonial-hero-wrapper {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 100px;
}

/* Featured Testimonials */
.featured-testimonials {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

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

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 1;
    transform: rotate(360deg);
}

.client-info {
  display: flex;
          align-items: center;
    margin-top: 2rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

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

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

.client-details h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.client-details span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    color: #FFD700;
}

/* Video Testimonials */
.video-testimonials {
    padding: 6rem 2rem;
}

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

.video-card {
  position: relative;
    border-radius: 20px;
  overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-thumbnail {
  position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-thumbnail img {
  position: absolute;
    top: 0;
    left: 0;
  width: 100%;
    height: 100%;
     object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-card:hover .play-button {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .play-button i {
    color: white;
}

.video-info {
    padding: 1.5rem;
    background: white;
}

/* Testimonial Wall */
.testimonial-wall {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.testimonial-masonry {
    columns: 3;
    column-gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    break-inside: avoid;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
          align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
  border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-meta h4 {
  margin: 0;
    font-size: 1rem;
}

.testimonial-footer {
  display: flex;
    justify-content: space-between;
          align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Success Stories */
.success-stories {
    padding: 6rem 2rem;
}

.story-slider {
    margin-top: 3rem;
  overflow: hidden;
}

.story-card {
    background: white;
    border-radius: 20px;
  overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.story-image {
    flex: 0 0 40%;
  position: relative;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 2rem;
}

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

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

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

/* Testimonial CTA */
.testimonial-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-masonry {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .testimonial-masonry {
        columns: 1;
    }

    .story-card {
        flex-direction: column;
    }

    .story-image {
  width: 100%;
  padding-top: 56.25%;
}

    .story-image img {
  position: absolute;
  top: 0;
  left: 0;
    }
}

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

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

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--glass-shadow), var(--neon-glow);
}

/* Advanced Button Styles */
.modern-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  transition: all 0.3s ease;
}

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

.modern-button:hover::before {
    left: 100%;
}

/* Floating Elements Animation */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

/* Interactive Service Cards */
.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
    content: '';
  position: absolute;
  top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: var(--card-hover-transform);
    color: white;
}

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

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.2) rotate(360deg);
}

/* 3D Transform Effects */
.transform-3d {
    perspective: 1000px;
}

.transform-3d-card {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.transform-3d-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Animated Gradient Border */
.gradient-border {
    position: relative;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.gradient-border::before {
    content: '';
  position: absolute;
  top: 0;
    left: 0;
  right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Neon Text Effect */
.neon-text {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color),
                 0 0 10px var(--primary-color),
                 0 0 20px var(--primary-color);
}

/* Animated Background */
.animated-bg {
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Interactive Stats Counter */
.stat-counter {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stat-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Scrolling */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tools-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.tools-section .section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.tool-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.tool-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tool-link:hover {
    color: #2980b9;
}

.tools-cta {
    text-align: center;
    margin-top: 50px;
}

.tools-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-section {
        padding: 40px 0;
    }
}