* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111111;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    height: 125px;
    margin: 0 auto;
    padding: 8px 24px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container {
    width: 300px;
    height: 125px;
    position: relative;
}

.logo-container img {
    height: 170px;
    width: auto;
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #0b5ed7;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #071d3b;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 120;
}

.menu-line {
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobile-menu-button.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 610px;
    overflow: hidden;
    background: #031326;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("../images/back.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1, 13, 29, 0.96) 0%,
            rgba(3, 23, 48, 0.88) 28%,
            rgba(3, 23, 48, 0.58) 52%,
            rgba(3, 23, 48, 0.12) 75%,
            rgba(3, 23, 48, 0.02) 100%
        );
    z-index: 2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1s ease,
        visibility 1s ease;
    z-index: 3;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    width: 610px;
    margin-left: max(80px, calc((100vw - 1200px) / 2 + 24px));
    transform: translateY(18px);
    opacity: 0;
    transition:
        transform 1s ease,
        opacity 1s ease;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-small-title {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(69, 170, 255, 0.35);
    border-radius: 4px;
    background: rgba(12, 89, 160, 0.14);
    color: #64bfff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.hero-content h1 {
    max-width: 650px;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-content h1 span {
    color: #27a8ff;
}

.hero-content p {
    max-width: 575px;
    color: #d9e7f5;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.primary-btn {
    background: #168de2;
    border: 1px solid #168de2;
    color: #ffffff;
}

.primary-btn:hover {
    background: #2ba5ff;
    border-color: #2ba5ff;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: #ffffff;
}

.hero-dots {
    position: absolute;
    left: max(80px, calc((100vw - 1200px) / 2 + 24px));
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.hero-dot.active {
    background: #27a8ff;
    transform: scale(1.25);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    width: 100%;
    padding: 95px 24px 105px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #168de2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    color: #071d3b;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: #168de2;
}

.section-heading p {
    color: #607086;
    font-size: 17px;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 34px 28px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(5, 30, 60, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #c7e4f8;
    box-shadow: 0 18px 45px rgba(5, 30, 60, 0.13);
}

.service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            #071d3b 0%,
            #0a2d5d 55%,
            #168de2 100%
        );
    box-shadow: 0 10px 24px rgba(10, 72, 135, 0.18);
}

.service-icon span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.service-card h3 {
    color: #071d3b;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card a {
    position: absolute;
    left: 28px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #168de2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.service-card a span {
    transition: transform 0.25s ease;
}

.service-card a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   WHY AAVV CORP
========================================================= */

.why-section {
    width: 100%;
    padding: 105px 24px;
    background: #071d3b;
    overflow: hidden;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.why-content .section-label {
    color: #4cb7ff;
}

.why-content h2 {
    max-width: 560px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.why-content h2 span {
    color: #27a8ff;
}

.why-intro {
    max-width: 570px;
    color: #c7d5e5;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 42px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}

.why-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 183, 255, 0.35);
    border-radius: 10px;
    background: rgba(22, 141, 226, 0.09);
    color: #4cb7ff;
    font-size: 13px;
    font-weight: 700;
}

.why-point h3 {
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 7px;
}

.why-point p {
    color: #aebfd1;
    font-size: 15px;
    line-height: 1.65;
}

.why-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.technology-panel {
    position: relative;
    width: 500px;
    height: 440px;
}

.panel-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    top: 40px;
    left: 70px;
    border-radius: 50%;
    background: rgba(22, 141, 226, 0.17);
    filter: blur(50px);
}

.tech-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.tech-card-main {
    width: 310px;
    height: 210px;
    top: 110px;
    left: 95px;
    padding: 42px 34px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(13, 60, 111, 0.90),
            rgba(14, 115, 183, 0.72)
        );
    z-index: 3;
}

.tech-card-title {
    color: #70c7ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tech-card-big {
    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-card-sub {
    color: #cde7fa;
    font-size: 14px;
}

.tech-mini-card {
    position: absolute;
    width: 150px;
    height: 105px;
    padding: 19px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    z-index: 4;
}

.tech-mini-card span {
    display: block;
    color: #4cb7ff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-mini-card p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.card-one {
    top: 30px;
    left: 15px;
}

.card-two {
    top: 20px;
    right: 5px;
}

.card-three {
    right: 10px;
    bottom: 25px;
}


/* =========================================================
   SOFTWARE PORTFOLIO
========================================================= */

.apps-section {
    width: 100%;
    padding: 100px 24px 110px;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.apps-heading {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.apps-heading h2 {
    color: #071d3b;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.apps-heading h2 span {
    color: #168de2;
}

.apps-heading p {
    color: #607086;
    font-size: 17px;
    line-height: 1.75;
}

.portfolio-group {
    margin-bottom: 75px;
}

.desktop-group {
    margin-bottom: 20px;
}

.portfolio-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dfe8f2;
}

.portfolio-title-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #071d3b,
            #168de2
        );
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.portfolio-title h3 {
    color: #071d3b;
    font-size: 24px;
    margin-bottom: 5px;
}

.portfolio-title p {
    color: #708096;
    font-size: 14px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.app-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e3ebf3;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(5, 30, 60, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: #bcdff7;
    box-shadow: 0 20px 48px rgba(5, 30, 60, 0.13);
}

.featured-app-card {
    border-color: #b9ddf7;
    box-shadow: 0 16px 45px rgba(22, 141, 226, 0.13);
}

.app-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            #071d3b 0%,
            #0a2d5d 55%,
            #168de2 100%
        );
    box-shadow: 0 11px 25px rgba(7, 50, 100, 0.18);
}

.app-icon-image {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e8f0;
    padding: 5px;
}

.app-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.app-card h3 {
    color: #071d3b;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.app-subtitle {
    color: #168de2;
    font-size: 12px;
    font-weight: 700;
    margin-top: -3px;
    margin-bottom: 12px;
}

.app-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.platform-list span {
    padding: 7px 10px;
    border-radius: 20px;
    background: #edf7ff;
    border: 1px solid #d6ecfb;
    color: #168de2;
    font-size: 10px;
    font-weight: 700;
}

.desktop-app .platform-list span {
    background: #f1f4f8;
    border-color: #e0e6ed;
    color: #52657a;
}

.apps-view-all {
    margin-top: 55px;
    text-align: center;
}

.apps-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 30px;
    background: #071d3b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.apps-main-button:hover {
    background: #168de2;
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #04162d 0%,
            #071d3b 45%,
            #0a2d5d 100%
        );
    color: #ffffff;
}

.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 0;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.footer-glow-one {
    width: 380px;
    height: 380px;
    top: -130px;
    left: -100px;
    background: rgba(22, 141, 226, 0.15);
}

.footer-glow-two {
    width: 340px;
    height: 340px;
    right: -100px;
    bottom: -120px;
    background: rgba(39, 168, 255, 0.12);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 65px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand-name {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-brand-name span {
    color: #27a8ff;
}

.footer-brand p {
    color: #aebfd1;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.footer-brand-line {
    width: 65px;
    height: 3px;
    margin-bottom: 17px;
    border-radius: 3px;
    background:
        linear-gradient(
            90deg,
            #168de2,
            #27a8ff
        );
}

.footer-tagline {
    color: #6fbff7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #27a8ff;
}

.footer-column a {
    position: relative;
    margin-bottom: 14px;
    color: #aebfd1;
    text-decoration: none;
    font-size: 14px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: #4cb7ff;
    transform: translateX(4px);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 38px;
    margin-bottom: 50px;
    border: 1px solid rgba(76, 183, 255, 0.16);
    border-radius: 16px;
    background:
        linear-gradient(
            120deg,
            rgba(22, 141, 226, 0.12),
            rgba(255, 255, 255, 0.04)
        );
    backdrop-filter: blur(8px);
}

.footer-cta > div > span {
    display: block;
    color: #4cb7ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
}

.footer-cta h3 {
    max-width: 650px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    background: #168de2;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.footer-contact-btn:hover {
    background: #27a8ff;
    transform: translateY(-2px);
}

.footer-contact-btn span {
    font-size: 18px;
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: #7f94aa;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #71879d;
    font-size: 11px;
}

.footer-divider {
    color: #27a8ff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }

}


@media (max-width: 950px) {

    .why-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .why-content {
        max-width: 680px;
    }

}


@media (max-width: 900px) {

    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero-content {
        width: 540px;
        margin-left: 40px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-dots {
        left: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .main-header {
        min-height: 100px;
    }

    .header-container {
        height: 100px;
        min-height: 100px;
        padding: 0 20px;
    }

    .logo-container {
        width: 220px;
        height: 100px;
    }

    .logo-container img {
        height: 135px;
        top: -15px;
    }


    /* MOBILE BUTTON */

    .mobile-menu-button {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .main-nav {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        padding: 12px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background:
            linear-gradient(
                145deg,
                #04162d 0%,
                #071d3b 55%,
                #0a2d5d 100%
            );
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .main-nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        width: 100%;
        padding: 16px 8px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover {
        color: #4cb7ff;
        transform: none;
    }


    /* HERO MOBILE */

    .hero-slider {
        height: 650px;
    }

    .hero-background {
        background-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1, 13, 29, 0.97) 0%,
                rgba(3, 23, 48, 0.90) 55%,
                rgba(3, 23, 48, 0.60) 100%
            );
    }

    .hero-slide {
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-content {
        width: calc(100% - 48px);
        margin-left: 24px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-dots {
        left: 24px;
        bottom: 30px;
    }


    /* FOOTER */

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / 3;
        max-width: 550px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .services-section,
    .why-section,
    .apps-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading h2,
    .apps-heading h2 {
        font-size: 34px;
    }

    .why-content h2 {
        font-size: 35px;
    }

    .section-heading p,
    .apps-heading p,
    .why-intro {
        font-size: 15px;
    }

    .services-grid,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .technology-panel {
        width: 100%;
        max-width: 450px;
        height: 400px;
    }

    .tech-card-main {
        width: 270px;
        left: 50%;
        transform: translateX(-50%);
    }

    .tech-mini-card {
        width: 125px;
    }

    .portfolio-title h3 {
        font-size: 21px;
    }

    .footer-container {
        padding: 65px 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-cta {
        padding: 28px 24px;
    }

    .footer-cta h3 {
        font-size: 21px;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

}


@media (max-width: 480px) {

    .header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-container {
        width: 190px;
    }

    .logo-container img {
        height: 125px;
        top: -11px;
    }

    .mobile-menu-button {
        width: 43px;
        height: 43px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-small-title {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 0 22px;
    }

    .footer-brand-name {
        font-size: 27px;
    }

    .footer-cta h3 {
        font-size: 19px;
    }

}