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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.left-box {
    align-self: flex-start;
    height: auto;
}

.hero-boxes2 {
    align-items: flex-start;
    height: 100%;
}

/* =================
   NAVBAR
   ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-logo {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-cta2 {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #007BFF;
    border: 2px solid #007BFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.nav-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 5px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
}

.dropdown-btn {
    position: relative;
    padding-right: 1rem;
}

.dropdown-btn::after {
    content: "\25BC";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
}

/* =================
   HERO SECTION (ORIGINAL DESKTOP)
   ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(76, 21, 185) 274.51%);
    padding: 0 0rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-images {
    position: absolute;
    bottom: 2rem;
    left: 48%;
    transform: translateX(-50%);
    display: flex;
    gap: 10rem;
}

.hero-image {
    width: 450px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-image.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s ease-out;
}

.hero-image.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease-out;
}

.hero-image.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-image.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-text p {
    font-size: 1.7rem;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 300;
    line-height: 1.4;
}

.text {
    display: inline-block;
    margin: 0;
}

.text p {
    display: inline-block;
    vertical-align: top;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.tight-heading {
    margin: 0;
    padding: 0;
    color: black;
}

.tight-subheading {
    margin: 0;
    padding: 0;
}

.button-wrapper {
    text-align: center;
    margin-top: 20px;
}

h2 {
    margin-bottom: 0.2em;
}

.subheading {
    margin-top: -1;
}

/* ROTATING TEXT ORIGINAL */
.container_wrappering2025 {
    margin-top: -0.5em;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 2.1em;
    font-weight: bold;
    color: black;
    white-space: nowrap;
    height: 1.5em;
}

.word {
    position: absolute;
    font-size: calc(1em + 8 * 0.125em);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: show 25s linear infinite;
}

.word:nth-child(1) {
    animation-delay: 0s;
}
.word:nth-child(2) {
    animation-delay: 5s;
}
.word:nth-child(3) {
    animation-delay: 10s;
}
.word:nth-child(4) {
    animation-delay: 15s;
}
.word:nth-child(5) {
    animation-delay: 20s;
}

@keyframes show {
    0% { opacity: 0; }
    2% { opacity: 1; }
    18% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

/* SCROLLING TEXT ORIGINAL */
.inner-headings {
    height: 80px;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    background: transparent;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    animation: tickerScroll 20s linear infinite;
    background: transparent;
}

.text-wrapper h1 {
    height: 80px;
    line-height: 80px;
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
    background: transparent;
}

@keyframes tickerScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-480px); }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =================
   SERVICES SECTION (ORIGINAL 4 COLUMNS)
   ================= */
.services {
    padding: 5rem 10%;
    background: rgb(247, 250, 252);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(76, 21, 185) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card2 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(168, 50, 71) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card2:hover {
    transform: translateY(-5px);
}

.service-card2 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card2 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card3 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(130, 168, 50) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card3:hover {
    transform: translateY(-5px);
}

.service-card3 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card3 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card4 {
    background: rgba(130, 168, 50, 0.30);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card4:hover {
    transform: translateY(-5px);
}

.service-card4 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card4 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card5 {
    background: linear-gradient(157.32deg,rgb(245, 245, 247) 29.67%, rgb(130, 168, 50) 72.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card5:hover {
    transform: translateY(-5px);
}

.service-card5 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card5 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card6 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(39, 232, 167) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card6:hover {
    transform: translateY(-5px);
}

.service-card6 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card6 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card7 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(50, 168, 147) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card7:hover {
    transform: translateY(-5px);
}

.service-card7 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card7 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card8 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(91, 233, 255) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card8:hover {
    transform: translateY(-5px);
}

.service-card8 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card8 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card9 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(0, 0, 102) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card9:hover {
    transform: translateY(-5px);
}

.service-card9 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card9 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card1 {
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(38, 160, 251) 274.51%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card1:hover {
    transform: translateY(-5px);
}

.service-card1 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card1 p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* =================
   OTHER SECTIONS (ORIGINAL)
   ================= */
.about {
    padding: 5rem 10%;
    background: rgb(247, 250, 252);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.features {
    padding: 5rem 10%;
    background: white;
    position: relative;
}

.features-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-text {
    flex: 1;
    max-width: 500px;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.features-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.features-text ul {
    list-style: none;
    padding: 0;
}

.features-text ul li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.features-text ul li strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

.features-image {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(38, 160, 251) 274.51%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-img {
    width: 100%;
    height: auto;
}

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

.features li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.features li strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

.communications {
    padding: 5rem 10%;
    background: var(--light-bg);
}

.communications-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.communications-text {
    flex: 1;
    max-width: 500px;
}

.communications-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.communications-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.communications-text ul {
    list-style: none;
    padding: 0;
}

.communications-text ul li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.communications-text ul li strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

.communications-image {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(168, 50, 71) 274.51%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.communications-img {
    width: 100%;
    height: auto;
}

.payments {
    padding: 5rem 10%;
    background: white;
}

.payments-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payments-text {
    flex: 1;
    max-width: 500px;
}

.payments-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.payments-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.payments-text ul {
    list-style: none;
    padding: 0;
}

.payments-text ul li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.payments-text ul li strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

.payments-image {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(130, 168, 50) 274.51%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payments-img {
    width: 100%;
    height: auto;
}

.ai {
    padding: 5rem 10%;
    background: white;
    position: relative;
}

.ai-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-text {
    flex: 1;
    max-width: 500px;
}

.ai-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.ai-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.ai-text ul {
    list-style: none;
    padding: 0;
}

.ai-text ul li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.ai-text ul li strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

.ai-image {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(226, 151, 29) 274.51%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-img {
    width: 100%;
    height: auto;
}

.who-we-are {
    padding: 5rem 10%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 600px;
}

.who-we-are-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-we-are-logo {
    flex: 1;
    max-width: 300px;
}

.who-we-are-logo-img {
    width: 100%;
    height: auto;
}

.who-we-are-text {
    flex: 1;
    max-width: 600px;
}

.who-we-are-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.who-we-are-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.portfolio {
    padding: 5rem 10%;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* =================
   HERO2 SECTION
   ================= */
.hero2 {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(157.32deg, rgb(245, 245, 247) 29.67%, rgb(76, 21, 185) 274.51%);
    padding: 0 0rem;
}

.hero-content2 {
    position: relative;
    z-index: 2;
    margin-top: -24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text2 h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.hero-boxes2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-box2 {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 30px;
    width: 520px;
    max-width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.hero-box2 h2 {
    margin-bottom: 20px;
    font-size: 1.6em;
}

.hero-box2 p {
    margin: 14px 0;
    font-size: 1.05em;
}

.hero-box2 i {
    margin-right: 12px;
    color: #007BFF;
}

.hero-box2 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-box2 input,
.hero-box2 textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
}

.hero-box2 button {
    padding: 12px;
    font-size: 1em;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.hero-box2 button:hover {
    background-color: #0056b3;
}

.hero-image2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hero-images2 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10rem;
}

.hero-image2 {
    width: 450px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 1s ease forwards;
}

/* =================
   CONTACT SECTION
   ================= */
.contact {
    padding: 5rem 10%;
    background-color: #f9fafb;
}

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

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background-color: var(--secondary-color);
}

.contact-header {
    padding: 5rem 10%;
    text-align: center;
    background: var(--light-bg);
    margin-top: -24rem;
}

.text-center {
    text-align: center;
}

/* =================
   FOOTER
   ================= */
footer {
    background: #f8f9fa;
    color: #333;
    padding: 4rem 10% 2rem;
}

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

.footer-section {
    padding: 1rem;
}

.company-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    width: 210px;
    height: auto;
    margin-bottom: 1.5rem;
}

.company-info {
    line-height: 1.6;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.company-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-info a:hover {
    opacity: 0.8;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #333;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-section.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* =================
   RESPONSIVE DESIGN
   ================= */
img {
    max-width: 100%;
    height: auto;
}

/* Large screens - keep original 4 columns */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium screens - 3 columns */
@media (min-width: 900px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content {
        margin-top: -18rem;
    }
    
    .hero-images {
        gap: 6rem;
    }
    
    .hero-image {
        width: 350px;
    }
}

/* Small screens - 2 columns */
@media (min-width: 600px) and (max-width: 899px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        margin-top: -12rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.8rem;
    }
    
    .hero-images {
        gap: 4rem;
    }
    
    .hero-image {
        width: 300px;
    }
    
    .inner-headings {
        height: 60px;
    }
    
    .text-wrapper h1 {
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .navbar-logo {
        width: 120px;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        gap: 1rem;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-cta {
        margin: 0.5rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.5rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .hero-images {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services, .about, .features, .communications, .payments, .ai {
        padding: 3rem 5%;
    }
    
    .features-content,
    .communications-content,
    .payments-content,
    .ai-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-image,
    .communications-image,
    .payments-image,
    .ai-image {
        margin-top: 2rem;
    }
    
    .hero-boxes2 {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-box2 {
        width: 90%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.2rem;
    }
    
    .word {
        font-size: 1.2rem;
    }
    
    .inner-headings {
        height: 45px;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
    
    .services, .about, .features, .communications, .payments, .ai, .contact {
        padding: 2rem 3%;
    }
    
    .hero-box2 {
        padding: 1.5rem;
    }
}

/* Add these fixes to your existing CSS */

/* =================
   MOBILE PORTRAIT FIXES
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: 1rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    /* Move hero images to bottom */
    .hero-images {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        margin-top: 0;
        justify-content: center;
        order: 2;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
}

/* =================
   MOBILE LANDSCAPE FIXES
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 3% 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Fix .word text - make smaller and move down */
    .container_wrappering2025 {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .word {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }
    
    .inner-headings {
        height: 40px;
        margin-top: 1rem;
    }
    
    .text-wrapper h1 {
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    /* Fix hero images - make smaller and centered */
    .hero-images {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 35%;
        max-width: 150px;
    }
    
    .cta-button {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    .hero-images {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   VERY SMALL LANDSCAPE FIXES
   ================= */
@media (max-width: 667px) and (orientation: landscape) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
    }
    
    .container_wrappering2025 {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .word {
        font-size: 1rem;
    }
    
    .inner-headings {
        height: 35px;
        margin-top: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }
    
    .hero-images {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 30%;
        max-width: 120px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* =================
   TABLET PORTRAIT FIXES
   ================= */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-content {
        margin-top: -18rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.4rem;
    }
    
    .container_wrappering2025 {
        font-size: 2rem;
    }
    
    .word {
        font-size: 2rem;
    }
    
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 48%;
        transform: translateX(-50%);
        gap: 4rem;
    }
    
    .hero-image {
        width: 300px;
    }
}

/* =================
   TABLET LANDSCAPE FIXES
   ================= */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-content {
        margin-top: -16rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.8rem;
    }
    
    .word {
        font-size: 1.8rem;
    }
    
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 48%;
        transform: translateX(-50%);
        gap: 3rem;
    }
    
    .hero-image {
        width: 280px;
    }
}

/* Fix the hero images scroll issue and footer alignment */

/* =================
   MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: 1rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    /* Fix hero images - use absolute positioning within hero section only */
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        margin-top: 0;
        justify-content: center;
        order: 2;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    /* Fix footer alignment - center everything */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .company-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-info p {
        text-align: center;
    }
    
    .footer-logo-img {
        margin-bottom: 1rem;
    }
    
    /* Fix social section alignment */
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-section h4 {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* =================
   GENERAL MOBILE FOOTER FIXES
   ================= */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .company-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-info p {
        text-align: center;
    }
    
    .footer-logo-img {
        margin-bottom: 1rem;
    }
    
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-section h4 {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    /* Hero images stay within hero section */
    .hero-images {
        position: absolute;
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   TABLET FOOTER FIXES
   ================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 3rem;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-section {
        text-align: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* =================
   LANDSCAPE MOBILE FOOTER FIXES
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .company-section {
        text-align: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Fix footer socials centering and move .word text up */

/* =================
   MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    /* Move .word text up */
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: -0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    /* Hero images will move up automatically due to .word text moving up */
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        margin-top: 0;
        justify-content: center;
        order: 2;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    /* Fix footer alignment - center everything including socials */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .company-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-info p {
        text-align: center;
    }
    
    .footer-logo-img {
        margin-bottom: 1rem;
    }
    
    /* Fix social section alignment - force center */
    .footer-section.social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-section h4 {
        text-align: center;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
    }
}

/* =================
   MOBILE LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 3% 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Fix .word text - make smaller and move up */
    .container_wrappering2025 {
        font-size: 1.2rem;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }
    
    .inner-headings {
        height: 40px;
        margin-top: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    /* Fix hero images - make smaller and centered */
    .hero-images {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 35%;
        max-width: 150px;
    }
    
    .cta-button {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Fix footer socials centering for landscape */
    .footer-section.social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
    }
}

/* =================
   GENERAL MOBILE FOOTER FIXES (Updated)
   ================= */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .company-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-info p {
        text-align: center;
    }
    
    .footer-logo-img {
        margin-bottom: 1rem;
    }
    
    /* Force social links to center */
    .footer-section.social-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .social-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .social-section h4 {
        text-align: center !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    /* Move .word text up more on small screens */
    .container_wrappering2025 {
        font-size: 1.3rem;
        margin-top: -0.5rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
        margin-top: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    /* Hero images will be higher due to .word text moving up */
    .hero-images {
        position: absolute;
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   VERY SMALL LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 667px) and (orientation: landscape) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
    }
    
    /* Move .word text up on small landscape */
    .container_wrappering2025 {
        font-size: 1rem;
        margin-top: -0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1rem;
    }
    
    .inner-headings {
        height: 35px;
        margin-top: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }
    
    .hero-images {
        margin-top: 0.3rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 30%;
        max-width: 120px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Fix .word text - move it up more (3-4 spaces) */

/* =================
   MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    /* Move .word text up more - 3-4 spaces */
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: -2rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: -1rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    /* Keep other styles the same */
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        margin-top: 0;
        justify-content: center;
        order: 2;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
}

/* =================
   MOBILE LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    /* Fix .word text - move up more on landscape */
    .container_wrappering2025 {
        font-size: 1.2rem;
        margin-top: -1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }
    
    .inner-headings {
        height: 40px;
        margin-top: -0.5rem;
    }
    
    .text-wrapper h1 {
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    /* Keep other landscape styles */
    .hero {
        min-height: 100vh;
        padding: 80px 3% 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .hero-images {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 35%;
        max-width: 150px;
    }
    
    .cta-button {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    /* Move .word text up even more on small screens */
    .container_wrappering2025 {
        font-size: 1.3rem;
        margin-top: -2.5rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
        margin-top: -1.2rem;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    /* Hero images will be higher due to .word text moving up more */
    .hero-images {
        position: absolute;
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   VERY SMALL LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 667px) and (orientation: landscape) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
    }
    
    /* Move .word text up more on small landscape */
    .container_wrappering2025 {
        font-size: 1rem;
        margin-top: -1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1rem;
    }
    
    .inner-headings {
        height: 35px;
        margin-top: -0.7rem;
    }
    
    .text-wrapper h1 {
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }
    
    .hero-images {
        margin-top: 0.3rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 30%;
        max-width: 120px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* =================
   MEDIUM MOBILE SCREENS (375px - 414px)
   ================= */
@media (min-width: 375px) and (max-width: 414px) and (orientation: portrait) {
    .container_wrappering2025 {
        font-size: 1.4rem;
        margin-top: -2.2rem;
        margin-bottom: 0.4rem;
    }
    
    .word {
        font-size: 1.4rem;
    }
    
    .inner-headings {
        height: 48px;
        margin-top: -1.1rem;
    }
    
    .text-wrapper h1 {
        height: 48px;
        line-height: 48px;
        font-size: 1.4rem;
    }
}

/* Fix mobile hero positioning to match desktop - move everything up */

/* =================
   MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
        padding: 80px 5% 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 2rem;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Move .word text to near the top like desktop */
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    /* Hero images at bottom like desktop */
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
}

/* =================
   MOBILE LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 3% 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    /* Move .word text to near top like desktop */
    .container_wrappering2025 {
        font-size: 1.2rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }
    
    .inner-headings {
        height: 40px;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    .cta-button {
        margin-top: 0.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero images at bottom */
    .hero-images {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 35%;
        max-width: 150px;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    /* Move .word text up near top */
    .container_wrappering2025 {
        font-size: 1.3rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    .hero-images {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   VERY SMALL LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 667px) and (orientation: landscape) {
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    /* Move .word text near top */
    .container_wrappering2025 {
        font-size: 1rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .word {
        font-size: 1rem;
    }
    
    .inner-headings {
        height: 35px;
        margin-top: 0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }
    
    .hero-images {
        bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 30%;
        max-width: 120px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
}

/* =================
   MEDIUM MOBILE SCREENS (375px - 414px)
   ================= */
@media (min-width: 375px) and (max-width: 414px) and (orientation: portrait) {
    .hero-content {
        padding-top: 1.8rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.4rem;
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .word {
        font-size: 1.4rem;
    }
    
    .inner-headings {
        height: 48px;
        margin-top: 0.4rem;
        margin-bottom: 0.7rem;
    }
    
    .text-wrapper h1 {
        height: 48px;
        line-height: 48px;
        font-size: 1.4rem;
    }
}
/* Fix hero images positioning, purple box height, and iPhone 15 landscape */

/* =================
   MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 80vh; /* Reduce purple box height */
        padding: 80px 5% 1rem; /* Reduce bottom padding */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 2rem;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        flex: 1;
    }
    
    .hero-text {
        margin-bottom: 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .word {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
    }
    
    .inner-headings {
        height: 50px;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .text-wrapper h1 {
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    /* Move hero images up significantly */
    .hero-images {
        position: absolute;
        bottom: 8rem; /* Move images up from bottom */
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        z-index: 1;
    }
    
    .hero-image {
        width: 45%;
        max-width: 180px;
    }
}

/* =================
   MOBILE LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 70px 3% 1rem; /* Reduce top padding for landscape */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0.5rem; /* Reduce top padding */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
        flex: 1;
    }
    
    .hero-text {
        margin-bottom: 0.3rem;
    }
    
    .hero-text h1 {
        font-size: 1.6rem; /* Reduce font size for landscape */
        margin-bottom: 0.2rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .container_wrappering2025 {
        font-size: 1rem; /* Reduce font size */
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .word {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 85vw;
    }
    
    .inner-headings {
        height: 30px; /* Reduce height */
        margin-top: 0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 30px;
        line-height: 30px;
        font-size: 1rem;
    }
    
    .cta-button {
        margin-top: 0.3rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Position hero images better for landscape */
    .hero-images {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 25%; /* Make smaller for landscape */
        max-width: 120px;
    }
}

/* =================
   IPHONE 15 PRO MAX LANDSCAPE SPECIFIC FIXES
   ================= */
@media (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 3% 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
        flex: 1;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-text p {
        font-size: 0.7rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .container_wrappering2025 {
        font-size: 0.9rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .word {
        font-size: 0.9rem;
    }
    
    .inner-headings {
        height: 25px;
        margin-top: 0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 25px;
        line-height: 25px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        margin-top: 0.3rem;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .hero-images {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 20%;
        max-width: 100px;
    }
}

/* =================
   SMALL MOBILE PORTRAIT FIXES (Updated)
   ================= */
@media (max-width: 480px) and (orientation: portrait) {
    .hero {
        min-height: 75vh; /* Reduce purple box height */
        padding: 80px 5% 1rem;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.3rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .word {
        font-size: 1.3rem;
    }
    
    .inner-headings {
        height: 45px;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .text-wrapper h1 {
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    /* Move images up more on small screens */
    .hero-images {
        bottom: 6rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 42%;
        max-width: 160px;
    }
}

/* =================
   VERY SMALL LANDSCAPE FIXES (Updated)
   ================= */
@media (max-width: 667px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 50px 3% 1rem;
    }
    
    .hero-content {
        padding-top: 0.3rem;
    }
    
    .hero-text h1 {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-text p {
        font-size: 0.7rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .container_wrappering2025 {
        font-size: 0.8rem;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    
    .word {
        font-size: 0.8rem;
    }
    
    .inner-headings {
        height: 25px;
        margin-top: 0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .text-wrapper h1 {
        height: 25px;
        line-height: 25px;
        font-size: 0.8rem;
    }
    
    .hero-images {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .hero-image {
        width: 22%;
        max-width: 100px;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
}

/* =================
   MEDIUM MOBILE SCREENS (375px - 414px)
   ================= */
@media (min-width: 375px) and (max-width: 414px) and (orientation: portrait) {
    .hero {
        min-height: 78vh;
    }
    
    .hero-content {
        padding-top: 1.8rem;
    }
    
    .container_wrappering2025 {
        font-size: 1.4rem;
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .word {
        font-size: 1.4rem;
    }
    
    .inner-headings {
        height: 48px;
        margin-top: 0.4rem;
        margin-bottom: 0.7rem;
    }
    
    .text-wrapper h1 {
        height: 48px;
        line-height: 48px;
        font-size: 1.4rem;
    }
    
    .hero-images {
        bottom: 7rem;
    }
}