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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar-logo img,
.company-logo,
.footer-logo-container img {
    display: inline-block;
}

.top-bar {
    background-color: #FDE869;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo img {
    height: 40px;
    margin: 0; 
}

.company-name {
    font-family: 'Marshal', 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #000;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: #000;
    color: #fff !important;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
}

.contact-bar {
    background-color: #000;
    padding: 0 5%;
    display: flex;
    gap: 3rem;
    height: 80px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #FDE869;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #000;
    font-size: 1.2rem;
}

.contact-item span {
    font-size: 0.9rem;
}

.contact-detail {
    margin-left: 0.5rem;
    color: #FDE869;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/images/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    will-change: transform;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 5%;
}

.text-container {
    max-width: 800px;
}

.title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.tag-line {
    position: absolute;
    top: 0px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 1.5rem;
}

.gear-icon {
    color: #FDE869;
    font-size: 1.5rem;
}

.tag-line p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

.title-container {
    background-color: rgba(253, 232, 105, 0.55);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Mulish', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.title-line {
    display: block;
}

.service-button {
    display: inline-block;
    background-color: #FDE869;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
}

.main-services {
    padding: 5rem 0;
}

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

.main-services h2 {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active {
    border-color: #000;
    background: #fff;
}

.tab-btn:hover {
    border-color: #000;
}

.service-content {
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.service-content-item {
    display: none;
}

.service-content-item.active {
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
}

.service-image {
    flex: 0 0 50%;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
}

.service-details {
    flex: 0 0 50%; 
    padding: 2rem;
}

.service-details h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #FDE869;
    color: #000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
}

.footer {
    background-color: #FDE869;
    padding: 4rem 5% 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin: 0;
}

.footer-logo .tagline {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-logo .description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #FDE869;
    font-size: 1rem;
}

.contact-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: #000;
}

.contact-text p {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #000;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-column h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.link-column a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-column a:hover {
    opacity: 1;
}

.our-services {
    padding: 5rem 0;
}

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

.our-services h2 {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

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

.service-card {
    background-color: #FDE869;
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 300px; 
    text-align: center;
    align-items: center; 
}

.service-card h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4; 
    -webkit-box-orient: vertical;
    max-height: 6.4em; 
    
}

.read-more {
    font-family: 'Inter', sans-serif;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block; 
    border-bottom: 1px solid #000;
    line-height: 1.4; 
    transition: border-color 0.3s ease;
    width: fit-content;
}

.read-more:hover {
    opacity: 0.7;
}

.future-section {
    position: relative;
    display: flex;
    background-image: url('assets/images/construction-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
}

.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(253, 232, 105, 0.85));
}

.future-image {
    position: relative;
    flex: 0 0 40%;
    z-index: 2;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.future-image img {
    width: 300px;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: 100px;
}

.future-content {
    position: relative;
    flex: 0 0 60%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 5rem 3rem;
}

.content-wrapper {
    max-width: 600px;
}

.future-content h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.future-content .main-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.future-content p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #000;
}

.future-content ul {
    list-style: none;
    padding: 0;
}

.future-content ul li {
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #000;
}

.future-content ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDE869;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

.contact-section {
    padding: 5rem 0;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
}

.form-container {
    background-color: #FDE869;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: #fff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.image-container {
    display: flex;
    align-items: center;
    max-height: 400px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border: 1px solid #dc3545;
}

.form-group input:focus:invalid,
.form-group textarea:focus:invalid {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.form-group input:valid,
.form-group textarea:valid {
    border: 1px solid #28a745;
}

.gallery-section {
    padding: 5rem 0;
}

.gallery-section h2 {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.gallery-item:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

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

.about-section {
    padding: 5rem 0;
    background-color: #fff;
}

.about-section h2 {
    text-align: center;
    font-family: 'Mulish', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-description {
    flex: 0 0 60%;
}

.company-intro h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.main-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-item {
    background-color: #FDE869;
    padding: 2rem;
    border-radius: 8px;
}

.company-item h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.company-item p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
}

.about-logos {
    flex: 0 0 40%;
}

.about-logo-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.company-logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Mengubah arah menjadi kolom */
        gap: 2rem;
    }

    /* Mengatur logo ke atas */
    .about-logos {
        order: -1; /* Memindahkan logos ke atas */
        width: 100%;
        margin-bottom: 1rem;
    }

    .about-logo-container {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        padding: 0 1rem;
    }

    .company-logo {
        max-width: 100px;
    }

    /* Mengatur deskripsi */
    .about-description {
        width: 100%;
    }

    .company-intro h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Menyesuaikan card agar tampil satu-satu */
    .company-details {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 2rem; /* Menambah gap agar tidak terlihat card berikutnya */
        padding: 1rem calc((100% - 300px) / 2); /* Memperbesar padding untuk card lebih lebar */
        margin: 0 -1rem;
        -webkit-overflow-scrolling: touch;
    }

    .company-item {
        flex: 0 0 300px; /* Memperbesar lebar card */
        scroll-snap-align: center;
        min-height: 300px;
        padding: 1.5rem;
        margin: 0 1rem; /* Menambah margin untuk memastikan spacing */
    }

    /* Hide scrollbar */
    .company-details::-webkit-scrollbar {
        display: none;
    }

    .company-details {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .main-desc {
        text-align: center;
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .hamburger {
        display: block;
    }

    .service-content-item.active {
        flex-direction: column;
    }
    
    .service-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 40%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #FDE869;
        padding: 1rem;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .contact-bar {
        display: none;
    }

    .top-bar {
        position: relative;
    }

    .company-name {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        gap: 0.5rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .cta-button {
        width: auto;
        margin: 0.5rem auto;
    }

    .hero {
        height: 100vh;
        background-image: url('/assets/images/Hero_mobile.webp');
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .hero-content {
        padding: 0;
        justify-content: center;
        text-align: center;
    }

    .text-container {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .title-line {
        color: #000;
    }

    .title-container {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
        padding: 2rem 1.5rem;
        background-color: rgba(253, 232, 105, 0.55);
    }

    .tag-line {
        order: 2;
        position: absolute;
        width: fit-content;
        top: 160px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .tag-line p {
        font-size: 0.9rem;
    }

    .service-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        justify-content: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-services h2 {
        font-size: 2rem;
    }

    .service-details h3 {
        font-size: 1.8rem;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .service-card {
        flex: 0 0 280px;
        height: 300px;
        scroll-snap-align: center;
        margin-right: 0;
    }

    .service-card:last-child {
        margin-right: 0;
    }

    /* Hide scrollbar but keep functionality */
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .services-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 1rem calc((100% - 280px) / 2);
        margin: 0 -1rem;
    }

    .service-card:last-child {
        margin-right: auto;
    }

    .container {
        padding: 0;
    }

    .future-section {
        flex-direction: column;
        background-attachment: scroll;
    }

    .future-section::before {
        background: rgba(253, 232, 105, 0.5);
    }

    .future-image {
        display: none;
    }

    .future-content {
        padding: 4rem 1.5rem;
        width: 100%;
    }

    .content-wrapper {
        width: 100%;
    }

    .future-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .future-content .main-desc {
        font-size: 1rem;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .image-container {
        display: none;
    }

    .form-container {
        padding: 1.5rem;
    }

    .our-services {
        padding: 3rem 0 1rem;
    }

    .our-services .container {
        padding: 0 calc(50% - 140px);
    }

    
    .contact-section {
        padding: 3rem 0 -1rem; 
    }

    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 280px;
        scroll-snap-align: start;
        margin-right: 1rem;
    }

    .gallery-item:last-child {
        margin-right: 0;
    }

    /* Hide scrollbar but keep functionality */
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (min-width: 428px) and (max-width: 428px) {
    .hero {
        height: 100vh;
        background-image: url('/assets/images/Hero_mobile.webp');
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .text-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-container {
        width: 100%;
        padding: 2rem 1.5rem;
        margin-bottom: 0; /* Menghilangkan margin bottom */
        background-color: rgba(253, 232, 105, 0.55);
    }

    .tag-line {
        width: 100%;
        position: static; /* Mengubah dari absolute ke static */
        display: flex;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .service-button {
        margin-top: 2rem;
    }

    /* Mengatur urutan dengan flexbox */
    .title-wrapper {
        display: flex;
        flex-direction: column;
    }

    .title-container {
        order: 1;
    }

    .service-button {
        order: 2;
    }

    .tag-line {
        order: 3;
    }
}

/* Style tambahan untuk device dengan tinggi lebih dari 800px */
@media (min-width: 428px) and (max-width: 428px) and (min-height: 800px) {
    .title-wrapper {
        margin-bottom: 4rem;
    }

    .tag-line {
        top: 200px;
    }

    .service-button {
        margin-top: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .tag-line {
        margin-bottom: 1rem;
        padding: 0.6rem 1rem;
    }

    .text-container {
        width: 100%;
    }

    .main-services {
        padding: 3rem 0;
    }

    .section-desc {
        margin-bottom: 2rem;
    }

    .service-details {
        padding: 0;
    }

    .service-card {
        flex: 0 0 260px;
        height: 300px;
    }

    .our-services h2 {
        font-size: 2rem;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-item {
        flex: 0 0 260px;
        height: 260px;
    }

    .company-logo {
        max-width: 80px;
    }

    .company-item {
        flex: 0 0 260px;
    }

    .company-details {
        padding: 1rem calc((100% - 260px) / 2);
    }
}