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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: #0053ff;
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.announcement-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.announcement-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.announcement-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.announcement-link:hover {
    opacity: 0.8;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* LOGO */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    width: 290px;
    height: auto;
    display: block;
    max-width: 100%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0053ff 0%, #0053ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}

/* DESKTOP NAVIGATION */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.dropdown {
    position: relative;
}

.dropdown-trigger {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1f2937;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.2s;
}

.dropdown-trigger:hover {
    color: #2563eb;
}

.dropdown-menu li{
    border-bottom: 1px solid #edf2f7;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1rem;
    background: #ffffff;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: #f3f4f6;
    color: #0f172a;
}

/* GET IN TOUCH BUTTON */
.header-actions {
    flex-shrink: 0;
}

.btn-consultation {
    background: transparent;
    border: 1.5px solid #0A2B5E;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0A2B5E;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
    display: inline-block;
}

.btn-consultation:hover {
    background: #c6ff67;
    color: black;
}

/* HAMBURGER MENU */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #0A2B5E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9.75px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9.75px) rotate(-45deg);
}

/* MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #edf2f7;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.mobile-dropdown-toggle::after {
    content: "▼";
    font-size: 0.65rem;
    transition: transform 0.2s;
    color: #5b6e8c;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-submenu.open {
    max-height: 410px;
}

.mobile-submenu li a {
    display: block;
    padding: 0.7rem 0;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-submenu li a:hover {
    color: #2563eb;
}

.mobile-actions {
    margin-top: 2rem;
    padding-top: 1rem;
}

.mobile-btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* ==================================
   OFFERINGS SECTION
================================== */
.offerings-section {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offering-card {
    border-radius: 24px;
    padding: 1.75rem;
    transition: all .3s ease;
}

.offering-card:hover {
    transform: translateY(-6px);
}

.products-card {
    background: #f8eefa;
}

.nexuslabs-card {
    background: #e8faf0;
}

.services-card {
    background: #eaf4ff;
}

.training-card {
    background: #f5ecff;
}

.offering-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.products-card .offering-icon {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.nexuslabs-card .offering-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.services-card .offering-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.training-card .offering-icon {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.offering-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.offering-card h3 {
    font-weight: 700;
    color: #0A2B5E;
    margin-bottom: 0.75rem;
}

.offering-card p {
    color: #334155;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.offering-link {
    color: #0053ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}

.offering-link:hover {
    gap: 0.6rem;
    text-decoration: underline;
}

/* HERO SECTION */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    background: #0053ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.hero-content h1 {
    line-height: 1.1;
    font-weight: 800;
    color: #0A2B5E;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 5vw, 60px);
}

.hero-content h1 span {
    color: #0053ff;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: #6b7280;
    max-width: 650px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.primary-btn {
    background: #0053ff;
    color: white;
}

.secondary-btn {
    border: 1.5px solid #0053ff;
    color: #0053ff;
    background: transparent;
}

.hero-btn {
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.primary-btn:hover {
    opacity: 0.9;
}

.secondary-btn:hover {
    background: #0053ff;
    color: white;
}

/* HERO SLIDER */
.hero-slider {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    min-width: 0;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        90deg,
        rgba(0,38,90,.85) 0%,
        rgba(0,38,90,.45) 15%,
        rgba(0,38,90,.05) 100%
    );
    color: #fff;
}

.slide-overlay h2 {
    margin-left: 15px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.overlay-subtitle {
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.overlay-btn {
    display: inline-block;
    background: #fff;
    color: #0053ff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    width: fit-content;
}

.overlay-stats {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    justify-content: space-around;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(2px);
    padding: 18px;
    border-radius: 16px;
}

.overlay-stats div {
    text-align: center;
}

.overlay-stats span {
    display: block;
    font-size: 30px;
    font-weight: 800;
}

.overlay-stats small {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,.9);
    font-size: 1.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: rgba(255,255,255,1);
}

.prev {
    left: 12px;
}

.next {
    right: 12px;
}

/* WHO WE ARE / VISION & MISSION */
.who-we-are {
    max-width: 1280px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0053ff;
    background: rgba(0, 83, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0053ff;
    margin: 0 0 1rem;
}

.section-subhead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: black;
    margin: 0;
    line-height: 1.5;
}

.who-intro {
    margin: 0 0 3rem;
    text-align: justify;
}

.who-intro p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #1e293b;
    font-weight: 400;
}

.who-intro .highlight {
    color: #0053ff;
    font-weight: 500;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vm-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0053ff, #c6ff67);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 83, 255, 0.2);
}

.vm-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 83, 255, 0.08);
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.vm-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0053ff;
    stroke-width: 1.5;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0A2B5E;
    margin-bottom: 0.75rem;
}

.vm-card p {
    text-align: justify;
    color: black;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #0053ff;
    text-decoration: none;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 0.75rem;
}

/* TECHNOLOGY EXPERTISE SECTION */
.tech-expertise {
    margin: 4rem auto;
    overflow: hidden;
    padding: 0 2rem;
}

.tech-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tech-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0053ff;
    background: rgba(0, 83, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.tech-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0A2B5E;
    margin-bottom: 0.75rem;
}

.tech-subhead {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 1.5rem 0;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 90px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

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

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.logo-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    transition: color 0.3s ease;
}

.logo-item:hover .logo-name {
    color: #0053ff;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* FOOTER */
.site-footer {
    background: #ffffff;
    color: #1f2937;
    margin-top: 5rem;
    padding: 3rem 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid #eef2f6;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.footer-col h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0053ff;
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: black;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #0053ff;
    transform: translateX(3px);
}

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

.footer-social-list li {
    margin-bottom: 0.7rem;
}

.footer-social-list li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 14.6px;
    transition: all 0.2s ease;
}

.footer-social-list li a:hover {
    color: #0053ff;
    transform: translateX(4px);
}

.footer-social-list li a i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
    color: #0053ff;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    background: #ffffff;
}

.footer-bottom p {
    color: black;
    margin: 0;
    line-height: 1.5;
}

.mobile-footer {
    display: none;
    text-align: center;
    font-size: 0.7rem;
    color: #6b7280;
    padding: 1.25rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.contact-btn i {
    font-size: 28px;
}

.whatsapp {
    background: #25D366;
}

.phone {
    background: #F04E30;
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ============================================================
   DEVICE-SPECIFIC RESPONSIVE BREAKPOINTS
   Based on actual CSS viewport widths
   ============================================================ */

/* ==========================================
   iPAD PRO 12.9" (1024px) 
   ========================================== */
@media only screen and (max-width: 1024px) {
    .logo img {
        width: 170px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .dropdown-trigger {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 2.5rem 2rem;
        gap: 2.5rem;
    }
    
    .hero-slider {
        height: 460px;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
       .offerings-section {
        padding: 0 1.5rem;
        margin: 3.5rem auto;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .offering-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .offering-card h3 {
        font-size: 1.3rem;
    }
    
    .offering-card p {
        font-size: 0.82rem;
    }
    
    .offering-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
    
    .offering-icon i {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
}

/* ==========================================
   iPAD PRO 11" (834px) & iPAD AIR (820px) & iPAD 10.2" (810px)
   Show hamburger menu at this breakpoint
   ========================================== */
@media only screen and (max-width: 834px) {
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0.75rem 1.5rem;
    }
    
    .logo img {
        width: 260px;
    }
    
    .hero-section {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-slider {
        height: 420px;
    }
    
        .offerings-section {
        padding: 0 1.5rem;
        margin: 3rem auto;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .offering-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .offering-card h3 {
        font-size: 1.3rem;
    }
    
    .offering-card p {
        font-size: 0.85rem;
    }
    
    .offering-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 1.25rem;
    }
    
    .offering-icon i {
        font-size: 1.3rem;
    }
    
    .who-we-are {
        margin: 4rem auto;
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .vm-grid {
        gap: 1.5rem;
    }
    
    .vm-card {
        padding: 1.75rem;
    }
    
    .vm-card h3 {
        font-size: 1.35rem;
    }
    
    .tech-expertise {
        padding: 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* ==========================================
   iPAD MINI (768px) & GALAXY TAB S4 (712px)
   Stack hero, keep 2-col VM grid, 2-col offerings
   ========================================== */
@media only screen and (max-width: 768px) {
    .logo img {
        width: 250px;
    }
    
       .offerings-section {
        padding: 0 1.5rem;
        margin: 2.5rem auto;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .offering-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .offering-card h3 {
        font-size: 1.3rem;
    }
    
    .offering-card p {
        font-size: 0.85rem;
    }
    
    .offering-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        margin-bottom: 1.25rem;
    }
    
    .offering-icon i {
        font-size: 1.25rem;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 1.75rem 1.5rem;
        gap: 1.75rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-slider {
        width: 100%;
        height: 380px;
        border-radius: 18px;
    }
    
    .who-we-are {
        margin: 3.5rem auto;
    }
    
    .vm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .vm-card {
        padding: 1.5rem;
    }
    
    .vm-card h3 {
        font-size: 1.25rem;
    }
    
    .vm-card p {
        font-size: 0.85rem;
    }
    
    .who-intro p {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .site-footer {
        margin-top: 4rem;
        padding: 2.5rem 0 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-bottom {
        display: none;
    }
    
    .mobile-footer {
        display: block;
        font-size: 0.68rem;
    }
}

/* ==========================================
   iPHONE 14 PRO MAX (430px) & iPHONE 6/7/8 PLUS (414px)
   SAMSUNG GALAXY A51/71 (412px) & SAMSUNG GALAXY S20 ULTRA (412px)
   Single column offerings & VM cards
   ========================================== */
@media only screen and (max-width: 430px) {
    .announcement-text,
    .announcement-link {
        font-size: 0.78rem;
    }
    
    .announcement-bar {
        padding: 0.6rem 0.75rem;
    }
    
    .header-container {
        padding: 0.65rem 1.25rem;
    }
    
    .logo img {
        width: 235px;
    }
    
        .offerings-section {
        padding: 0 1.25rem;
        margin: 2.5rem auto;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .offering-card {
        padding: 1.4rem;
        border-radius: 16px;
    }
    
    .offering-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .offering-card p {
        font-size: 0.85rem;
        margin-bottom: 1.1rem;
    }
    
    .offering-icon {
        width: 50px;
        height: 50px;
        border-radius: 13px;
        margin-bottom: 1.1rem;
    }
    
    .offering-icon i {
        font-size: 1.2rem;
    }
    
    .offering-link {
        font-size: 0.82rem;
    }
    
    .hero-section {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .hero-slider {
        height: 300px;
        border-radius: 16px;
    }
    
    .slide-overlay {
        padding: 25px;
    }
    
    .slide-overlay h2 {
        font-size: 28px;
    }
    
    .overlay-subtitle {
        font-size: 14px;
    }
    
    .overlay-stats {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px;
    }
    
    .overlay-stats span {
        font-size: 22px;
    }
    
    .overlay-stats small {
        font-size: 10px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .prev {
        left: 8px;
    }
    
    .next {
        right: 8px;
    }
    
    .who-we-are {
        margin: 3rem auto;
        padding: 0 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }
    
    .section-subhead {
        font-size: 0.9rem;
    }
    
    .who-intro {
        margin-bottom: 2rem;
    }
    
    .who-intro p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .vm-card {
        padding: 1.4rem;
        border-radius: 1.25rem;
    }
    
    .vm-card h3 {
        font-size: 1.25rem;
    }
    
    .vm-card p {
        font-size: 0.85rem;
    }
    
    .vm-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .vm-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .tech-expertise {
        margin: 2.5rem auto;
        padding: 0 1.25rem;
    }
    
    .tech-header h2 {
        font-size: 1.4rem;
    }
    
    .tech-subhead {
        font-size: 0.85rem;
    }
    
    .tech-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }
    
    .logo-marquee {
        padding: 1rem 0;
    }
    
    .logo-item {
        min-width: 75px;
    }
    
    .logo-img {
        width: 42px;
        height: 42px;
    }
    
    .logo-name {
        font-size: 0.6rem;
    }
    
    .marquee-track {
        gap: 1.5rem;
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 45px;
    }
    
    .site-footer {
        margin-top: 3rem;
        padding: 2rem 0 0;
    }
    
    .footer-container {
        padding: 0px 0px 0px 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 0px;
        padding-bottom: 1.25rem;
    }
    
    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 0.9rem;
    }
    
    .footer-col ul li a {
        font-size: 0.75rem;
    }
    
    .footer-social-list li a {
        font-size: 0.75rem;
    }
    
    .footer-social-list li a i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    .mobile-footer {
        font-size: 0.65rem;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }
    
    .contact-btn {
        width: 46px;
        height: 46px;
    }
    
    .contact-btn i {
        font-size: 26px;
    }
}

/* ==========================================
   iPHONE 6/7/8 (375px)
   ========================================== */
@media only screen and (max-width: 375px) {
    .announcement-text,
    .announcement-link {
        font-size: 0.72rem;
    }
    
    .announcement-bar {
        padding: 0.55rem 0.6rem;
    }
    
    .header-container {
        padding: 0.6rem 1rem;
    }
    
    .logo img {
        width: 120px;
    }
    
    .mobile-toggle {
        width: 26px;
        height: 20px;
    }
    
    .mobile-toggle span {
        height: 2.5px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
    
    .mobile-nav {
        padding: 4.5rem 1.25rem 1.5rem;
    }
    
    .mobile-dropdown-toggle {
        font-size: 1.05rem;
        padding: 0.9rem 0;
    }
    
    .mobile-submenu li a {
        font-size: 0.9rem;
        padding: 0.65rem 0;
    }
    
       .offerings-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .offerings-grid {
        gap: 1rem;
    }
    
    .offering-card {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .offering-card h3 {
        font-size: 1.15rem;
    }
    
    .offering-card p {
        font-size: 0.8rem;
    }
    
    .offering-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        margin-bottom: 1rem;
    }
    
    .offering-icon i {
        font-size: 1.1rem;
    }
    
    .offering-link {
        font-size: 0.78rem;
    }


    .hero-section {
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 0.9rem;
    }
    
    .hero-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .hero-slider {
        height: 250px;
        border-radius: 14px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-overlay h2 {
        font-size: 22px;
    }
    
    .overlay-subtitle {
        font-size: 12px;
    }
    
    .overlay-stats {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }
    
    .overlay-stats span {
        font-size: 18px;
    }
    
    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .who-we-are {
        margin: 2.5rem auto;
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
    }
    
    .section-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.85rem;
    }
    
    .section-subhead {
        font-size: 0.82rem;
    }
    
    .who-intro p {
        font-size: 0.85rem;
    }
    
    .vm-grid {
        gap: 1rem;
    }
    
    .vm-card {
        padding: 1.15rem;
        border-radius: 1.1rem;
    }
    
    .vm-card h3 {
        font-size: 1.15rem;
    }
    
    .vm-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .vm-icon {
        width: 36px;
        height: 36px;
        border-radius: 0.7rem;
    }
    
    .vm-icon svg {
        width: 19px;
        height: 19px;
    }
    
    .read-more {
        font-size: 0.78rem;
    }
    
    .tech-expertise {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .tech-header {
        margin-bottom: 1.5rem;
    }
    
    .tech-header h2 {
        font-size: 1.25rem;
    }
    
    .tech-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }
    
    .tech-subhead {
        font-size: 0.78rem;
    }
    
    .logo-item {
        min-width: 65px;
    }
    
    .logo-img {
        width: 36px;
        height: 36px;
    }
    
    .logo-name {
        font-size: 0.55rem;
    }
    
    .marquee-track {
        gap: 1.25rem;
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 35px;
    }
    
    .site-footer {
        margin-top: 2.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-grid {
        gap: 1rem 1.25rem;
        padding-bottom: 1rem;
    }
    
    .footer-col h4 {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-col ul li a {
        font-size: 0.7rem;
    }
    
    .footer-social-list li a {
        font-size: 0.7rem;
        gap: 0.45rem;
    }
    
    .footer-social-list li a i {
        font-size: 0.8rem;
        width: 14px;
    }
    
    .mobile-footer {
        font-size: 0.6rem;
        padding: 0.85rem 0;
    }
    
    .floating-contact {
        right: 12px;
        bottom: 18px;
        gap: 8px;
    }
    
    .contact-btn {
        width: 42px;
        height: 42px;
    }
    
    .contact-btn i {
        font-size: 24px;
    }
}

/* ==========================================
   SAMSUNG GALAXY S8+ (360px)
   ========================================== */
@media only screen and (max-width: 360px) {
    .announcement-text,
    .announcement-link {
        font-size: 0.68rem;
    }
    
    .announcement-container {
        gap: 0.3rem;
    }
    
    .header-container {
        padding: 0.55rem 0.9rem;
    }
    
    .logo img {
        width: 210px;
    }
    
    .mobile-toggle {
        width: 24px;
        height: 18px;
    }
    
    .mobile-toggle span {
        height: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .mobile-nav {
        padding: 4rem 1rem 1.5rem;
    }
    
    .mobile-dropdown-toggle {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .mobile-submenu li a {
        font-size: 0.85rem;
        padding: 0.55rem 0;
    }
     .offerings-section {
        padding: 0 0.85rem;
        margin: 1.75rem auto;
    }
    
    .offerings-grid {
        gap: 0.85rem;
    }
    
    .offering-card {
        padding: 1.1rem;
        border-radius: 12px;
    }
    
    .offering-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .offering-card p {
        font-size: 0.75rem;
        margin-bottom: 0.9rem;
        line-height: 1.5;
    }
    
    .offering-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 0.85rem;
    }
    
    .offering-icon i {
        font-size: 1rem;
    }
    
    .offering-link {
        font-size: 0.73rem;
    }


    .hero-section {
        padding: 1rem 0.85rem;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.45rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.78rem;
        border-radius: 9px;
    }
    
    .hero-slider {
        height: 220px;
        border-radius: 12px;
    }
    
    .slide-overlay {
        padding: 18px;
    }
    
    .slide-overlay h2 {
        font-size: 20px;
    }
    
    .overlay-subtitle {
        font-size: 11px;
    }
    
    .overlay-stats {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 8px;
    }
    
    .overlay-stats span {
        font-size: 16px;
    }
    
    .overlay-stats small {
        font-size: 9px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .prev {
        left: 5px;
    }
    
    .next {
        right: 5px;
    }
    
    .who-we-are {
        margin: 2rem auto;
        padding: 0 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .section-badge {
        font-size: 0.6rem;
        padding: 0.28rem 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subhead {
        font-size: 0.78rem;
    }
    
    .who-intro {
        margin-bottom: 1.5rem;
    }
    
    .who-intro p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .vm-grid {
        gap: 0.85rem;
    }
    
    .vm-card {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .vm-card h3 {
        font-size: 1.05rem;
    }
    
    .vm-card p {
        font-size: 0.75rem;
        line-height: 1.45;
    }
    
    .vm-icon {
        width: 32px;
        height: 32px;
        border-radius: 0.6rem;
        margin-bottom: 0.75rem;
    }
    
    .vm-icon svg {
        width: 17px;
        height: 17px;
    }
    
    .read-more {
        font-size: 0.73rem;
    }
    
    .tech-expertise {
        margin: 1.75rem auto;
        padding: 0 0.85rem;
    }
    
    .tech-header h2 {
        font-size: 1.1rem;
    }
    
    .tech-badge {
        font-size: 0.6rem;
        padding: 0.28rem 0.7rem;
    }
    
    .tech-subhead {
        font-size: 0.73rem;
    }
    
    .logo-marquee {
        padding: 0.75rem 0;
    }
    
    .logo-item {
        min-width: 55px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-name {
        font-size: 0.5rem;
    }
    
    .marquee-track {
        gap: 1rem;
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 28px;
    }
    
    .site-footer {
        margin-top: 2rem;
        padding: 1.5rem 0 0;
    }
    
    .footer-container {
        padding: 0 0.85rem;
    }
    
    .footer-grid {
        gap: 0.85rem 1rem;
        padding-bottom: 0.85rem;
    }
    
    .footer-col h4 {
        font-size: 0.65rem;
        margin-bottom: 0.65rem;
        letter-spacing: 0.04em;
    }
    
    .footer-col ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-col ul li a {
        font-size: 0.65rem;
    }
    
    .footer-social-list li {
        margin-bottom: 0.4rem;
    }
    
    .footer-social-list li a {
        font-size: 0.65rem;
        gap: 0.35rem;
    }
    
    .footer-social-list li a i {
        font-size: 0.75rem;
        width: 12px;
    }
    
    .mobile-footer {
        font-size: 0.55rem;
        padding: 0.75rem 0;
    }
    
    .floating-contact {
        right: 10px;
        bottom: 15px;
        gap: 7px;
    }
    
    .contact-btn {
        width: 38px;
        height: 38px;
    }
    
    .contact-btn i {
        font-size: 21px;
    }
}

/* ==========================================
   LANDSCAPE MODE for all mobile/tablet devices
   ========================================== */
@media only screen and (max-width: 834px) and (orientation: landscape) {
    .logo img {
        width: 130px;
    }
    .offerings-section {
        padding: 0 1.25rem;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.85rem;
    }
    
    .offering-card {
        padding: 1.1rem;
        border-radius: 14px;
    }
    
    .offering-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .offering-card p {
        font-size: 0.73rem;
        margin-bottom: 0.9rem;
    }
    
    .offering-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.85rem;
    }
    
    .offering-icon i {
        font-size: 1.1rem;
    }
    
    .offering-link {
        font-size: 0.73rem;
    }
    
    .hero-section {
        flex-direction: row;
        padding: 1.25rem 1.5rem;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .hero-slider {
        flex: 1;
        height: 240px;
        border-radius: 14px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .vm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .mobile-nav {
        width: 45%;
        left: auto;
        right: 0;
    }
}

/* ==========================================
   RETINA DISPLAYS
   ========================================== */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Desktop visibility rules */
@media (min-width: 835px) {
    .mobile-nav {
        display: none !important;
    }
}