body{
    font-family: 'Poppins', sans-serif; /* Ensure you have this font imported */
    background-color: #FFFCF8;
    margin: auto;
}
.fixed-whatsapp{
    position: fixed;
    top: 80%; /* Adjusted to be more visible */
    right: 5%; /* Adjusted to be more visible */
    z-index: 1000; /* Ensure it stays above other content */
}
.fixed-whatsapp img{
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the button circular */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background-color: #00000071;
}
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.contact-button {
    background-color: #F7AB23;
    padding: 8px 12px;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}
.logo{
    width: 74px;
height: 48px;
flex-shrink: 0;
background-image: url('./assets/image/ABRlogo.svg');
background-size: cover;
background-repeat: no-repeat;
} 
.hero{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100vh;
    text-align: center;
}
.Glass-effect{
    width: 100%;
    height: 46%;
background: rgba(255, 252, 248, 0.11);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8.2px);
-webkit-backdrop-filter: blur(8.2px);
}
.hero .cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: #F7AB23;
    padding: 16px 40px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 24px;
}
.hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 24px;
}
.hero p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 24px;
}
#background-video {
    width: 100vw;       /* Take full viewport width */
    height: 100vh;      /* Take full viewport height */
    object-fit: cover;  /* Crop video to cover the entire area */
    position: fixed;    /* Fix its position relative to the viewport */
    top: 0;
    left: 0;
    z-index: -2;        /* Place it behind everything else */
}

/* Optional: Overlay to darken the video for better text readability */
/* This div is positioned over the video but under the content */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark semi-transparent overlay */
    z-index: -1; /* Placed above video but below content */
}
main{
    background-color: #FFFCF8;
}

/* Work Section Styles */
.work-section{
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 120vh;
}
.work-section .container {
    width: 100%;
    max-width: 1000px; /* Max width for desktop view, adjust as needed */
    padding: 20px;
    box-sizing: border-box; /* Include padding in the element's total width and height */
    text-align: center; /* Center the heading */
}

.work-section .container h1 {
    font-size: 2.5em; /* Adjust size as needed */
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.work-section .container .image-grid {
    display: grid;
    gap: 24px; /* Space between images */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Responsive grid */
    justify-content: center; /* Center grid items */
}

.work-section .container .grid-item {
    background-color: #fff; /* White background for each image card */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures image doesn't overflow rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-section .container .grid-item img {
    width: 100%;
    height: 100%; /* Make images fill their container */
    object-fit: cover; /* Crop images to fit without distortion */
    display: block; /* Remove extra space below image */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .work-section .container h1 {
        font-size: 2em;
    }

    .work-section .container .image-grid {
        grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); /* Single column for smaller screens */
    }
}
.stats-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }

  .stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .stats-section .stat {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c2b2b;
  }

  .stats-section .label {
    margin-top: 8px;
    font-size: 1rem;
    color: #555;
  }

  .client-page{
    margin: 0;
    padding: 20px;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures content is centered vertically on smaller pages */
    box-sizing: border-box; /* Include padding in element's total width and height */
  }

  .client-section {
    text-align: center;
    max-width: 1200px; /* Limit overall width for better readability on large screens */
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-section .main-heading {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-section  .sub-heading {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.client-section  .client-logos {
    display: flex;
    flex-wrap: wrap; /* Allows logos to wrap to the next line on smaller screens */
    justify-content: center;
    gap: 30px; /* Space between logo items */
    margin-top: 40px;
    margin-bottom: 40px;
}

.client-section .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    min-width: 180px; /* Ensures a minimum width for each logo item */
    flex: 1 1 auto; /* Allows items to grow and shrink, taking up available space */
    max-width: 250px; /* Prevents logos from becoming too wide on larger screens */
}

.client-section .logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.client-section .logo-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.client-section .logo-item:hover img {
    filter: grayscale(0%); /* Optional: Colorize logos on hover */
}

.client-section .logo-description {
    font-size: 0.9em;
    color: #777;
    text-align: center;
}

/* About Section Container */
.about-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px; /* Max width for desktop */
    box-sizing: border-box;
    margin: 0px auto 40px auto; /* Center on desktop */
}

/* Section Heading */
.about-section h2 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.about-section h3 {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraphs */
.about-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left; /* Align text to the left */
}
.about-section .image-gallery {
    justify-content: center;
    display: flex;
    align-items: center;
}
.about-section .image-gallery img {
    width: 50%;
    height: auto;
    border-radius: 5px;
    object-fit: cover; /* Ensure images cover their area */
}

/* More Button */
.about-section .more-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 16px 46px;
    background-color: #FF9900; /* Orange color from the image */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-section .more-button:hover {
    background-color: #e68a00; /* Slightly darker orange on hover */
}

/* Our Services Section */
.services-section {
    padding: 40px 20px;
    max-width: 1200px; /* Max width on desktop */
    margin: 40px auto; /* Center on desktop */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em; /* Large heading */
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.services-section p.intro-text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Service Cards Grid - Mobile First */
.service-cards-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); /* Single column for mobile */
    gap: 20px; /* Gap between cards */
    padding: 0 10px; /* Side padding */
}

/* Individual Service Card */
.service-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* For animations */
    cursor: pointer; /* For a clickable feel */
    position: relative; /* For the selected border */
    overflow: hidden; /* To prevent hover effects from spilling */
}

.service-card:hover {
    transform: translateY(-5px); /* Lift up slightly on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow on hover */
    border-color: #FFB300; /* Orange border on hover */
}

/* Selected Card Animation - Optional */
/* You can add this class with JavaScript when a card is selected */
.service-card.selected {
    border: 3px solid #FFB300; /* Deep orange border when selected */
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.5); /* Orange glow */
    transform: scale(1.02); /* Slightly enlarge */
}

.service-card img {
    width: 100px; /* Icon size */
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(80%); /* Slightly grayscale, will be colorful on hover */
    transition: filter 0.3s ease; /* Filter animation */
}

.service-card:hover img {
    filter: grayscale(0%); /* Full color on hover */
}

.service-card h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700; /* Bold */
}

.service-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* Button to view more (Optional, if you want a button per service) */
.service-card .view-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #FFB300;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.service-card .view-more-btn:hover {
    background-color: #e69900;
}

/* Media Query for Desktop Layout */
@media (min-width: 768px) {
    .services-section {
        padding: 60px 40px; /* More padding on desktop */
    }

    .services-section h2 {
        font-size: 3.2em; /* Even larger heading on desktop */
    }

    .services-section p.intro-text {
        font-size: 1.2em;
    }

    .services-section .service-cards-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
        gap: 30px; /* More gap on desktop */
        padding: 0; /* Remove side padding as max-width controls it */
    }

    .services-section .service-card {
        padding: 30px; /* More padding on desktop */
    }

    .services-section .service-card img {
        width: 120px; /* Larger icon size on desktop */
        height: 120px;
    }
}

/* Optional: Animation for appearing elements (Fade In Up) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section h2,
.services-section p.intro-text,
.service-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Staggered animation for cards */
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1.0s; }
.service-card:nth-child(6) { animation-delay: 1.2s; } /* If there are 6 cards */

/* For the heading and intro text, adjust animation-delay */
.services-section h2 { animation-delay: 0s; }
.services-section p.intro-text { animation-delay: 0.1s; }



.why-choose-us-section {
    padding: 40px 20px; /* Padding for mobile */
    max-width: 600px; /* Max width to contain the section as in your image */
    margin: 30px auto; /* Center the section with some top/bottom margin */
    background-color: #ffffff; /* White background for the content area */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center the heading */
}

.why-choose-us-section h2 {
    font-size: 1.8em; /* Adjusted font size for heading */
    color: #1a1a1a; /* Darker color for heading */
    margin-bottom: 30px; /* Space below heading */
    font-weight: 700; /* Bold heading */
}

.reason-item {
    text-align: left; /* Align text within each reason to the left */
    margin-bottom: 25px; /* Space between reasons */
    padding-bottom: 15px; /* Small padding at the bottom of each reason */
    border-bottom: 1px solid #eee; /* Light separator line */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out; /* Smooth transition for hover */
}

.reason-item:last-child {
    margin-bottom: 0; /* No margin after the last item */
    border-bottom: none; /* No border after the last item */
}

.reason-item h3 {
    font-size: 1.1em; /* Smaller font for sub-headings */
    color: #2c3e50; /* Darker blue for sub-headings */
    margin-top: 0;
    margin-bottom: 5px; /* Space between heading and paragraph */
    font-weight: 600; /* Semi-bold sub-headings */
}

.reason-item p {
    font-size: 0.95em; /* Slightly smaller font for paragraphs */
    color: #555; /* Grayish color for paragraph text */
    margin-bottom: 0;
}

/* Hover effect */
.reason-item:hover {
    transform: translateX(5px); /* Slide slightly to the right */
    /* background-color: #f9f9f9; Optional: subtle background change on hover */
}

/* Media Query for Larger Screens (e.g., Laptops) */
@media (min-width: 768px) {
    .why-choose-us-section {
        padding: 50px 40px; /* More padding for larger screens */
        max-width: 1000px; /* Slightly wider for desktop */
    }

    .why-choose-us-section h2 {
        font-size: 2.2em; /* Larger heading on desktop */
    }

    .reason-item {
        margin-bottom: 30px; /* More space between items on desktop */
        padding-bottom: 20px;
    }

    .reason-item h3 {
        font-size: 1.2em; /* Larger sub-headings on desktop */
    }

    .reason-item p {
        font-size: 1em; /* Slightly larger paragraphs on desktop */
    }
}

/* This is the FAQ image from your provided photo */
.faq-image-container {
    text-align: center;
    margin-top: 50px; /* Space above the image */
    padding-bottom: 30px; /* Space below the image */
}

.faq-image {
    max-width: 320px; /* Adjust size as needed */
    height: auto;
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center the image */
}


.contact{
    justify-content: center;
    display: flex;
    align-items: center;
}
.form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px; /* Max width for desktop */
    box-sizing: border-box;
}

/* Form Title */
.form-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: normal; /* As per image */
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95em;
    font-weight: bold; /* Labels appear bold in image */
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff9800; /* Orange border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.3);
}

/* Work Type Checkbox Styling */
.section-label {
    margin-bottom: 15px; /* Spacing below 'Work Type' label */
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap; /* Allow checkboxes to wrap */
    gap: 10px; /* Space between checkbox items */
}

.checkbox-item {
    /* Hide the default checkbox */
    input[type="checkbox"] {
        display: none;
    }

    /* Style the label to look like the checkbox in the image */
    label {
        display: inline-flex; /* Use flex to align text and potentially custom checkmark */
        align-items: center;
        padding: 8px 15px;
        border: 1px solid #ccc; /* Default border */
        border-radius: 5px;
        cursor: pointer;
        background-color: #f9f9f9;
        color: #555;
        font-weight: normal; /* Labels within checkboxes are not bold */
        transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        margin-bottom: 0; /* Override default label margin-bottom */
    }

    /* Style when checkbox is checked */
    input[type="checkbox"]:checked + label {
        background-color: #ff9800; /* Orange background when checked */
        border-color: #ff9800;
        color: #fff; /* White text when checked */
    }

    /* Hover effect */
    label:hover {
        border-color: #ff9800;
        background-color: #ffe0b2; /* Lighter orange for hover */
    }
}


/* Send Button */
.send-button {
    width: 100%;
    padding: 15px 20px;
    background-color: #ff9800; /* Orange background */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.send-button:hover {
    background-color: #e68900; /* Darker orange on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.send-button:active {
    transform: translateY(0);
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .form-wrapper {
        padding: 20px;
        margin: 10px; /* Smaller margin on very small screens */
        max-width: 95%; /* Allow it to take more width on small screens */
    }

    .form-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .checkbox-item label {
        padding: 7px 12px;
        font-size: 0.9em;
    }

    .send-button {
        padding: 12px 15px;
        font-size: 1em;
    }
}

@media (max-width: 400px) {
    .checkbox-group {
        flex-direction: column; /* Stack checkboxes vertically if space is too tight */
    }
}







.site-footer {
    background-color: #333; /* Dark background as per image */
    padding: 40px 20px 20px; /* Top, sides, bottom padding */
    color: #ccc;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px; /* Limit width for desktop */
    margin: 0 auto; /* Center the container */
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: space-between; /* Distribute sections */
    gap: 30px; /* Space between flex items */
}

.footer-section {
    padding: 0 15px; /* Inner padding for sections */
    margin-bottom: 20px; /* Space below each section before responsive wrap */
    flex-grow: 1; /* Allow sections to grow */
}

/* Specific section widths for desktop */
.footer-about {
    flex-basis: 35%; /* Larger share for about section */
    min-width: 280px; /* Minimum width before wrapping */
}

.footer-links,
.footer-contact,
.footer-social {
    flex-basis: 20%; /* Smaller share for other sections */
    min-width: 180px; /* Minimum width before wrapping */
}

/* Logo Styling */
.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo image and text */
}

.footer-logo img {
    height: 72px; /* Adjust as needed for your logo */
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff9800; /* Orange color for the ABR text */
    letter-spacing: 1px;
}

.footer-logo .logo-tagline {
    font-size: 0.7em;
    color: #aaa;
    align-self: flex-end; /* Align tagline to the bottom of the logo row */
    margin-bottom: 2px;
}

/* Headings in Footer */
.footer-section h3 {
    color: #ff9800; /* Orange color for headings */
    font-size: 1.1em;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 152, 0, 0.3); /* Subtle orange underline */
    padding-bottom: 5px;
    display: inline-block; /* Make border-bottom fit content */
}

/* Paragraphs in Footer */
.footer-section p {
    margin-bottom: 10px;
}

/* List Styling (Menu) */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-icons a {
    color: #ccc; /* Default icon color */
    font-size: 1.6em; /* Size of the icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #fff; /* Hover color */
    transform: translateY(-3px); /* Subtle hover effect */
}

/* Specific icon colors (optional, matches common brand colors) */
.social-icons .fa-whatsapp:hover { color: #25D366; }
.social-icons .fa-google-plus-g:hover { color: #DB4437; } /* Note: Google+ is deprecated, but icon styling included */
.social-icons .fa-linkedin-in:hover { color: #0077B5; }
.social-icons .fa-instagram:hover { color: #E1306C; }


/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separator line */
    color: #aaa;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center items for mobile */
        text-align: center; /* Center text within sections */
    }

    .footer-section {
        width: 100%; /* Full width for each section */
        max-width: 400px; /* Limit max width for readability on wide mobiles */
        padding: 0; /* Remove inner padding as now full width */
    }

    .footer-logo {
        justify-content: center; /* Center logo for mobile */
    }

    .social-icons {
        justify-content: center; /* Center social icons for mobile */
    }

    .footer-section h3 {
        /* Remove underline for mobile headings if desired, or make it full width */
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 15px;
    }

    .footer-logo .logo-text {
        font-size: 1.3em;
    }
    .footer-logo .logo-tagline {
        font-size: 0.6em;
    }
    .social-icons a {
        font-size: 1.4em;
    }
}