/**
Theme Name: Astra Child For LaptopOrbit
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-for-laptoporbit
Template: astra
*/


/* WhatsApp Button */
/*
@keyframes gojo-knock {
  0%, 90%, 100% { transform: translateY(0); }
  5% { transform: translateY(-8px); }         
  10% { transform: translateY(0); }           
}

.gojo-whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: gojo-knock 5s ease-in-out infinite; 
}
*/
@keyframes gojo-jiggle {
  0%, 90%, 100% { transform: translateX(0); }  /* normal position */
  5% { transform: translateX(-5px) rotate(-5deg); } /* left tilt */
  10% { transform: translateX(5px) rotate(5deg); }  /* right tilt */
  15% { transform: translateX(0) rotate(0deg); }    /* back to normal */
}

.gojo-whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: gojo-jiggle 5s ease-in-out infinite; /* 5s total cycle */
}



.gojo-whatsapp-btn:hover {
    transform: translateY(-3px);
}

.gojo-whatsapp-inner {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.gojo-whatsapp-inner svg {
    width: 50px;
    height: 60px;
    border-radius: 50%;
}

.gojo-whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.gojo-whatsapp-inner:hover .gojo-whatsapp-text {
    opacity: 1;
    transform: translateX(0);
    background: #25D366;
}
/* WhatsApp Button */

/* Announcement Bar */
.apnisite-announcement-bar {
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
	background-color:#1a1a1a;
}

/* Reverse Gradient Bottom Border */
.apnisite-announcement-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #6d6d6d 0%, rgb(247 221 145) 50%, #6d6d6d 100%);
    transform: scaleY(0.5);
    transform-origin: bottom;
}

/* Slider */
.apnisite-announcement-slider {
    position: relative;
    height: 22px;
    overflow: hidden;
}

.apnisite-ticker {
    position: absolute;
    width: 100%;
    white-space: nowrap;
    left: 100%;
}

/* Slide in from RIGHT */
.apnisite-ticker.enter {
    animation: slideIn 1s forwards;
}

/* Slide OUT to LEFT */
.apnisite-ticker.exit {
    animation: slideOut 1s forwards;
}

@keyframes slideIn {
    from { left: 100%; }
    to { left: 0; }
}

@keyframes slideOut {
    from { left: 0; }
    to { left: -100%; }
}



/* Mobile */
@media (max-width: 768px) {
    .apnisite-announcement-bar {
        font-size: 12px;
        padding: 8px 10px;
    }
	.homecolumns {
		margin-bottom: 15px !important;
	}
}
/* Announcement Bar */
