/* ===== CSS Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

main {
    padding-top: 7rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1 { font-size: 3.5rem; }
.display-2 { font-size: 3rem; }
.display-3 { font-size: 2.5rem; }
.display-4 { font-size: 2rem; }

@media (max-width: 768px) {
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2rem; }
    .display-3 { font-size: 1.75rem; }
    .display-4 { font-size: 1.5rem; }
}

.text-gradient-primary {
    background: linear-gradient(135deg, #2e8b57 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Utility Classes ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, #2e8b57 0%, #4caf50 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a5d38 0%, #2e8b57 100%);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation: float 6s ease-in-out infinite 1s;
}

.animate-float-delay-2 {
    animation: float 6s ease-in-out infinite 2s;
}

.animate-float-delay-3 {
    animation: float 6s ease-in-out infinite 3s;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
}

.top-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.top-contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-contact-info li a:hover {
    color: var(--primary-light);
}

.top-location, .top-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Main Navigation ===== */
.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    top: 2.5rem;
}

.main-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: rotate(-5deg) scale(1.1);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2e8b57 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownFade 0.3s ease;
}

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

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(5px);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.home-hero {
    padding-top: 7rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.7;
    }
}

.hero-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.floating-card span {
    font-size: 0.75rem;
    text-align: center;
    font-weight: 500;
}

.card-1 { top: 10%; left: 15%; }
.card-2 { top: 20%; right: 20%; }
.card-3 { bottom: 30%; left: 20%; }
.card-4 { bottom: 10%; right: 15%; }

.main-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    z-index: 1;
}

.trust-indicators .trust-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: block;
    margin: 0 auto 1rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

.arrow i {
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== Services Section ===== */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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


.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

/* ===== Section Headers ===== */
.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

/* ===== Industries Section ===== */
.industry-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.industry-card h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

/* ===== Process Section ===== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
    border-left: 4px solid var(--primary);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.author-info h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.875rem;
    color: #666;
}

/* ===== Technology Stack ===== */
.tech-stack-grid {
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-item span {
    font-size: 0.875rem;
    color: var(--dark);
    font-weight: 500;
}

/* Technology Stack Icon Colors */
.tech-item .fab.fa-laravel {
    color: #FF2D20;
}

.tech-item .fab.fa-react {
    color: #61DAFB;
}

.tech-item .fab.fa-vuejs {
    color: #4FC08D;
}

.tech-item .fab.fa-node-js {
    color: #339933;
}

.tech-item .fab.fa-python {
    color: #3776AB;
}

.tech-item .fas.fa-database {
    color: #4479A1;
}

/* ===== FAQ ===== */
.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 500;
    color: var(--dark);
    padding: 1.5rem;
    font-size: 1.125rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

/* ===== Footer ===== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-info i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-light);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 5rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-visual {
        height: 400px;
    }

    .floating-card {
        width: 80px;
        height: 80px;
    }

    .card-1 { top: 10%; left: 15%; }
    .card-2 { top: 20%; right: 20%; }
    .card-3 { bottom: 30%; left: 20%; }
    .card-4 { bottom: 10%; right: 15%; }
}

@media (max-width: 992px) {
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }

    .floating-card {
        width: 70px;
        height: 70px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }

    /* Ensure navbar is properly positioned on tablets */
    .main-navbar {
        top: 0;
        position: fixed;
        width: 100%;
        z-index: 1030;
    }

    main {
        padding-top: 5rem !important;
    }
}

@media (max-width: 992px) {
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .floating-card {
        width: 70px;
        height: 70px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: block;
        height: 250px;
    }

    .floating-card {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }

    .floating-card i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .card-1 { top: 10%; left: 5%; }
    .card-2 { top: 20%; right: 5%; }
    .card-3 { bottom: 30%; left: 5%; }
    .card-4 { bottom: 10%; right: 5%; }

    .main-hero-image {
        width: 50%;
        max-width: 200px;
    }

    .top-bar {
        display: none;
    }

    .main-navbar {
        top: 0;
    }

    main {
        padding-top: 5rem !important;
    }

    .home-hero {
        padding-top: 5rem;
    }

    .hero-section .row {
        align-items: flex-start !important;
        padding-top: 3rem !important;
    }

    .top-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar .text-md-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }

    /* Mobile Navigation Improvements */
    .navbar-brand {
        flex-shrink: 0;
        max-width: 50%;
        min-width: 120px;
    }

    .navbar-brand .logo {
        max-width: 100%;
        height: auto;
        max-height: 35px;
    }

    .navbar-toggler {
        flex-shrink: 0;
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Mobile CTA Button Styling */
    .d-lg-none.d-flex.align-items-center.gap-2 .btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        white-space: nowrap;
        min-width: auto;
    }

    .d-lg-none.d-flex.align-items-center.gap-2 .btn i {
        font-size: 0.75rem;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-item {
        padding-left: 2rem;
    }

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

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }


    .testimonial-card, .industry-card, .tech-item {
        padding: 1.25rem;
    }

    /* Extra small screen navigation fixes */
    .navbar-brand {
        max-width: 30%;
        min-width: 80px;
    }

    .navbar-brand .logo {
        max-height: 30px;
    }

    .d-lg-none.d-flex.align-items-center.gap-2 .btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .d-lg-none.d-flex.align-items-center.gap-2 .btn i {
        font-size: 0.7rem;
    }

    .navbar-toggler {
        padding: 0.25rem;
        width: 35px;
        height: 35px;
    }

    /* Ensure content fits on small screens */
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Fix any potential horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

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

    /* Ensure buttons and links are touch-friendly */
    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }

    a {
        min-height: 44px;
        display: inline-block;
    }

    /* Ensure equal margins on both sides */
    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ===== Button Styles ===== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn::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: left 0.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(46, 139, 87, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-light {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    border: 2px solid var(--primary);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
    border-radius: 10px;
}

/* ===== About Page Styles ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    padding-top: 6rem; /* Account for fixed navbar height */
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 19, 62, 0.9) 100%),
                url('../images/abouthero.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-highlight {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Who We Are Section */
.who-we-are {
    background: white;
    padding: 4rem 0;
}

.about-image-container {
    position: relative;
    text-align: center;
}

.about-image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.experience-badge span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.experience-badge small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.highlight-text {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-stack h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tech-badges span {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(46, 139, 87, 0.2);
    transition: all 0.3s ease;
}

.tech-badges span:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.impact-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Mission Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.purpose-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.purpose-card.mission .card-icon {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 50%;
}

.purpose-card.vision .card-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
    border-radius: 50%;
}

.purpose-card.values .card-icon {
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.1) 0%, rgba(165, 214, 167, 0.1) 100%);
    border-radius: 50%;
}

.purpose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.purpose-card p {
    color: #666;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Design for About Page ===== */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .experience-badge {
        top: -15px;
        right: -15px;
        padding: 0.5rem 0.75rem;
    }

    .experience-badge span {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .tech-badges {
        justify-content: center;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .purpose-card {
        margin-bottom: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 40vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .who-we-are,
    .mission-vision,
    .about-cta {
        padding: 2rem 0;
    }

    .about-image-container img {
        max-width: 300px;
    }

    .tech-badges span {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .purpose-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== Products Page Styles ===== */

/* Products Hero Section */
.products-hero {
    position: relative;
    min-height: 70vh;
    padding-top: 6rem; /* Account for fixed navbar height */
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 19, 62, 0.9) 100%),
                url('../images/products.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.products-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-hero .hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Intro Section */
.products-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-intro .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.products-intro .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid Section */
.products-grid {
    background: white;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-image {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #ffc107;
}

.rating span {
    color: #666;
    margin-left: 0.25rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.875rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Product Benefits Section */
.product-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Products CTA Section */
.products-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.products-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-cta .cta-content .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Design for Products Page ===== */
@media (max-width: 768px) {
    .products-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .products-hero .hero-content h1 {
        font-size: 2.25rem;
    }

    .products-hero .hero-content .lead {
        font-size: 1rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image img {
        height: 150px;
    }

    .product-content h3 {
        font-size: 1.125rem;
    }

    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .benefit-card {
        margin-bottom: 2rem;
    }

    .products-cta .cta-content h2 {
        font-size: 2rem;
    }

    .products-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .products-hero {
        min-height: 50vh;
    }

    .products-hero .hero-content {
        padding: 1rem;
    }

    .products-hero .hero-content h1 {
        font-size: 1.875rem;
    }

    .products-intro,
    .products-grid,
    .product-benefits,
    .products-cta {
        padding: 2rem 0;
    }

    .product-card {
        padding: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== Portfolio Styles ===== */
.project-card-simple {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card-simple .project-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

.project-card-simple .project-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-card-simple h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.25rem;
}

.project-card-simple .btn {
    margin-top: auto;
}

/* ===== Print Styles ===== */
@media print {
    .whatsapp-float,
    .back-to-top,
    .navbar,
    .footer-section,
    .cta-section {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}