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

html {
    background: #ffffff;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar {
    width: 100%;
    background-color: #061f2b;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #d4af37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.banner-section {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.banner-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    animation: floatShape 20s ease-in-out infinite;
}

.banner-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.banner-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.banner-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.banner-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: bannerFadeIn 1s ease-out;
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    animation: slideInLeft 0.8s ease-out;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.banner-title-line {
    display: block;
}

.banner-title-highlight {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.banner-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.banner-stat {
    display: flex;
    flex-direction: column;
}

.banner-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.banner-stat-label {
    font-size: 0.85rem;
    color: #000000;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.banner-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.banner-button-primary {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.banner-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffd700, #d4af37);
}

.banner-button-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #d4af37;
}

.banner-button-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    border-color: #ffd700;
}

.banner-right {
    position: relative;
    height: 500px;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.banner-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-card {
    position: absolute;
    background: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: cardFloat 3s ease-in-out infinite;
}

.banner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.banner-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-card-text {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
    text-align: center;
}

.banner-card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.banner-card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

.banner-card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.banner-card-4 {
    top: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    text-align: center;
    padding: 2rem;
    margin-top: 0;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    background: #ffffff;
}

.content-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    text-align: left;
    background: #ffffff;
}

.column-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.image-container {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    animation: floatFluctuation 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-image:hover {
    transform: scale(1.05);
}

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

.column-right {
    flex: 1;
}


.about-section {
    color: #000000;
}

.about-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: fadeIn 1s ease-in 2s both;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: justify;
    animation: fadeIn 1s ease-in 2.2s both;
}

.about-text:last-child {
    margin-bottom: 0;
    animation-delay: 2.4s;
}

.services-section {
    width: 100%;
    margin-top: 5rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #ffffff;
}

.services-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: fadeIn 1s ease-in 2.5s both;
}

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

.service-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in 2.6s both;
}

.service-card:nth-child(1) { animation-delay: 2.6s; }
.service-card:nth-child(2) { animation-delay: 2.7s; }
.service-card:nth-child(3) { animation-delay: 2.8s; }
.service-card:nth-child(4) { animation-delay: 2.9s; }
.service-card:nth-child(5) { animation-delay: 3.0s; }
.service-card:nth-child(6) { animation-delay: 3.1s; }
.service-card:nth-child(7) { animation-delay: 3.2s; }
.service-card:nth-child(8) { animation-delay: 3.3s; }

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-name {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.service-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    opacity: 0.9;
}

.clients-section {
    width: 100%;
    margin-top: 5rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #ffffff;
}

.clients-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: fadeIn 1s ease-in 2.6s both;
}

.clients-slideshow {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.client-logo {
    flex-shrink: 0;
    width: 250px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

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

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

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

.footer {
    width: 100%;
    background-color: #061f2b;
    border-top: 2px solid #d4af37;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-logo-column {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo {
    text-align: left;
    margin-bottom: 0;
    padding-top: 0;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.9;
}

.footer-section {
    min-width: 200px;
}

.footer-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1.2rem;
    display: inline-block;
}

.footer-link {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.6);
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}


@keyframes iconReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.heading {
    font-size: 4rem;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
    animation: pulseGlow 3s ease-in-out infinite;
    display: inline-block;
}

.heading .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: letterReveal 0.6s ease-out forwards, float 3s ease-in-out 2s infinite;
}

.heading .letter.space {
    width: 0.3em;
}

/* Stagger animation for each letter */
.heading .letter:nth-child(1) { animation-delay: 0.1s; }
.heading .letter:nth-child(2) { animation-delay: 0.2s; }
.heading .letter:nth-child(3) { animation-delay: 0.3s; }
.heading .letter:nth-child(4) { animation-delay: 0.4s; }
.heading .letter:nth-child(5) { animation-delay: 0.5s; }
.heading .letter:nth-child(6) { animation-delay: 0.6s; }
.heading .letter:nth-child(7) { animation-delay: 0.7s; }
.heading .letter:nth-child(8) { animation-delay: 0.8s; }
.heading .letter:nth-child(9) { animation-delay: 0.9s; }
.heading .letter:nth-child(10) { animation-delay: 1.0s; }
.heading .letter:nth-child(11) { animation-delay: 1.1s; }
.heading .letter:nth-child(12) { animation-delay: 1.2s; }
.heading .letter:nth-child(13) { animation-delay: 1.3s; }
.heading .letter:nth-child(14) { animation-delay: 1.4s; }
.heading .letter:nth-child(15) { animation-delay: 1.5s; }
.heading .letter:nth-child(16) { animation-delay: 1.6s; }
.heading .letter:nth-child(17) { animation-delay: 1.7s; }
.heading .letter:nth-child(18) { animation-delay: 1.8s; }

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

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.8), 0 0 50px rgba(255, 215, 0, 0.6), 0 0 70px rgba(255, 215, 0, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000% 0;
    }
    100% {
        background-position: 1000% 0;
    }
}

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

/* Tablet styles */
@media (max-width: 992px) {
    .heading {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }
    
    .content-section {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 55px;
        max-width: 200px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #061f2b;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border-top: 2px solid #d4af37;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-link:hover {
        background-color: rgba(212, 175, 55, 0.1);
        transform: translateX(10px);
    }
    
    .heading {
        font-size: 2rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
    
    .heading .letter {
        font-size: inherit;
    }
    
    .banner-section {
        min-height: auto;
        margin-top: 55px;
        padding: 3rem 1.5rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-stats {
        gap: 1.5rem;
    }
    
    .banner-stat-number {
        font-size: 1.5rem;
    }
    
    .banner-cta {
        flex-direction: column;
    }
    
    .banner-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .banner-right {
        height: 400px;
    }
    
    .banner-card {
        padding: 1rem;
    }
    
    .banner-card-icon {
        font-size: 2rem;
    }
    
    .banner-card-text {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 1.5rem 1rem;
        margin-top: 0;
    }
    
    .content-section {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        text-align: center;
    }
    
    .column-left {
        min-height: 300px;
    }
    
    .idea-icon {
        font-size: 1.5rem;
    }
    
    .about-section {
        text-align: left;
    }
    
    .about-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .services-section {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .clients-section {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .clients-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .client-logo {
        width: 200px;
        height: 140px;
    }
    
    .clients-track {
        gap: 2rem;
    }
    
    .footer {
        margin-top: 2rem;
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
        align-items: center;
    }
    
    .footer-logo-column {
        align-items: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-logo-img {
        height: 80px;
        max-width: 280px;
    }
    
    .footer-section {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
        justify-content: center;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .logo {
        height: 45px;
        max-width: 160px;
    }
    
    .heading {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .banner-section {
        min-height: auto;
        margin-top: 50px;
        padding: 2rem 1rem;
    }
    
    .banner-content {
        gap: 2rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 0.95rem;
    }
    
    .banner-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .banner-stat-number {
        font-size: 1.3rem;
    }
    
    .banner-stat-label {
        font-size: 0.75rem;
    }
    
    .banner-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .banner-right {
        height: 300px;
    }
    
    .banner-card {
        padding: 0.8rem;
    }
    
    .banner-card-icon {
        font-size: 1.5rem;
    }
    
    .banner-card-text {
        font-size: 0.7rem;
    }
    
    .banner-shape-1,
    .banner-shape-2,
    .banner-shape-3 {
        display: none;
    }
    
    .container {
        padding: 1rem 0.5rem;
        margin-top: 0;
    }
    
    .content-section {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .services-section {
        margin-top: 2rem;
        padding: 1.5rem 0.5rem;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .clients-section {
        margin-top: 2rem;
        padding: 1.5rem 0.5rem;
    }
    
    .clients-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .client-logo {
        width: 180px;
        height: 130px;
        padding: 0;
    }
    
    .clients-track {
        gap: 1.5rem;
    }
    
    .footer {
        margin-top: 1.5rem;
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-logo-img {
        height: 65px;
        max-width: 220px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-social {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-link {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        top: 55px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .heading {
        font-size: 1.3rem;
    }
    
    .logo {
        height: 40px;
        max-width: 140px;
    }
    
    .banner-section {
        min-height: 300px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-letter {
        font-size: inherit;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .banner-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .clients-title {
        font-size: 1.3rem;
    }
    
    .client-logo {
        width: 150px;
        height: 110px;
    }
    
    .clients-track {
        gap: 1rem;
    }
    
    .footer {
        padding: 1rem 0 0.5rem;
    }
    
    .footer-logo-img {
        height: 55px;
        max-width: 180px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

