/* First, add these styles to your main CSS file or body */
@import 'apple-design-system.css';
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Viewport height */
}

main {
    flex: 1 0 auto; /* This makes the main content area expand */
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 0;
    position: relative;
    flex-shrink: 0; /* Prevents footer from shrinking */
    width: 100%;
    margin-top: auto; /* Pushes footer to bottom */
    margin-bottom: 0; /* Remove bottom margin */
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
}

/* Logo Section */
.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    width: 50px;
    margin-bottom: 15px;
}

.footer-company-desc {
    color: #999;
    font-size: var(--ssbond-d-desc2);
    line-height: 1.6;
    margin-bottom: 20px;
}



.phone {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 18px;
}

/* Links Sections */
.footer-links h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: var(--ssbond-d-desc2);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Contact Form */
.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-form {
    display: flex;
    align-items: center;
    border-radius: 25px; /* Rounded corners */
    overflow: hidden; /* Ensures rounded corners are visible */
    border: 1px solid #ccc; /* Border around the entire form */
}

.contact-form input {
    flex: 1;
    padding: 10px;
    border: none;
    background-color: #1a1a1a; /* Dark background for input */
    color: #fff; /* White text */
    border-radius: 25px 0 0 25px; /* Rounded corners on the left */
}

.contact-form input::placeholder {
    color: #999; /* Placeholder text color */
}

.submit-btn {
    padding: 10px 20px;
    border: var(--ssbond-red);
    background: var(--ssbond-red); /* Gradient background */
    color: var(--ssbond-white);
    cursor: pointer;
    border-radius: 0 25px 25px 0; /* Rounded corners on the right */
    transition: background-color 0.3s ease;
}



.main-footer {
    background: var(--ssbond-black);
    color: var(--ssbond-white);
    padding-top: 70px;
    padding-bottom: 0;
    position: relative;
}
/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #333;
    text-align: center;
    margin-bottom: 0;
    background-color: var(--ssbond-black);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
}

.separator {
    color: #333;
}

/* Floating Contact Button */
/* Floating Contact Button */
.footer-floating-contact {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-person-wrapper {
    position: relative;
    width: 90px; /* Base circle size */
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it stays above the animation */
    border: 2px solid rgb(207 218 228 / 90%); /* Circle border */
    border-radius: 50%; /* Make it circular */
    background: white; /* White circle background */
    overflow: visible;
}

/* Three concentric circles */
.footer-person-wrapper::before,
.footer-person-wrapper::after,
.footer-circle-background {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

/* Largest circle */
/* .footer-person-wrapper::before {
    width: 110px;
    height: 110px;
    background: rgba(118, 194, 241, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

/* Middle circle */
/* .footer-person-wrapper::after {
    width: 95px;
    height: 95px;
    background: rgba(102, 188, 241, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

/* Inner circle */
.footer-circle-background {
    width: 80px;
    height: 80px;
    background:linear-gradient(to bottom, #0041B7, #1F8BED);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-person {
    width: 100%; /* Adjust size relative to the wrapper */
    height: 100%;
    object-fit: cover;
    z-index: 3; /* Keep above the background */
    border-radius: 50%;
}
/* Animation Effect */
/* Base animation circle - starts larger than the main circle */
.footer-circle-animation {
    position: absolute;
    border: 5px solid var(--ssbond-blue); /* Bright and visible blue */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95px; /* Slightly larger than the main circle */
    height: 95px; /* Slightly larger than the main circle */
    animation: pulse 6s infinite; /* Slow and smooth animation */
    pointer-events: none; /* Ensure it doesn't block clicks */
}

/* Keyframes for the pulse effect - grows outward */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9); /* Start slightly smaller */
        opacity: 0; /* Fully hidden */
    }
    25% {
        transform: translate(-50%, -50%) scale(1); /* Grows to normal size */
        opacity: 0.4; /* Becomes more visible */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.04); /* Expands outward slightly */
        opacity: 0.8; /* Almost fully visible */
    }
    75% {
        transform: translate(-50%, -50%) scale(1.06); /* Almost fully expanded */
        opacity: 0.6; /* Starts fading */
    }
    100% {
        transform: translate(-50%, -50%) scale(1.08); /* Fully expanded */
        opacity: 0; /* Fades out completely */
    }
}


.footer-contact-bubble {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); /* Darker, more visible shadow */
    font-size: 11px;
    white-space: nowrap;
    z-index: 3;
    color: var(--ssbond-black);
    display: flex;
    justify-content: space-between; /* Distribute content */
    align-items: center;
}

.close-icon {
    font-size: 16px;
    cursor: pointer;
    color: var(--ssbond-blue);
    margin-left: 10px;
    font-weight: bold;
}

.close-icon:hover {
    color: var(--ssbond-black); /* Optional: change color on hover */
}
/* Add speech bubble pointer */
.footer-contact-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
}

/* Hover effect */
.footer-floating-contact:hover {
    transform: scale(1.05);
}
.quick-link{
    margin-top: 50px;
}
.quick-link h3{
        display: none;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-links li{
        line-height: 0.6;
    }
    .footer-bottom p,.footer-bottom-links a,.footer-links a{
        font-size: var(--ssbond-m-desc4) !important;
    }

    .footer-person-wrapper {
        width: 65px;
        height: 65px;
        /* width: 80px;
        height: 80px; */
    }
    .footer-circle-animation {
        width: 70px;
        height: 70px;
        /* width: 80px;
        height: 80px; */
    }
    .contact-text {
        font-size: 11px;
        padding: 3px 10px;
    }
    .quick-link h3{
        display: block;
    }
    .quick-link{
        margin-top: -15px;
    }
   

}
/* Remove any potential padding from parent containers */
.container, 
.wrapper, 
#app {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 15px 20px;
    }
}
.contact-text-box {
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

.contact-text-2 {
    display: block;
    font-size: 0.9em;
    color: #333;
}

/* Solution Banner */
.footer-solution-banner {
    position: relative;
    margin-bottom: -75px;
    z-index: 2;
    padding: 0 20px;
    margin-top: 100px;
}

.footer-banner-content {
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    height: 150px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 0; /* Remove right padding to allow image to touch edge */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative; /* For image positioning */
    overflow: visible; /* Allow image to overflow */
}

.footer-banner-text {
    flex: 1;
    max-width: 60%; /* Control text area width */
}

.footer-banner-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.footer-contact-button {
    background: var(--ssbond-red);
    color:var(--ssbond-white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
}

.footer-banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 180px; /* Taller than banner to allow overflow */
}

.footer-banner-image img {
    height: 100%;
    object-fit: contain;
    transform: translateY(-20px) scaleX(-1); /* Added scaleX(-1) to flip the image horizontally */
}

/* Footer Styles */
.main-footer {
    background: var(--ssbond-black);
    color: var(--ssbond-white);
    padding-top: 120px;
    padding-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.company-info {
    /* background: var(--ssbond-red); */
    padding: 30px;
    border-radius: 10px;
    margin-top: -37px;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-left: -45px;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-logo-text .brand-name {
    font-size: var(--ssbond-m-h2);
    font-weight: bold;
    color: var(--ssbond-white);
    line-height: 1.2;
    margin-bottom: -10%;
}

.footer-logo-text .tagline {
    font-size: var(--ssbond-d-desc2);
    color: var(--ssbond-white);
}

.footer-company-desc {
    color: var(--ssbond-white);
    margin: 0px auto;
    line-height: 1.6;
    max-width: 300px;
    text-align: start;
    font-size: var(--ssbond-d-desc2);
    margin-left: 0px;
    margin-top: 17px;
}

.footer-contact-info {
    margin: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: -6px;
}

.footer-contact-info p {
    margin-left: 5px;
    color: var(--ssbond-white);
    font-size: var(--ssbond-d-desc2);
}

.phone {
    font-size: var(--ssbond-d-desc2);
    font-weight: 600;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a i {
     color: var(--ssbond-blue);
    font-size: 16px;
    margin-left: 10px;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 380px){
    .company-info {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px) {
    .company-info {
        padding: 25px 20px;
        text-align: center;
        align-items: center;
        margin-top: -100px;
        /* margin-left: auto; */
    }

    .footer-logo {
        width: 45px;
    }

    .footer-logo-text .brand-name {
        font-size: var(--ssbond-d-desc1);
        margin-bottom: -25%;
    }

    .footer-logo-text .tagline {
        font-size: var(--ssbond-d-btn-card);
    }

    .footer-company-desc {
        font-size: var(--ssbond-d-desc4);
        margin-left: auto !important;
        text-align: center !important;
    }

    .footer-contact-info {
        flex-direction: row;
        gap: 8px;
    }

    .phone {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .company-info {
        padding: 20px 29px;
        text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .footer-logo-wrapper {
        gap: 0px;
    }

    .footer-logo {
        width: 40px;
    }

    .footer-contact-info {
        flex-direction: row;
        gap: 6px;
        font-size: var(--ssbond-d-desc4);
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .social-icons a i {
        font-size: var(--ssbond-d-desc2);
    }
}

/* Keep existing footer styles for links, contact form, etc. */

@media (max-width: 768px) {
    .footer-banner-content {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer-solution-banner {
        padding: 0 15px;
        margin-bottom: -50px;
    }

    .footer-banner-content {
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .footer-banner-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-banner-text h2 {
        font-size: 18px;
        margin-bottom: 0;
    }
.footer-contact{
    margin-bottom: 30px;
    margin-top: -15px;
}
    .footer-contact-button {
        padding: 8px 20px;
        font-size: var(--ssbond-d-desc2);
    }

    .footer-banner-image {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .footer-banner-text h2 {
        font-size: 16px;
    }

    .footer-banner-image {
        height: 120px;
    }
    
}

/* Add these styles for the copyright section */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* display: flex; */
    /* flex-direction: row;
    justify-content: center; */
}

.footer-bottom p {
    color: #999;
    margin-bottom: 10px;
    font-size: var(--ssbond-d-desc2);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* margin-bottom: 10px;
    margin-left: 15px; */
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: var(--ssbond-d-desc2);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.separator {
    color: #333;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 30px;
        padding: 15px 0;
    }

    .footer-bottom-links {
        gap: 10px;
    }
}

