/* Global Styles */
:root {
    --primary-color: #1A1E5D;
    --secondary-color: #1446FF;
    --accent-color: #00A3FF;
    --text-color: #FFFFFF;
    --dark-bg: #0D0F36;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: #FFFFFF;
    overflow-x: hidden;
}
.cont-float-btn {
    position: fixed;
    right: 15px;
    top: 60%;
    width: 70px;
    height: 72px;
    border-radius: 7px;
    background: #fff;
    text-align: center;
    padding: 8px;
}
.cont-float-btn {
    border: 2px solid rgb(240 86 14);
    animation: 4.72s infinite shake-animation;
    transform-origin: 50% 50%;
    z-index: 99999;
}
.cont-float-btn h5 {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    margin: 3px 0 0;
    color: #333;
}
#exampleModal-cont {
    z-index: 999999;
}
#exampleModal-cont .modal-content {
    max-width: 370px;
}
.modal-content {
    border-radius: 10px;
    box-shadow: 0 0 12px 2px rgb(0 0 0 / 20%);
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.modal-content {
    border-radius: 0;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, .35);
}
.modal {
    background: rgba(0, 0, 0, .74);
    padding-right: 8px;
}
.exampleModal-cont, .swal-footer {
    text-align: center;
}
.exampleModal-cont h5 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.cont-pop-box-bg {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 370px;
    margin: 0 auto;
    justify-content: flex-start;
}
.cont-pop-box, .products-slider, .sidebar-shop .widget-title {
    width: 100%;
}
.cont-pop-box a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
    background-image: -moz-linear-gradient(180deg, #ffe9b5 0, #fffaf0 100%);
    background-image: -webkit-linear-gradient(180deg, #ffe9b5 0, #fffaf0 100%);
    background-image: -ms-linear-gradient(180deg, #ffe9b5 0, #fffaf0 100%);
}
.cont-pop-box img {
    width: 28px;
}
.cont-pop-box h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 0 8px;
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
    color: #000;
}
a {
    transition: all .3s;
    color: #fcb22c;
    text-decoration: none !important;
}
.ml-2, .mx-2 {
    margin-left: .5rem !important;
}
.f-12 {
    font-size: 12px !important;
}
.modal-body {
    padding: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn {
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light {
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-request {
    background-color: var(--secondary-color);
    color: white;
}

/* Header */
.header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
    background-color: #0228EE!important;
}

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

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    margin: 0 10px;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
    text-decoration: underline;
}
.navbar-nav .nav-link:hover{
    text-decoration: underline;
    
}


/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(to bottom, var(--primary-color), var(--dark-bg));
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.world-map {
    max-width: 100%;
    opacity: 0.8;
}

/* Algorithm Section */
.algorithm-section {
    background-color: var(--dark-bg);
    padding: 20px 0;
    color: var(--text-color);
    position: relative;
}

.algorithm-diagram {
    margin-top: 50px;
    position: relative;
    min-height: 200px;
}

.diagram-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.diagram-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: white;
    z-index: 1;
}

.marketing-box, .sales-funnel-box, .conversion-box {
    background-color: #1A1E5D;
    border: 1px solid #333;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.marketing-box {
    margin-right: auto;
}

.sales-funnel-box {
    background-color: #333;
    color: white;
}

.conversion-box {
    /* margin-left: auto; */
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
}

.bulb-icon {
    color: yellow;
    margin-left: 10px;
    font-size: 1.5rem;
}

/* Sales Section */
.sales-section {
    background-color: #ECECEC;
    padding: 40px 0;
    color: #333;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-explore {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
}

.social-icons-cluster {
    position: relative;
    height: 250px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    color: var(--primary-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.megaphone-icon, .computer-icon, .clock-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.megaphone-icon {
    top: 20px;
    left: 30%;
}

.computer-icon {
    bottom: 20px;
    left: 20%;
}

.clock-icon {
    top: 40%;
    right: 30%;
}

/* Industries Section */
.industries-section {
    background-color: var(--dark-bg);
    padding: 40px 0;
    color: var(--text-color);
}

.industry-diagram {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-icon {
    width: 100px;
    height: 100px;
    /* background-color: var(--accent-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.center-icon img {
    width: 60px;
    height: 60px;
}

.industry-items {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
}

.industry-item {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 15px;
    width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    height: 120px;
    align-items: center;
    justify-content: center;
}

.industry-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Expertise Section */
.expertise-section {
    background-color: var(--light-bg);
    padding: 40px 0;
    color: #333;
}

.expertise-cards {
    margin-top: 30px;
    --bs-gutter-y: 20px;
}

.expertise-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    color: var(--text-color);
}

.card-header {
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.card-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.expertise-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.expertise-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.google-card {
    border-top: 4px solid #4285F4;
}

.meta-card {
    border-top: 4px solid #3b5998;
}

.influencers-card {
    border-top: 4px solid #E1306C;
}

.affiliates-card {
    border-top: 4px solid #FF9900;
}

/* Success Section */
.success-section {
    background-color: var(--dark-bg);
    padding: 40px 0;
    color: var(--text-color);
}

.success-boxes {
    margin-top: 30px;
}

.success-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.success-box i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.success-box span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Audience Section */
.audience-section {
    background-color: #010725;
    padding: 40px 0;
    color: #fff;
}

.audience-image {
    display: flex;
    justify-content: center;
}

.audience-points {
    margin: auto 80px;
}

.audience-point {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.point-icon {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.point-text {
    font-size: 1.1rem;
}

/* Partnership Section */
.partnership-section {
    background-color: white;
    padding: 40px 0;
    color: #333;
    background-image: url(../images/bg-img.png);
    background-size: cover;
}

.partnership-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.partner-logos {
    margin: 40px 0;
}

.partner-logo {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 20px 0;
    color: var(--text-color);
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 15px;
}

/* Animation for button */
.request-call-btn {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.request-call-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}


.request-call-btn:hover:after {
    animation: ripple 1s ease-out;
}
.industry-icon-img{
    -webkit-animation:spin 60s linear infinite;
    -moz-animation:spin 60s linear infinite;
    animation:spin 60s linear infinite;
}
.algorithm-container {
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.formula-box {
    background-color: #303249;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
    min-width: 160px;
    display: inline-block;
}

.conversion-box {
    background-color: #0039ff;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
    min-width: 160px;
    display: inline-block;
}

.symbol {
    font-size: 1.5rem;
    margin: 0 15px;
    display: inline-block;
    vertical-align: middle;
}

.formula-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.connection-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.connection-line {
    position: absolute;
    background-color: white;
    height: 2px;
}

.connection-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.lightbulb {
    color: yellow;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .formula-row {
        flex-direction: column;
        gap: 20px;
    }

    .symbol {
        margin: 10px 0;
    }

    .connection-container {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .cont-pop-box img {
        width: 45px;
    }
}

/* Custom connection lines for desktop */
#line1 {
    width: 100px;
    transform: rotate(-30deg);
    top: -50px;
    left: 50px;
}

#line2 {
    width: 100px;
    transform: rotate(-30deg);
    top: -30px;
    left: 80px;
}

#line3 {
    width: 140px;
    transform: rotate(30deg);
    bottom: -50px;
    right: 50px;
}
.cont-pop-box h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 0 8px;
}
.cont-pop-box h6 {
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
}
@media (min-width: 576px) {
    .modal-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .modal-body, .modal-footer, .modal-header {
        padding-right: 2em;
        padding-left: 2rem;
    }
    .modal-body {
        max-height: calc(100vh - 210px);
        padding-top: 2rem;
        overflow-y: auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
@media (max-width: 576px) {
    .cont-float-btn {
        width: 60px;
        height: 68px;
        border-radius: 15px;
    }
    #exampleModal-cont .modal-content {
        max-width: 75%;
    }
    .cont-pop-box h6 {
        font-size: 11px;
        font-weight: 600;
        margin: 6px 0 0;
        width: auto;
        display: inherit;
    }
    .exampleModal-cont span {
        font-size: 10px;
        display: none;
    }
    .cont-pop-box img {
        width: 25px;
        margin: 0 auto;
    }
    .cont-pop-box a {
        display: block;
        padding-bottom: 0;
        margin-bottom: 0;
        background-image: none;
    }
    .cont-pop-box-bg, .cont-pop-box-bg a {
        flex-direction: row;
    }
}
@keyframes shake-animation {
    0% { transform:translate(0,0) }
    1.78571% { transform:translate(5px,0) }
    3.57143% { transform:translate(0,0) }
    5.35714% { transform:translate(5px,0) }
    7.14286% { transform:translate(0,0) }
    8.92857% { transform:translate(5px,0) }
    10.71429% { transform:translate(0,0) }
    100% { transform:translate(0,0) }
  }
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}