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

/* Elementor-like Corporate Theme CSS */
:root {
    --primary: #0A2342;      /* Midnight Blue */
    --accent: #1D6FA3;       /* Strong Corporate Blue */
    --accent-dark: #134B6E;  /* Deep Marine Blue */
    --accent-light: #4BA3E3; /* Brilliant Light Blue */
    --bg-main: #FFFFFF;      /* Clean White */
    --bg-alt: #F4F8FB;       /* Very Light Frost Blue */
    --text-dark: #121A21;    /* Very Dark Blue-Grey */
    --text-muted: #647B8C;   /* Medium Slate */
    --border: #DCE5ED;       /* Light Icy Blue border */
    --rose: #2A8ACA;         /* Vibrant Sky Blue */
    --shadow: 0 4px 15px rgba(10, 35, 66, 0.08);
    --transition: 0.3s ease-in-out;
}

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

body { 
    font-family: 'Roboto', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--bg-main); 
    line-height: 1.6; 
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.bg-grey { background-color: var(--bg-alt); }
.text-center { text-align: center; }

/* TOP BAR */
.top-bar {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 0;
    font-size: 0.9rem;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar i { color: #fff; }

/* NAVBAR */
.navbar { 
    background: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { display: flex; align-items: center; gap: 15px; font-weight: 900; font-size: 1.6rem; color: var(--primary); text-transform: uppercase; }
.logo-img { height: 60px; width: auto; object-fit: contain; }

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.nav-links a { 
    font-weight: 500; 
    font-size: 1rem; 
    color: var(--text-dark); 
    text-transform: uppercase; 
    position: relative;
    padding-bottom: 5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

/* Custom Nav Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { 
    display: flex !important; 
    align-items: center; 
    gap: 6px; 
    padding: 5px 12px;
    margin-top: -5px; /* Offset the 5px top padding to visually center text with other links */
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle {
    background: linear-gradient(to bottom, #2b5672, #041d2e);
    color: #fff !important;
}
.nav-dropdown:hover .nav-dropdown-toggle i {
    color: var(--accent);
}
.nav-dropdown:hover .nav-dropdown-toggle::after { display: none; }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #08293d; /* Dark theme matching reference */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    color: #fff !important;
    padding: 18px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent;
    transition: all 0.2s ease;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
    background: #02121c; /* darker block on hover */
    padding-left: 30px; /* Slight indent hover effect */
}
.nav-dropdown-menu a:last-child { border-bottom: none; }

.mobile-btn { display: none; font-size: 1.8rem; background: none; border: none; color: var(--primary); cursor: pointer; }

/* TYPOGRAPHY */
.section-title { 
    font-size: 2.8rem; 
    font-weight: 700;
    color: var(--primary); 
    margin-bottom: 20px; 
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}
.section-title.left-align::after { left: 0; transform: none; }

.section-subtitle { 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    max-width: 800px; 
    margin: 0 auto 50px auto; 
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #C6132D; box-shadow: var(--shadow); }

/* HERO SLIDER */
.hero-slider { height: 90vh; position: relative; overflow: hidden; display: block; width: 100%; }
.slider-overlay { position: absolute; inset: 0; background: rgba(0, 30, 60, 0.5); z-index: 3; pointer-events: none; }

.hero-content-centered { position: relative; z-index: 10; text-align: center; color: #fff; pointer-events: none; }
.company-title { font-family: 'Outfit', sans-serif; font-size: 4.5rem; font-weight: 900; text-transform: uppercase; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); margin-bottom: 20px;}

/* premium slider animations */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-slider .carousel-item img {
    animation: kenburns 15s ease-out infinite alternate;
}

@keyframes fadeInUpText {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-slider .carousel-item.active .company-title {
    animation: fadeInUpText 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.hero-slider .carousel-item.active p {
    opacity: 0;
    animation: fadeInUpText 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
.hero-slider .carousel-item.active .btn {
    opacity: 0;
    animation: fadeInUpText 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: none; color: #fff; width: 50px; height: 50px; font-size: 1.5rem; cursor: pointer; z-index: 10; transition: var(--transition); border-radius: 4px; }
.slider-btn:hover { background: var(--accent); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.dot { width: 15px; height: 15px; border-radius: 50%; background: transparent; border: 2px solid #fff; cursor: pointer; }
.dot.active { background: var(--accent); border-color: var(--accent); }

/* FEATURES GRID (Elementor Cards) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { 
    background: #fff; 
    padding: 40px 30px; 
    text-align: center; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow);
    transition: var(--transition); 
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-bottom: 3px solid var(--accent); }
.feature-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.feature-card h3 { color: var(--text-dark); margin-bottom: 15px; font-size: 1.4rem; }
.feature-card p { color: var(--text-muted); }

/* PREMIUM PRODUCTS LAYOUT */
.products-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.product-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.product-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.product-image-container { position: relative; width: 100%; height: 240px; overflow: hidden; }
.product-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-item:hover img { transform: scale(1.08); }
.product-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 2; box-shadow: 0 4px 10px rgba(218, 57, 43, 0.3); letter-spacing: 1px; }
.product-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; background: #fff; }
.product-content h3 { font-size: 1.4rem; color: var(--primary); font-weight: 800; margin-bottom: 12px; }
.product-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; flex-grow: 1; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.product-btn { color: var(--primary); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; width: max-content; }
.product-btn i { transition: transform 0.3s; color: var(--accent); }
.product-btn:hover { color: var(--accent-light); }
.product-btn:hover i { transform: translateX(5px); }

/* WHY CHOOSE GROWMORE SECTION */
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-list-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 35px; }
.why-icon-wrap { position: relative; width: 60px; height: 60px; flex-shrink: 0; margin-right: 10px; }
.why-icon-wrap::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 45%; 
    transform: translate(-50%, -50%); 
    width: 75px; 
    height: 75px; 
    background-color: var(--border); /* Light peach organic blob */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    z-index: 1;
}
.why-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--accent-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.why-icon i { color: #fff; font-size: 1.6rem; }
.why-text h3 { color: var(--primary); font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.why-text ul li { font-size: 0.85rem; color: var(--text-dark); margin-bottom: 6px; display: flex; align-items: baseline; font-weight: 500; }
.why-text ul li i { transform: scale(0.6); margin-right: 6px; color: var(--rose); }
.massive-circle-img { width: 100%; max-width: 550px; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

@media (max-width: 992px) {
    .why-choose-grid { grid-template-columns: 1fr; }
    .massive-circle-img { margin-top: 40px; }
}



/* ABOUT TIMELINE & ICONS */
.icon-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--text-muted); }
.icon-list i { color: var(--accent); font-size: 1.2rem; }

.timeline { border-left: 2px solid var(--border); padding-left: 30px; margin-left: 20px; }
.timeline-item { position: relative; margin-bottom: 40px; padding: 20px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.timeline-item h3 { color: var(--primary); font-size: 1.6rem; margin-bottom: 10px; }
.timeline-item::before { content: ''; position: absolute; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; left: -39px; top: 25px; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; height: 280px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0, 75, 135, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-overlay span { color: #fff; font-size: 1.5rem; font-weight: 700; text-align: center; padding: 20px; border: 2px solid #fff; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* QUALITY POLICY */
.quality-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 20px; background: #fff; padding: 20px; border: 1px solid var(--border); }
.check-icon { color: var(--accent); font-size: 2rem; }
.quality-list strong { color: var(--primary); font-size: 1.2rem; display: block; margin-bottom: 5px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { background: var(--primary); color: #fff; padding: 50px; }
.contact-info div { margin-bottom: 30px; display: flex; align-items: center; gap: 20px; font-size: 1.1rem; }
.contact-info i { font-size: 1.8rem; color: var(--accent); }

.contact-form-container { background: #fff; padding: 50px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ccc; font-family: inherit; font-size: 1rem; color: var(--text-dark); background: #fafafa; }
.form-control:focus { outline: none; border-color: var(--primary); background: #fff; }

/* FOOTER */
.footer { 
    background: var(--primary); 
    color: #e0e0e0; 
    padding: 70px 0 20px; 
}
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 1.2fr) minmax(300px, 1fr); gap: 5vw; margin-bottom: 50px; }
.footer h4 { color: #d0d0d0; font-size: 1.1rem; font-weight: 300; margin-bottom: 30px; letter-spacing: 0.5px; }
.footer-logo { height: 120px; width: auto; margin-bottom: 25px; border-radius: 4px; }
.footer p { font-size: 0.95rem; line-height: 1.9; color: #d9d9d9; margin-bottom: 25px; }
.footer p strong { color: #fff; font-weight: 600; font-size: 0.95rem;}
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 0.95rem; color: #d9d9d9; line-height: 1.6;}
.footer-contact li i { color: #d0d0d0; font-size: 1.1rem; margin-top: 4px; width: 20px; text-align: center;}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem;}

/* CONTACT CARDS GRID */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 20px; }
.contact-card { background: #fff; padding: 40px 20px; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s; text-align: center; }
.contact-card:hover { transform: translateY(-10px); border-color: var(--accent-light); }
.contact-icon-wrapper { width: 70px; height: 70px; background: var(--bg-alt); color: var(--accent); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; margin: 0 auto 20px; border: 1px solid var(--border); transition: 0.3s; }
.contact-card:hover .contact-icon-wrapper { background: var(--accent); color: #fff; }
.contact-card h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; }
.contact-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; font-weight: 500; }

/* REVEALS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .top-bar-container { flex-direction: column; text-align: center; gap: 10px; }
    .why-choose-content { padding-right: 0; text-align: center; }
    .why-list-item { justify-content: center; text-align: left; }
    .why-choose-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact li { justify-content: center; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-btn { display: block; }
    .company-title { font-size: 2.5rem !important; }
    .company-title span { font-size: 3rem !important; }
    .section-title { font-size: 2rem; }
    .product-row { flex-direction: column !important; text-align: center; }
    .product-desc { text-align: center; }
}
@media (max-width: 576px) {
    .section { padding: 60px 0; }
    .top-bar-left { flex-direction: column; }
    .company-title { font-size: 2rem !important; }
    .company-title span { font-size: 2.4rem !important; letter-spacing: 0px !important; }
    .hero-content-centered p { font-size: 1rem !important; }
    .btn { padding: 12px 24px !important; font-size: 0.85rem !important; }
    .contact-cards-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-icon-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-icon-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-popout {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.whatsapp-popout.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-header {
    background-color: #075E54;
    color: white;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-whatsapp {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-body {
    padding: 25px 20px;
    background-color: #ece5dd;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
}

.whatsapp-body p {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.whatsapp-body p::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    border: 10px solid transparent;
    border-top-color: white;
    border-right-color: white;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe56;
    color: white;
}

/* PREMIUM APPLICATIONS MARQUEE SLIDER */
.applications-section {
    background: linear-gradient(135deg, #021B33 0%, #000c18 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.applications-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 174, 239, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #011425 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #011425 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 30px;
    padding-left: 30px;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.marquee-track.reverse {
    animation: marquee-reverse 40s linear infinite;
}
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
@keyframes marquee-reverse {
    0%   { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

.app-card {
    min-width: 320px;
    height: 220px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}
.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.25);
    border-color: var(--accent);
}
.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.app-card:hover img {
    transform: scale(1.1);
}
.app-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 20px 20px;
    background: linear-gradient(to top, rgba(0,25,50,0.95) 0%, rgba(0,25,50,0.7) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.app-card h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}



.typewriter {
  overflow: hidden; 
  border-right: .15em solid orange; 
  white-space: nowrap; 
  margin: 0 auto; 
  letter-spacing: .15em; 
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}