* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
  }
  
  
/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
    text-decoration: none;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, transparent);
}

.logo {
    display: flex;
    direction: row;
    align-items: center;
}

.logo img {
    width: 4.3vw;
    height: auto;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #4CAF50;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}



/* Hero Section Styles */
.hero {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 1;
    position: relative;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.2);
    animation: float 3s ease-in-out infinite;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .learnmore-button {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .learnmore-button {
    color: #fff;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 15px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, transparent);
    transform: translateY(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.rating::after {
    content: '';
    position: absolute;
    right: -20px;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #4CAF50, transparent);
}

.google-logo {
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-score {
    display: flex;
    flex-direction: column;
}

.score {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars {
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.users-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.count {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    font: bold;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.image-wrapper {
    position: relative;
    padding: 20px;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: rotateY(-5deg) rotateX(5deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper:hover .hero-img {
    transform: rotateY(0deg) rotateX(0deg);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.floating-badge.top {
    top: 0;
    right: 40px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    animation: floatTop 4s ease-in-out infinite;
}

.floating-badge.bottom {
    bottom: 0;
    left: 40px;
    background: white;
    color: #333;
    animation: floatBottom 4s ease-in-out infinite;
}

@keyframes floatTop {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatBottom {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(10px) rotate(-2deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        position: relative;
        display: block; /* Allow natural flow */
    }

    .hero-text {
        display: block; /* Natural flow for children */
        position: relative;
        z-index: 1; /* Ensure text stays above image */
    }

    .highlight-badge {
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 20px; /* Space for image to follow */
    }

    .hero-image {
        position: relative; /* Changed from absolute to relative */
        width: 100%;
        margin: 0; /* Adjust spacing */
        z-index: 0; /* Ensure image stays below text */
        order: 2; /* Ensure it comes after hero-text */
    }

    .subtitle {
        margin-top: 20px; /* Space after image */
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }

    .description {
        margin: 20px 0;
    }

    .trust-indicators {
        margin: 20px 0;
    }

    .cta-buttons {
        flex-direction: column;
        margin: 20px 0;
    }

    .btn {
        text-align: center;
    }

    .floating-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .floating-badge {
        display: none;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
    }

    .rating::after {
        display: none;
    }
}

/*Services*/
#container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#services {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff, #f8f9fa, #fff);
}

#services-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

#services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

#divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto 20px;
    border-radius: 2px;
}

#services-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

#services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#service-card-1, #service-card-2, #service-card-3, #service-card-4, #service-card-5, #service-card-6 {
    background: linear-gradient(180deg, #fff, #f8f9fa);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

#service-card-1.animate, #service-card-2.animate, #service-card-3.animate, #service-card-4.animate, #service-card-5.animate, #service-card-6.animate {
    opacity: 1;
    transform: translateX(0);
}

#service-card-2, #service-card-4, #service-card-6 {
    transform: translateX(100px);
}

#service-card-2.animate, #service-card-4.animate, #service-card-6.animate {
    transform: translateX(0);
}

#service-content-1, #service-content-2, #service-content-3, #service-content-4, #service-content-5, #service-content-6 {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

#service-image-1, #service-image-2, #service-image-3, #service-image-4, #service-image-5, #service-image-6 {
    flex: 1;
    max-width: 600px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#service-image-1:hover, #service-image-2:hover, #service-image-3:hover, #service-image-4:hover, #service-image-5:hover, #service-image-6:hover {
    transform: scale(1.02);
}

#service-image-1 img, #service-image-2 img, #service-image-3 img, #service-image-4 img, #service-image-5 img, #service-image-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#service-text-1, #service-text-2, #service-text-3, #service-text-4, #service-text-5, #service-text-6 {
    flex: 1;
    max-width: 600px;
}

#service-text-1 h3, #service-text-2 h3, #service-text-3 h3, #service-text-4 h3, #service-text-5 h3, #service-text-6 h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

#service-text-1 p, #service-text-2 p, #service-text-3 p, #service-text-4 p, #service-text-5 p, #service-text-6 p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

#cta {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

#button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
}

#button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(59, 130, 246, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #service-content-1, #service-content-2, #service-content-3, #service-content-4, #service-content-5, #service-content-6 {
        flex-direction: column;
        text-align: center;
    }

    #service-card-2 #service-content-2, #service-card-4 #service-content-4, #service-card-6 #service-content-6 {
        flex-direction: column;
    }

    #service-image-1, #service-image-2, #service-image-3, #service-image-4, #service-image-5, #service-image-6,
    #service-text-1, #service-text-2, #service-text-3, #service-text-4, #service-text-5, #service-text-6 {
        width: 100%;
    }

    #services-header h2 {
        font-size: 2rem;
    }

    #service-card-1, #service-card-2, #service-card-3, #service-card-4, #service-card-5, #service-card-6 {
        padding: 30px 20px;
    }

    #container {
        padding: 0 20px;
    }
}

@media (min-width: 769px) {
    #service-card-2 #service-content-2, #service-card-4 #service-content-4, #service-card-6 #service-content-6 {
        flex-direction: row-reverse;
    }
}

/*Brands section*/
.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.logo-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-image {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    h1 {
        font-size: 2rem;
    }

    .logo-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .logo-box {
        padding: 1rem;
        min-height: 100px;
    }

    .logo-image {
        max-height: 80px;
    }
}



/* Integrated section*/
.ordering-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    overflow-x: hidden;
}

.h1-integrated {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-top: 160px;
    
}

.main-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.platform-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    flex-wrap: wrap;
    overflow: visible;
}

.platform-icon {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.platform-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.arrow {
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.epos-display {
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.epos-display:hover {
    transform: translateY(-10px);
}

.epos-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.epos-image:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.guarantee-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(-15deg);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

.badge-content {
    text-align: center;
}

.percentage {
    font-size: 24px;
    font-weight: bold;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.guarantee-text {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.days {
    font-size: 12px;
    display: block;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-card h2 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.info-card h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.info-card:hover h2::after {
    width: 100%;
}

.main-description {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.highlight-text {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #2e7d32;
    font-weight: 500;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.1);
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.2s ease;
}

.features-list li:hover {
    transform: translateX(5px);
}

.features-list li::before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.features-list li:hover::before {
    transform: scale(1.2);
}

.get-started-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.get-started-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
    z-index: -1;
}

.get-started-button:hover {
    background: #45a049;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.get-started-button:hover::before {
    left: 100%;
}

.get-started-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}

@keyframes pulse {
    0% {
        transform: rotate(-15deg) scale(1);
    }
    50% {
        transform: rotate(-15deg) scale(1.05);
    }
    100% {
        transform: rotate(-15deg) scale(1);
    }
}

/* Responsive Design - Improved */
@media (max-width: 1024px) {
    .ordering-container {
        padding: 1.5rem;
    }
    
    .h1-integrated {
        font-size: 2.2rem;
        margin-top: 120px;
        margin-bottom: 2.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .integration-flow {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .showcase {
        gap: 2rem;
    }
    
    .epos-display {
        margin-bottom: 2rem;
    }
    
    .guarantee-badge {
        width: 110px;
        height: 110px;
        bottom: -25px;
        right: -25px;
    }
}

@media (max-width: 768px) {
    .h1-integrated {
        font-size: 1.8rem;
        margin-top: 80px;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .main-content {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 0.75rem;
        padding: 1.5rem 0;
    }
    
    .platform-icon {
        width: 100px;
        height: 70px;
    }
    
    .platform-logo {
        width: 80px;
        height: 80px;
        margin-left: 90px
    }
    
    .arrow {
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(0deg);
    }
    
    .epos-display {
        text-align: center;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .guarantee-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: 5px;
        font-size: 90%;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h2 {
        font-size: 1.8rem;
        text-align: center;
        display: block;
    }
    
    .info-card h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .get-started-button {
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .ordering-container {
        padding: 1rem;
    }
    
    .h1-integrated {
        font-size: 1.5rem;
        margin-top: 60px;
        margin-bottom: 1.5rem;
    }
    
    .main-content {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .integration-flow {
        gap: 1.5rem;
    }
    
    .platform-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        align-items: center;
    }
    
    .platform-icon {
        width: 85px;
        height: 60px;
    }
    
    .platform-logo {
        width: 65px;
        height: 65px;
        margin-left: 90px
    }
    
    .arrow {
        justify-self: center;
        grid-column: span 2;
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }
    
    .arrow:nth-of-type(3) {
        display: none;
    }
    
    .guarantee-badge {
        width: 90px;
        height: 90px;
        bottom: -15px;
        right: 0;
    }
    
    .percentage {
        font-size: 20px;
    }
    
    .guarantee-text {
        font-size: 12px;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card h2 {
        font-size: 1.6rem;
    }
    
    .main-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .highlight-text {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .get-started-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .h1-integrated {
        font-size: 1.3rem;
        margin-top: 40px;
    }
    
    .platform-icon {
        width: 0;
        height: 0;
        margin-left: 80px;
        
    }
    
    .platform-logo {
        width: 55px;
        height: 55px;
      
    }
    
    .arrow {
        font-size: 18px;
    }
    
    .guarantee-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: 0;
    }
    
    .percentage {
        font-size: 18px;
    }
    
    .guarantee-text {
        font-size: 10px;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 380px) {
    .platform-icons {
        gap: 0.75rem;
    }
    
    .platform-icon {
        width: 60px;
        height: 45px;
    }
    
    .platform-logo {
        width: 50px;
        height: 50px;
        margin-left: 80px
    }
    
    .arrow {
        font-size: 16px;
    }
    
    .main-description,
    .highlight-text,
    .features-list li {
        font-size: 0.9rem;
    }
    
    .get-started-button {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
}

/*Why choose us */

.benefits-container {
    min-height: 65vh;
    padding: 1rem;
    margin-top: 100px;
}

.why-choose-us {
    max-width: 1280px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.title-bg {
    position: absolute;
    inset: -1rem;
    background-color: #fef3c7;
    border-radius: 9999px;
    filter: blur(1rem);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h2 {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    color: #4b5563;
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

.features-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
}

.feature-card {
    position: relative;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: black;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
}

.icon-wrapper svg {
    color: #fef3c7;
    width: 1.25rem;
    height: 1.25rem;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 640px) {
    .features-benefits-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .features-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }
}

/* Contact Page Container */
.contact-page {
    background-color: #f9fafb;
    min-height: 100vh;
    padding: 4rem 1.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeDown 0.6s ease-out;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5e6, #ffe4cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 20px -3px rgba(249, 115, 22, 0.15);
}

.header-icon {
    width: 32px;
    height: 32px;
    color: #f97316;
}

.header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.header p {
    color: #4b5563;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Grid */
.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Contact Info Section */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
    height: fit-content;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #f97316, #ea580c);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.icon-wrapper {
    background: #fff5e6;
    padding: 0.875rem;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item:hover .icon-wrapper {
    background: #ffe4cc;
    transform: scale(1.1);
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
}

.info-text {
    flex: 1;
}

.info-item h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.info-item p {
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.image-container {
    margin-top: 2.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5));
    z-index: 1;
    pointer-events: none;
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Contact Form Section */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.6s ease-out;
}

.form-group {
    margin-bottom: 1.75rem;
}

label {
    display: block;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

input,
textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

input:hover,
textarea:hover {
    border-color: #9ca3af;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: white;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    width: 100%;
    padding: 1rem 1.25rem;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

button:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -3px rgba(249, 115, 22, 0.25);
}

button:hover::before {
    left: 100%;
}

button:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Modern Approach */
/* Tablet Landscape and below */
@media (max-width: 1024px) {
    .contact-container {
        max-width: 90%;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header {
        margin-bottom: 3rem;
    }
    
    .header h1 {
        font-size: 2.25rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-page {
        padding: 3rem 1.5rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .header-icon {
        width: 28px;
        height: 28px;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .image-container img {
        height: 250px;
    }
}

/* Mobile Landscape and below */
@media (max-width: 767px) {
    .logo img  {
        width: 10vw;
        height: auto;
    }

    .contact-page {
        padding: 2.5rem 1rem;
    }
    
    .header {
        margin-bottom: 2.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .header-icon {
        width: 24px;
        height: 24px;
    }
    
    .header h1 {
        font-size: 1.75rem;
    }
    
    .header p {
        font-size: 0.95rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.35rem;
        margin-bottom: 1.75rem;
    }
    
    .info-item {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
    
    .icon-wrapper {
        padding: 0.75rem;
    }
    
    .info-icon {
        width: 20px;
        height: 20px;
    }
    
    .image-container {
        margin-top: 1.5rem;
    }
    
    .image-container img {
        height: 200px;
    }
    
    button {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    input,
    textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 0.5rem;
    }
    
    label {
        margin-bottom: 0.35rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-page {
        padding: 2rem 0.75rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .header-icon {
        width: 20px;
        height: 20px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header p {
        font-size: 0.875rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.25rem;
    }
    
    .info-item {
        align-items: center;
    }
    
    /* More touch-friendly for small screens */
    .icon-wrapper {
        padding: 0.625rem;
    }
    
    .info-icon {
        width: 18px;
        height: 18px;
    }
    
    button {
        padding: 0.75rem 0.875rem;
    }
    
    .button-icon {
        width: 18px;
        height: 18px;
    }
}

/* Extra Large screens */
@media (min-width: 1281px) {
    .content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 3rem;
    }
    
    .image-container img {
        height: 350px;
    }
}

/* Make iPad device specific adjustments */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .info-item:hover {
        transform: translateX(5px); /* Reduced hover effect for touch devices */
    }
    
    .contact-info:hover {
        transform: translateY(-3px); /* Reduced hover effect for touch devices */
    }
    
    input,
    textarea,
    button {
        -webkit-appearance: none; /* Remove iOS default styling */
        appearance: none;
    }
}

/* Landscape phone orientation */
@media (max-height: 480px) and (orientation: landscape) {
    .contact-page {
        padding: 1.5rem 1rem;
    }
    
    .header {
        margin-bottom: 1.5rem;
    }
    
    .content {
        gap: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .image-container {
        display: none; /* Hide image in landscape phone view to save space */
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    textarea {
        min-height: 80px;
    }
}

:root {
  --primary-color: #2563eb;
  --text-color: #1f2937;
  --bg-color: #ffffff;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
}


.portfolio-section {
  padding: 5rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease forwards;
}

.header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.header .highlight {
  color: var(--primary-color);
}

.header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.filter-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.showcase-container {
  position: relative;
  height: 600px;
  perspective: 2000px;
}

.card-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.portfolio-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card.entering {
  opacity: 0;
  transform: translateX(100%) rotateY(-45deg);
}

.portfolio-card.active {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.portfolio-card.exiting {
  opacity: 0;
  transform: translateX(-100%) rotateY(45deg);
}

.card-image {
  height: 80%;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.company-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.card-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.visit-btn:hover {
  background: #1d4ed8;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  background: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease; /* Only transition specific properties */
  z-index: 10;
  color: var(--gray-600); /* Default arrow color */
}

.nav-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: rgb(248, 133, 2); /* Keep background white */
  color: var(--primary-color); /* Optional: change arrow to blue on hover */
  transform: translateY(-50%); /* Explicitly lock the transform to prevent movement */
}

.prev-btn {
  left: -1rem;
}

.next-btn {
  right: -1rem;
}

@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 3rem 1rem;
  }
  
  .header h2 {
    font-size: 2rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
}

/* From Uiverse.io by Shakil-Babu */ 
.btn-photos {
 background-color: #00BFA6;
 padding: 14px 40px;
 color: #fff;
 text-transform: uppercase;
 letter-spacing: 2px;
 cursor: pointer;
 border-radius: 10px;
 border: 2px dashed #00BFA6;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
 transition: .4s;
}

.btn-photos span:last-child {
 display: none;
}

.btn-photos:hover {
 transition: .4s;
 border: 2px dashed #00BFA6;
 background-color: #fff;
 color: #00BFA6;
}

.btn-photos:active {
 background-color: #87dbd0;
}

