body {
    margin: 0;
    padding: 0;
    background: #202020;
    overflow-x: hidden;
    height: auto;
    width: 100%;
}

.navbar {
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #0F0F0F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

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

.dot {
    width: 12px;
    height: 12px;
    background: #5DD62C;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.logo-text {
    color: #F8F8F8;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: #F8F8F8;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 18px;
    border-radius: 22px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}

.navbar-links li a:hover {
    color: #5DD62C;
    background: rgba(93, 214, 44, 0.08);
}

.contact-btn {
    background: #5DD62C;
    color: #202020 !important;
    border-radius: 22px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(93, 214, 44, 0.08);
    transition: background 0.2s, color 0.2s;
    border: 1.5px solid transparent;
}

.contact-btn:hover {
    background: #337418;
    color: #F8F8F8 !important;
    border: 1.5px solid #337418;
}

img[alt='Buildix Right Image'] {
    animation: none;
}

.floating-box {
    background: #0F0F0F;
    color: #F8F8F8;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 10px 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.13rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    min-width: 80px;
    margin: 0;
}

.floating-box span[style*="font-size:1.2em"] {
    font-size: 1.2em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
}

.floating-up {
    animation: floatUpDownBox 4.5s ease-in-out infinite;
}
.floating-down {
    animation: floatUpDownBox 4.5s ease-in-out infinite reverse;
}
@keyframes floatUpDownBox {
    0% { transform: translateY(0); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0); }
}

.main-heading {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #F8F8F8;
    font-size: 2.7rem;
    font-weight: 800;
    margin: 0 0 0 0;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(15, 15, 15, 0.18);
}

.main-desc {
    color: #B0B0B0;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.18rem;
    margin: 22px 0 32px 0;
    max-width: 480px;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.main-btns {
    display: flex;
    gap: 18px;
}

.green-highlight {
    color: #5DD62C;
    font-weight: 800;
}

.theme-btn {
    background: #5DD62C;
    color: #202020;
    padding: 12px 34px;
    border-radius: 22px;
    font-weight: bold;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
    border: 1.5px solid #5DD62C;
    box-shadow: 0 2px 8px rgba(93, 214, 44, 0.08);
    display: inline-block;
    outline: none;
}

.theme-btn:hover, .theme-btn:focus {
    background: #337418;
    color: #F8F8F8;
    border: 1.5px solid #337418;
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(51, 116, 24, 0.18);
}

.theme-btn:active {
    background: #202020;
    color: #5DD62C;
    border: 1.5px solid #5DD62C;
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(93, 214, 44, 0.10);
    transition: background 0.12s, color 0.12s, transform 0.12s, box-shadow 0.12s;
}

.welcome-text {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #B0FFB0;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(15, 15, 15, 0.10);
    background: rgba(15, 15, 15, 0.10);
    padding: 7px 22px 7px 12px;
    border-radius: 12px 22px 18px 8px;
    display: inline-block;
}

.welcome-text span {
    color: #5DD62C;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-section {
    background: #0F0F0F;
    padding: 30px 40px 30px 40px;
    min-height: 60vh;
    position: relative;
}

.about-bg-img {
    position: absolute;
    right: 171px;
    bottom: 64px;
    width: 150px;
    max-width: 18vw;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.about-heading .green {
    color: #5DD62C;
}

.about-heading .white {
    color: #fff;
}

/* Remove old heading line styles */
.heading-line {
    display: none;
}

/* New professional heading style */
.about-heading, .services-heading, .testimonials-heading, .contact-heading, .why-choose-heading {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.about-heading::after, .services-heading::after, .testimonials-heading::after, .contact-heading::after, .why-choose-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #5DD62C 0%, rgba(93, 214, 44, 0.3) 50%, transparent 100%);
}

/* Center the gradient line for mobile */
@media (max-width: 1024px) {
    .about-heading::after, .services-heading::after, .testimonials-heading::after, .contact-heading::after, .why-choose-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.about-text {
    color: #F8F8F8;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.about-text strong {
    color: #5DD62C;
    font-weight: 600;
}

.services-section {
    background: #202020;
    padding: 80px 40px;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.services-heading .green {
    color: #5DD62C;
}

.services-heading .white {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: #0F0F0F;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(93, 214, 44, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    border-color: #5DD62C;
    box-shadow: 0 0 20px rgba(93, 214, 44, 0.3);
}

.service-box:hover::before {
    transform: translateX(100%);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #5DD62C;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(93, 214, 44, 0.2);
}

.service-box:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 4px 12px rgba(93, 214, 44, 0.3);
}

.service-box h3 {
    color: #5DD62C;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-box p {
    color: #F8F8F8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-box:hover p {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .service-box:hover {
        transform: scale(1.03) translateY(-3px);
        background: linear-gradient(145deg, #181818, #0F0F0F);
        border: 1px solid #5DD62C;
        box-shadow: 0 0 25px rgba(93, 214, 44, 0.4), inset 0 0 10px rgba(93, 214, 44, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-box:hover .service-icon {
        transform: scale(1.3) rotate(8deg);
        text-shadow: 0 0 18px rgba(93, 214, 44, 0.5);
    }
    
    .service-box:hover h3 {
        transform: translateY(-3px);
        text-shadow: 0 0 10px rgba(93, 214, 44, 0.3);
        transition: all 0.3s ease;
    }
    
    .service-box:hover p {
        color: #ffffff;
    }
    
    /* Add a pulsing border animation on hover */
    @keyframes pulseBorder {
        0% { border-color: rgba(93, 214, 44, 0.4); }
        50% { border-color: rgba(93, 214, 44, 0.8); }
        100% { border-color: rgba(93, 214, 44, 0.4); }
    }
    
    .service-box:hover {
        animation: pulseBorder 1.5s infinite;
    }
}

.main-glass-info {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    background: #0F0F0F;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    border: 1.5px solid rgba(93, 214, 44, 0.18);
    padding: 18px 24px;
    align-items: center;
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    font-family: 'Montserrat', 'Inter', 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
}

.glass-item {
    color: #F8F8F8;
    font-size: 1.13rem;
    font-weight: bold;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-style: normal;
    font-family: 'Montserrat', 'Inter', 'Poppins', Arial, sans-serif;
}

.glass-item .green-highlight {
    color: #5DD62C;
    font-weight: 700;
    font-size: 1.18em;
    font-style: normal;
}

.glass-item.trusted-item {
    order: 1;
}

@media (max-width: 900px) {
    .main-glass-info {
        padding: 16px 18px;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }
    
    .form-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .whatsapp-btn {
        margin-left: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

.why-choose-section {
    background: #0F0F0F;
    padding: 60px 40px;
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
    padding-left: 40px;
}

.why-choose-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 5px 0; /* Reduce bottom margin to bring line closer */
    font-family: 'Segoe UI', Arial, sans-serif;
}

.why-choose-heading .green {
    color: #5DD62C;
}

.why-choose-heading .white {
    color: #fff;
}

/* Remove any previous line styles */
.why-choose-heading .green::after {
    display: none;
}

/* Add the green line like other sections */
.why-choose-heading + .heading-line {
    width: 60px;
    height: 4px;
    background: #5DD62C;
    margin: 15px 0 30px;
    border-radius: 2px;
    display: block;
}

.why-choose-desc {
    color: #F8F8F8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 50px 0;  /* Much bigger bottom margin to push points down */
    font-family: 'Segoe UI', Arial, sans-serif;
    opacity: 0.9;
    max-width: 90%;
}

.why-choose-desc .green-highlight {
    color: #5DD62C;
    font-weight: 600;
}

.why-choose-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%;
    margin-top: 20px;  /* Additional top margin for points */
}

.point-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F8F8F8;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', 'Inter', 'Poppins', Arial, sans-serif;
    background: rgba(93, 214, 44, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(93, 214, 44, 0.1);
    transition: all 0.3s ease;
}

.point-box:hover {
    background: rgba(93, 214, 44, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(93, 214, 44, 0.3);
    border-color: rgba(93, 214, 44, 0.2);
}

.point-icon {
    font-size: 1.4rem;
}

.why-choose-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 45%;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .why-choose-container {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-content {
        padding-left: 0;
    }

    .why-choose-desc, .why-choose-points {
        max-width: 100%;
    }

    .why-choose-image {
        justify-content: center;
        max-width: 80%;
    }

    .why-choose-points {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .point-box {
        justify-content: center;
    }

    .why-choose-content .heading-line {
        margin: 15px auto 30px;
    }
    
    .why-choose-heading {
        margin: 0 0 8px 0;
    }
    
    .why-choose-desc {
        margin: 0 auto 50px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }
    
    /* About Section Mobile */
    .about-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-content {
        width: 100%;
        padding: 15px 0;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .heading-line {
        margin: 15px auto 25px;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }
    
    /* Footer spacing fixes - much tighter spacing */
    .footer-container {
        gap: 5px !important;
        padding: 0 15px 5px !important;
    }
    
    .footer-col {
        margin-bottom: 0 !important;
        padding: 5px 0 !important;
    }
    
    .footer-heading {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        font-size: 1.15rem !important;
    }
    
    .footer-heading::after {
        margin: 3px auto 0 !important;
        width: 25px !important;
        height: 2px !important;
    }
    
    .footer-links li {
        margin-bottom: 3px !important;
    }
    
    .footer-contact-list li {
        margin-bottom: 3px !important;
    }
    
    .footer-links a, .footer-contact-list li {
        font-size: 0.9rem !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }
    
    .footer-socials {
        margin: 5px auto !important;
        gap: 8px !important;
    }
    
    .footer-desc {
        margin-bottom: 5px !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .footer-bottom {
        padding: 8px 15px !important;
    }
    
    .brand-col .navbar-logo {
        margin: 0 auto 3px !important;
    }
    
    /* Make footer socials smaller */
    .footer-social {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
}

.testimonials-section {
    background: #202020;
    padding: 80px 40px;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: left;
    padding-left: 0;
}

.testimonials-heading .green {
    color: #5DD62C;
}

.testimonials-heading .white {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-box {
    background: #0F0F0F;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    border-color: #5DD62C;
    box-shadow: 0 0 20px rgba(93, 214, 44, 0.3);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #5DD62C;
    transition: all 0.3s ease;
}

.testimonial-box:hover .testimonial-image {
    box-shadow: 0 0 30px rgba(93, 214, 44, 0.4);
}

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

.testimonial-name {
    color: #F8F8F8;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: -5px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    color: #FFD700;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.star-icon.half {
    position: relative;
    color: #FFD700;
    opacity: 0.5;
}

.testimonial-text {
    color: #B0B0B0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

.contact-section {
    background: #0F0F0F;
    padding: 80px 40px;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    flex: 1;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-heading .green {
    color: #5DD62C;
}

.contact-heading .white {
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #202020;
    border: 2px solid #5DD62C;
    border-radius: 12px;
    color: #F8F8F8;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(93, 214, 44, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn, .whatsapp-btn {
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
}

.submit-btn {
    background: #5DD62C;
    color: #202020;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.submit-btn:hover {
    background: #337418;
    color: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 214, 44, 0.2);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #202020;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    position: absolute;
}

.submit-btn.loading .btn-text {
    visibility: hidden;
}

.submit-btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(93, 214, 44, 0.1);
    border: 1px solid #5DD62C;
    color: #5DD62C;
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.whatsapp-fallback-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background-color: #25D366;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.whatsapp-fallback-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    border: none;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    color: #fff;
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .contact-form {
        width: 100%;
    }
    
    .submit-btn, .whatsapp-btn {
        width: 100%;
        margin: 10px 0;
    }
    
    .whatsapp-btn {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-image {
        max-width: 100%;
    }
}

/* Complete Footer Redesign */
.footer-section {
    background: linear-gradient(180deg, #151515, #0a0a0a);
    color: #F8F8F8;
    padding: 70px 0 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px 30px;
    position: relative;
}

/* Top part with logo and description */
.footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.footer-top .navbar-logo {
    justify-content: center;
    margin: 0 auto 20px;
}

.footer-desc {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 40px;
}

/* Middle section with links and contact */
.footer-middle {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

.links-col, .contact-col {
    min-width: 250px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

/* Remove the underline for footer headings */
.footer-heading::after {
    display: none;
}

/* Keep the divider line at the bottom of footer */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #5DD62C, transparent);
    margin: 0 auto;
    width: 100%;
    opacity: 0.7;
}

.footer-bottom {
    background: rgba(15, 15, 15, 0.4);
    padding: 25px 40px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-weight: 500;
    color: #F8F8F8;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.footer-designed {
    display: flex;
    align-items: center;
    color: #F8F8F8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    gap: 6px;
}

.footer-heart {
    color: #FF2D55;
    display: inline-flex;
    font-size: 1.1rem;
    animation: gentleHeartBeat 2.5s ease-in-out infinite;
    position: relative;
    margin: 0 2px;
}

@keyframes gentleHeartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness for footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .footer-copyright, .footer-designed {
        width: 100%;
        justify-content: center;
        text-align: center;
}
}

/* Social media icons */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Links and contact styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 5px 0;
    width: fit-content;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-contact-list i {
    color: #5DD62C;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(93, 214, 44, 0.1);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .footer-section {
        padding: 50px 0 0 0;
}

    .footer-container {
        padding: 0 20px 30px;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 40px;
    align-items: center;
    }
    
    .links-col, .contact-col {
        text-align: center;
        width: 100%;
}

    .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

    .footer-links a, .footer-contact-list li {
        justify-content: center;
        margin: 0 auto;
        width: fit-content;
}

    .footer-bottom {
        padding: 20px;
        gap: 12px;
    }
}

/* Restore hover effects for footer links and social icons */
.footer-links a:hover {
    color: #5DD62C;
    transform: translateX(8px);
}

.footer-links i {
    color: #5DD62C;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    background: rgba(93, 214, 44, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer-links a:hover i {
    transform: translateX(3px);
    background: rgba(93, 214, 44, 0.2);
}

.footer-contact-list i {
    color: #5DD62C;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(93, 214, 44, 0.1);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: none;
    box-shadow: none;
}

.footer-contact-list li:hover {
    color: #cccccc;
    }
    
.footer-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    }
    
.footer-social:hover::before {
    transform: translateX(100%);
}

.footer-social.facebook:hover { 
    background: #1877F3; 
    box-shadow: 0 0 15px rgba(24, 119, 243, 0.4);
    transform: translateY(-5px);
    }
    
.footer-social.youtube:hover { 
    background: #FF0000; 
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
    }
    
.footer-social.tiktok:hover { 
    background: #000; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
.footer-social.whatsapp:hover { 
    background: #25D366; 
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

/* --- Animations --- */
@keyframes logoPopIn {
  0% { opacity: 0; transform: scale(0.7) translateY(-30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.navbar-logo.animated {
  animation: logoPopIn 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-80px); }
  100% { opacity: 1; transform: translateX(0); }
}
.homepage-left.animated {
  animation: slideInLeft 1s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}
.homepage-right.animated {
  animation: slideInRight 1s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.section-fadeup {
  opacity: 1;
  transform: translateY(0);
  transition: none;
  will-change: auto;
}
.section-fadeup.animated {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

@keyframes navbarLogoIn {
  0% { opacity: 0; transform: translateX(-40px) scale(0.9); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
.navbar-logo.animated {
  animation: navbarLogoIn 0.85s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes navbarLinksIn {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
.navbar-links.animated {
  animation: navbarLinksIn 0.75s cubic-bezier(0.4,0,0.2,1) forwards;
  will-change: transform, opacity;
}

@keyframes slideInLeftSmooth {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}
.homepage-left.animated {
  animation: slideInLeftSmooth 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes slideInRightSmooth {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}
.homepage-right.animated {
  animation: slideInRightSmooth 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* --- Mobile Responsiveness --- */

/* Mobile Menu Toggle - move to the right */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
    margin-right: 15px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #5DD62C;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Media Queries for Mobile */
@media (max-width: 992px) {
    /* Prevent horizontal scrolling but allow vertical */
    html, body {
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        position: relative;
        max-width: 100%;
        height: auto;
    }
    
    /* Table should not have fixed height on mobile */
    table[style*="height: 92vh;"] {
        display: block;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow: visible;
    }
    
    /* Navbar Mobile - revised structure */
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    /* Add padding to body to account for fixed navbar */
    body {
        padding-top: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .navbar-logo {
        order: 1;
        margin: 0;
    }
    
    .navbar-links {
        order: 2;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #0F0F0F;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 100;
        padding: 60px 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-links.active {
        right: 0;
    }
    
    .navbar-links li {
        margin: 15px 0;
    }
    
    /* Homepage Mobile - limit width */
    table[style*="height: 92vh;"] {
        display: block;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    table[style*="height: 92vh;"] tr, 
    table[style*="height: 92vh;"] td {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    table[style*="height: 92vh;"] td[class*="homepage-left"] {
        padding: 30px 15px 20px 15px !important;
        box-sizing: border-box;
    }
    
    table[style*="height: 92vh;"] td[class*="homepage-right"] {
        padding: 0px 15px 30px 15px !important;
        box-sizing: border-box;
    }
    
    /* Constrain all elements to fit within viewable area */
    .homepage-left > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding-right: 15px;
    }
    
    /* Fix layout structure to match PC more closely */
    .homepage-left > div > div {
        max-width: 100%;
    }
    
    /* Welcome text - maintain PC style but fit mobile */
    .welcome-text {
        text-align: left;
        display: inline-block;
        margin-bottom: 0.7rem !important;
        margin-left: 0 !important;
        font-size: 0.9rem !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix vertical line to be smaller on mobile */
    .vertical-line, 
    div[style*="width: 6px; height: 60px; background: #5DD62C"] {
        margin-right: 15px !important;
        height: 45px !important;
        width: 4px !important;
        display: inline-block !important;
        min-height: 45px !important;
        border-radius: 3px !important;
    }
    
    /* Content container */
    .main-content-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow: visible !important;
    }
    
    .main-content-wrapper > div {
        max-width: calc(100% - 25px) !important;
        box-sizing: border-box;
    }
    
    /* Main heading and description */
    .main-heading {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-top: 0 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        word-wrap: break-word;
        position: relative;
        z-index: 2;
    }
    
    .main-desc {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        text-align: left !important;
        margin: 12px 0 20px 0 !important;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }
    
    /* Show decorative image on mobile */
    img[alt="Decorative Small"] {
        display: block !important;
        position: absolute !important;
        left: 5px !important;
        right: auto !important;
        top: 130px !important;
        width: 35px !important;
        opacity: 0.8;
        z-index: 1;
        border-radius: 10px;
    }
    
    /* Keep buttons aligned left like on PC */
    .main-btns {
        flex-direction: row !important;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-start !important;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }
    
    .theme-btn {
        min-width: 120px;
        text-align: center;
        padding: 10px 24px !important;
        font-size: 1rem !important;
    }
    
    /* Ensure "Why Choose Us" heading line is visible */
    .heading-line {
        width: 60px;
        height: 4px;
        background: #5DD62C;
        margin-bottom: 30px;
        border-radius: 2px;
        display: block !important;
    }
    
    /* Glass info box - make it similar to PC */
    .main-glass-info {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        padding: 12px 15px !important;
        justify-content: center !important;
        overflow-x: visible !important;
        white-space: normal !important;
        gap: 10px !important;
        margin: 25px auto 0 !important;
        max-width: 95% !important;
    }
    
    .glass-item {
        padding: 5px 10px !important;
        margin-bottom: 5px !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        flex: 0 0 auto !important;
    }
    
    /* Floating boxes - fix positioning for mobile */
    .homepage-right {
        position: relative !important;
        min-height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 0 !important;
        text-align: center;
    }
    
    .homepage-right > div {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        text-align: center;
    }
    
    .floating-box {
        position: absolute !important;
        z-index: 3 !important;
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
        box-sizing: border-box;
        white-space: nowrap;
        max-width: 170px;
    }
    
    .floating-box.floating-up {
        right: 5% !important;
        top: 5px !important;
    }
    
    .floating-box.floating-down {
        left: 5% !important;
        bottom: 20% !important;
    }
    
    /* Ensure images fit properly and maintain aspect ratio */
    img[alt="Buildix Right Image"] {
        max-width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Form buttons - ensure Send is first, then WhatsApp */
    .form-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .form-buttons .submit-btn {
        order: 1;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .form-buttons .whatsapp-btn {
        order: 2;
        width: 100%;
        margin-left: 0;
    }
    
    /* Form inputs for better mobile experience */
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Remove animation prevention to allow section animations */
    .section-fadeup {
        opacity: 0;
        transform: translateY(60px);
        transition: none !important;
    }
    
    /* Add more space between heading and text in Why Choose Us section */
    .why-choose-heading {
        margin-bottom: 35px !important;
    }
    
    .why-choose-content {
        padding-top: 20px;
    }
    
    .why-choose-desc {
        margin-top: 25px !important; 
        margin-bottom: 25px !important;
    }
    
    /* Glass info items - reorder for mobile */
    .main-glass-info {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        padding: 15px !important;
        gap: 12px !important;
        margin: 25px auto 0 !important;
        max-width: 95% !important;
        background: rgba(15, 15, 15, 0.8) !important;
        border-radius: 14px !important;
        border: 1.5px solid rgba(93, 214, 44, 0.25) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Change order and styling for mobile */
    .glass-item:nth-child(3) { 
        order: 1 !important; 
        grid-column: 1 / span 1 !important;
        grid-row: 1 !important;
        border-right: 1px solid rgba(93, 214, 44, 0.15) !important;
        padding-right: 10px !important;
    }
    
    .glass-item:nth-child(2) { 
        order: 2 !important; 
        grid-column: 2 / span 1 !important;
        grid-row: 1 !important;
    }
    
    .glass-item:nth-child(1) { 
        order: 3 !important; 
        grid-column: 1 / span 2 !important;
        grid-row: 2 !important;
        border-top: 1px solid rgba(93, 214, 44, 0.15) !important;
        padding-top: 10px !important;
        margin-top: 5px !important;
    }
    
    .glass-item {
        padding: 5px !important;
        margin: 0 !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Make headings bigger */
    .about-heading, .services-heading, .testimonials-heading, 
    .contact-heading, .why-choose-heading {
        font-size: 2.3rem !important;
        text-align: center !important;
        font-weight: 700 !important;
    }
    
    /* Adjust heading lines to match bigger headings */
    .heading-line,
    .services-container .heading-line, 
    .testimonials-container .heading-line, 
    .contact-form .heading-line,
    .why-choose-content .heading-line {
        width: 70px !important;
        height: 5px !important;
        margin: 12px auto 25px !important;
        display: block !important;
    }
    
    /* Services section container centering */
    .services-container {
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    /* Testimonials section container centering */
    .testimonials-container {
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    /* Contact form centering */
    .contact-form {
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    /* Why Choose Us content centering */
    .why-choose-content {
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    /* Fix floating boxes to stay within bounds */
    .floating-box.floating-up {
        right: 5% !important;
        top: 5px !important;
    }
    
    .floating-box.floating-down {
        left: 5% !important;
        bottom: 20% !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .main-heading {
        font-size: 1.5rem !important;
    }
    
    .main-desc {
        font-size: 0.85rem !important;
    }
    
    .vertical-line, 
    div[style*="width: 6px; height: 90px; background: #5DD62C"] {
        height: 60px !important;
        min-height: 60px !important;
    }
    
    .theme-btn {
        min-width: 110px;
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
    
    .main-glass-info {
        flex-wrap: wrap;
        justify-content: space-between !important;
    }
    
    .glass-item {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
}

@media (max-width: 992px) {
    /* Hide oky.jpg on mobile */
    .about-bg-img {
        display: none !important;
    }
    
    /* Reposition cs.jpg to the left */
    .decorative-img {
        display: block !important;
        position: absolute !important;
        left: 5px !important; /* Move it 5px left */
        right: auto !important;
        top: 140px !important;
        width: 30px !important;
        opacity: 0.8;
        z-index: 1;
        border-radius: 10px;
    }
    
    /* Hide contact image in mobile */
    .contact-image {
        display: none !important;
    }
    
    /* Glass info items - reorder for mobile */
    .main-glass-info {
        flex-direction: row !important;
        flex-wrap: wrap;
        padding: 12px 15px;
        justify-content: center !important;
    }
    
    .glass-item.trusted-item {
        order: -1 !important; /* Make it appear first */
        margin-right: 10px;
    }
    
    .glass-item {
        padding: 2px 5px;
        margin-bottom: 5px;
        white-space: nowrap;
        text-align: center;
    }
}

/* Decorative image - hide on desktop, only show on mobile */
.decorative-img {
    display: none; /* Hide on desktop */
}

@media (max-width: 992px) {
    /* Show decorative image only on mobile */
    .decorative-img {
        display: block !important;
        position: absolute !important;
        left: 5px !important; /* Move it 5px left */
        top: 130px !important;
        width: 35px !important;
        opacity: 0.8;
        z-index: 1;
        border-radius: 10px;
    }
    
    /* About background image positioning for mobile */
    .about-bg-img {
        display: none !important;
    }
    
    /* Add more space between heading and text in Why Choose Us section */
    .why-choose-heading {
        margin-bottom: 35px !important;
    }
    
    .why-choose-desc {
        margin-top: 20px !important;
    }
    
    /* Footer mobile adjustments */
    .footer-col {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
        margin: 20px auto;
    }
    
    .footer-contact-list li, .footer-links li {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        margin: 6px auto 0;
    }
    
    /* Center Buildix in footer */
    .brand-col .navbar-logo {
        justify-content: center;
        margin: 0 auto 10px;
    }
    
    /* Social icons with permanent colors in mobile */
    .footer-social.facebook { 
        color: #fff; 
        background: #1877F3; 
        box-shadow: 0 0 5px rgba(24, 119, 243, 0.4);
    }
    
    .footer-social.youtube { 
        color: #fff; 
        background: #FF0000; 
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
    }
    
    .footer-social.tiktok { 
        color: #fff; 
        background: #000; 
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    }
    
    .footer-social.whatsapp { 
        color: #fff; 
        background: #25D366; 
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
    }
    
    /* Animation for sections on scroll */
    .section-fadeup {
        animation: mobileScrollFade 0.8s ease-in-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Adjust the WhatsApp button in the contact form */
.form-buttons .whatsapp-btn {
    margin-top: -5px;
}

/* Social icons with glow in footer */
.footer-social.facebook:hover { 
    color: #fff; 
    background: #1877F3; 
    box-shadow: 0 0 15px rgba(24, 119, 243, 0.4);
}

.footer-social.youtube:hover { 
    color: #fff; 
    background: #FF0000; 
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.footer-social.tiktok:hover { 
    color: #fff; 
    background: #000; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.footer-social.whatsapp:hover { 
    color: #fff; 
    background: #25D366; 
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Desktop form buttons */
@media (min-width: 768px) {
    .form-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .submit-btn, .whatsapp-btn {
        width: auto;
        margin: 0;
    }
    
    .whatsapp-btn {
        margin-left: 15px;
        margin-top: 0;
    }
}

/* About section background image positions */
.about-bg-img {
    position: absolute;
    right: 171px;
    bottom: 64px;
    width: 150px;
    max-width: 18vw;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 992px) {
    /* Reposition about-bg-img (oky.jpg) for mobile - at the end of paragraph near fullstop */
    .about-bg-img {
        position: absolute !important;
        right: 30px !important;
        bottom: 35px !important;
        width: 70px !important;
        max-width: 18vw !important;
        opacity: 0.9;
        z-index: 1;
        animation: floatImage 3s ease-in-out infinite;
    }
    
    /* Reposition cs.jpg to the left */
    .decorative-img {
        display: block !important;
        position: absolute !important;
        left: 10px !important; /* Move it to the left by 10px */
        right: auto !important;
        top: 140px !important;
        width: 30px !important;
        opacity: 0.8;
        z-index: 1;
        border-radius: 10px;
    }
    
    /* Hide contact image in mobile */
    .contact-image {
        display: none !important;
    }
    
    /* Glass info items - reorder for mobile */
    .main-glass-info {
        flex-direction: row !important;
        flex-wrap: wrap;
        padding: 12px 15px;
        justify-content: center !important;
    }
    
    .glass-item.trusted-item {
        order: -1 !important; /* Make it appear first */
        margin-right: 10px;
    }
    
    .glass-item {
        padding: 2px 5px;
        margin-bottom: 5px;
        white-space: nowrap;
        text-align: center;
    }
}

/* Desktop specific styles */
@media (min-width: 993px) {
    /* About background image for desktop */
    .about-bg-img {
        position: absolute;
        right: 171px;
        bottom: 64px;
        width: 150px;
        max-width: 18vw;
        opacity: 1;
        z-index: 1;
        pointer-events: none;
        user-select: none;
    }
    
    /* No decorative-img on desktop */
    .decorative-img {
        display: none;
    }
    
    /* Desktop form buttons */
    .form-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .submit-btn, .whatsapp-btn {
        width: auto;
        margin: 0;
    }
    
    .whatsapp-btn {
        margin-left: 15px;
        margin-top: 0;
    }
}

/* Mobile styles are consolidated */

/* Animation for oky.jpg */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Animation for mobile sections */
@keyframes mobileScrollFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Animation Optimizations and Footer Heading Color Fixes */

/* Homepage animations optimization */
.homepage-left.animated, .homepage-right.animated {
    will-change: transform, opacity;
}

/* Optimize section fade up animations */
.section-fadeup {
    opacity: 1;
    transform: translateY(0);
    transition: none;
    will-change: auto;
}

.section-fadeup.animated {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

/* Smoother animation keyframes */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes navbarLinksIn {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes navbarLogoIn {
    0% { opacity: 0; transform: translateX(-40px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Optimize floating animations */
@keyframes floatUpDownBox {
    0% { transform: translateY(0); }
    50% { transform: translateY(12px); }
    100% { transform: translateY(0); }
}

/* Optimize heartbeat animation */
@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Footer Section Green Headings and Optimization */
.footer-section {
    background: linear-gradient(180deg, #151515, #0a0a0a);
    color: #F8F8F8;
    padding: 70px 0 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px 30px;
    position: relative;
}

/* Top part with logo and description */
.footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.footer-top .navbar-logo {
    justify-content: center;
    margin: 0 auto 20px;
}

.footer-desc {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 40px;
}

/* Middle section with links and contact */
.footer-middle {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

.links-col, .contact-col {
    min-width: 250px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

/* Remove the underline for footer headings */
.footer-heading::after {
    display: none;
}

/* Keep the divider line at the bottom of footer */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #5DD62C, transparent);
    margin: 0 auto;
    width: 100%;
    opacity: 0.7;
}

.footer-bottom {
    background: rgba(15, 15, 15, 0.4);
    padding: 25px 40px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-weight: 500;
    color: #F8F8F8;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.footer-designed {
    display: flex;
    align-items: center;
    color: #F8F8F8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    gap: 6px;
}

.footer-heart {
    color: #FF2D55;
    display: inline-flex;
    font-size: 1.1rem;
    animation: gentleHeartBeat 2.5s ease-in-out infinite;
    position: relative;
    margin: 0 2px;
}

@keyframes gentleHeartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness for footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .footer-copyright, .footer-designed {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Social media icons */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Links and contact styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 5px 0;
    width: fit-content;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-contact-list i {
    color: #5DD62C;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(93, 214, 44, 0.1);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .footer-section {
        padding: 50px 0 0 0;
    }
    
    .footer-container {
        padding: 0 20px 30px;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .links-col, .contact-col {
        text-align: center;
        width: 100%;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a, .footer-contact-list li {
        justify-content: center;
        margin: 0 auto;
        width: fit-content;
    }
    
    .footer-bottom {
        padding: 20px;
        gap: 12px;
    }
}

/* Restore hover effects for footer links and social icons */
.footer-links a:hover {
    color: #5DD62C;
    transform: translateX(8px);
    }
    
.footer-links i {
    color: #5DD62C;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    background: rgba(93, 214, 44, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer-links a:hover i {
    transform: translateX(3px);
    background: rgba(93, 214, 44, 0.2);
}

.footer-contact-list i {
    color: #5DD62C;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(93, 214, 44, 0.1);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: none;
    box-shadow: none;
}

.footer-contact-list li:hover {
    color: #cccccc;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.footer-social:hover::before {
    transform: translateX(100%);
}

.footer-social.pinterest { 
    background: #E60023; 
    box-shadow: 0 0 8px rgba(230, 0, 35, 0.3);
}
.footer-social.pinterest:hover { 
    background: #E60023; 
    box-shadow: 0 0 15px rgba(230, 0, 35, 0.4);
    transform: translateY(-5px);
}

.footer-social.youtube:hover { 
    background: #FF0000; 
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
    }
    
.footer-social.tiktok:hover { 
    background: #000; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-social.whatsapp:hover { 
    background: #25D366; 
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

.floating-box .green {
    color: #5DD62C;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 3px;
}

/* Fix Why Choose Us heading line to match other sections */
.why-choose-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 5px 0; /* Reduce bottom margin to bring line closer */
    font-family: 'Segoe UI', Arial, sans-serif;
}

.why-choose-heading .green {
    color: #5DD62C;
}

.why-choose-heading .white {
    color: #fff;
}

.why-choose-content .heading-line {
    width: 60px;
    height: 4px;
    background: #5DD62C;
    margin-bottom: 30px;
    margin-top: 0; /* Remove any top margin */
    border-radius: 2px;
    display: block;
    margin-left: 0;
}

@media (max-width: 1024px) {
    .why-choose-content {
        text-align: center;
    }
    
    .why-choose-content .heading-line {
        margin: 15px auto 30px;
    }
}

/* Mobile styles */
@media (max-width: 1024px) {
    .why-choose-content {
        text-align: center;
    }
    
    .why-choose-content .heading-line {
        margin-left: auto;  /* Center in mobile */
        margin-right: auto;
    }
}

#contactForm {
    margin-top: 50px;
}

@media (max-width: 768px) {
    #contactForm {
        margin-top: 40px;
    }
}
