.blog-nav-link:hover span.text-white,
.project-name {
    opacity   : 0;
    visibility: hidden
}

.blog-nav-link a.next-project .fa-arrow-right,
.project-name {
    margin-left: 10px
}

.col.p-0.cover-background.md-h-450px.sm-h-350px.wow.animate__fadeInLeft {
    height: 700px
}

.loader {
    --ballcolor  : #ffff;
    --shadow     : 0px 0 #ffffff;
    --shadowcolor: #ffffff;
    width        : 10px;
    height       : 10px;
    left         : -120px;
    border-radius: 50%;
    position     : relative;
    color        : var(--ballcolor);
    animation    : 3s linear infinite shadowRolling
}

@keyframes shadowRolling {
    0% {
        box-shadow: var(--shadow), var(--shadow), var(--shadow), var(--shadow)
    }

    12% {
        box-shadow: 100px 0 var(--ballcolor), var(--shadow), var(--shadow), var(--shadow)
    }

    25% {
        box-shadow: 110px 0 var(--ballcolor), 100px 0 var(--ballcolor), var(--shadow), var(--shadow)
    }

    36% {
        box-shadow: 120px 0 var(--ballcolor), 110px 0 var(--ballcolor), 100px 0 var(--ballcolor), var(--shadow)
    }

    50% {
        box-shadow: 130px 0 var(--ballcolor), 120px 0 var(--ballcolor), 110px 0 var(--ballcolor), 100px 0 var(--ballcolor)
    }

    62% {
        box-shadow: 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor), 120px 0 var(--ballcolor), 110px 0 var(--ballcolor)
    }

    75% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor), 120px 0 var(--ballcolor)
    }

    87% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor)
    }

    100% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor)
    }
}

#loader-container {
    position        : fixed;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: #060606;
    display         : flex;
    justify-content : center;
    align-items     : center;
    z-index         : 1000;
    transition      : opacity .3s
}

.btn-div {
    display        : flex;
    justify-content: center;
    align-items    : center;
    margin-top     : 20px
}

.view-btn {
    background-color: #1e1e1e;
    color           : #fff;
    padding         : 15px 25px;
    font-size       : 16px;
    border          : none;
    border-radius   : 5px;
    cursor          : pointer;
    transition      : background-color .3s, transform .2s
}

.copyright-text {
    text-align: center;
    font-size : 18px
}

p {
    color: #fff
}

option {
    color: #1e1e1e
}

select#budget {
    background-color  : transparent;
    border-radius     : 4px;
    appearance        : none;
    -webkit-appearance: none;
    -moz-appearance   : none
}

.select-style {
    position: relative;
    display : inline-block
}

.select-style::after {
    content       : '▼';
    position      : absolute;
    top           : 50%;
    right         : 10px;
    transform     : translateY(-50%);
    pointer-events: none
}

.custom-content,
.custom-title {
    font-size: 12px !important
}

#accordion-3 .panel-collapse {
    padding-left: 30px
}

#currnet-openings1,
#currnet-openings2,
#currnet-openings3 {
    font-size: 20px
}

.counter {
    display    : inline-flex;
    align-items: center
}

.counter::after {
    content    : " +";
    margin-left: 4px
}

.banner-image {
    width : 100%;
    height: auto
}

@media only screen and (min-width:1024px) {
    .banner-image {
        height    : 500px;
        object-fit: cover
    }
}

.blog-nav-link a {
    position       : relative;
    color          : #fff;
    text-decoration: none;
    display        : inline-flex;
    align-items    : center;
    font-size      : 16px;
    transition     : opacity .3s
}

.project-name {
    transition: opacity .3s, visibility .3s
}

.blog-nav-link:hover .project-name {
    opacity   : 1;
    visibility: visible
}

.blog-nav-link a.prev-project .fa-arrow-left {
    margin-right: 10px
}

.social-icons-container {
    position : fixed;
    top      : 80%;
    right    : 0;
    transform: translateY(-50%);
    z-index  : 100
}

.header-social-icon {
    display       : flex;
    flex-direction: column;
    align-items   : center
}

.header-social-icon a {
    writing-mode   : vertical-rl;
    transform      : rotate(180deg);
    margin-bottom  : 20px;
    color          : #fff;
    font-size      : 12px;
    text-decoration: none;
    margin-right   : 14px;
    letter-spacing : 1px;
    font-family    : Montserrat
}

.header-social-icon a:hover {
    color: #f1c40f
}

@media (max-width:768px) {
    .social-icons-container {
        display: none
    }
}

.whatsapp-icon {
    position        : fixed;
    bottom          : 20px;
    left            : 30px;
    background-color: #25d366;
    color           : #fff;
    border-radius   : 50%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    width           : 50px;
    height          : 50px;
    font-size       : 26px;
    z-index         : 1000;
    box-shadow      : 0 0 15px rgba(37, 211, 102, .5);
    animation       : 1s ease-in-out infinite glow;
    transition      : background-color .3s;
    opacity         : 0;
    visibility      : hidden;
    pointer-events  : none
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 30px #25d366, 0 0 60px rgba(37, 211, 102, .9), 0 0 90px rgba(37, 211, 102, .8)
    }

    50% {
        box-shadow: 0 0 60px #25d366, 0 0 90px #25d366, 0 0 120px rgba(37, 211, 102, .9)
    }
}

.header-social-icon a {
    color      : #fab314;
    font-weight: bold;
}

.slider-container {
    width   : 100%;
    overflow: hidden;
}

.slider {
    height  : 100px;
    margin  : 20px auto;
    overflow: hidden;
    position: relative;
    width   : 100%;
}

.slide-track {
    display  : flex;
    animation: scroll-left 22s linear infinite;
    /* Default animation for the first row */
    width    : calc(250px * 20);
    /* Adjust width for 9 original + 9 duplicate logos */
}

.slide-track.second {
    animation: scroll-right 22s linear infinite;
    /* Reverse animation for the second row */
}

.slide {
    height         : 100px;
    width          : 250px;
    flex-shrink    : 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
    /* border      : 1px solid white; */
}

.slide img {
    max-width: 100%;
    height   : auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
        /* Adjust for 9 logos per row */
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-250px * 10));
        /* Start from the end position */
    }

    100% {
        transform: translateX(0);
        /* Move to the start position */
    }
}

.grayscale {
    filter       : grayscale(100%) brightness(1);
    /* transition: filter 0.3s ease; */
}

.grayscale:hover {
    filter: grayscale(0%);
}

.grayscale1 {
    filter       : grayscale(100%) brightness(2);
    /* transition: filter 0.3s ease; */
}

.grayscale1:hover {
    filter: grayscale(0%);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #fab314 #000;

}


/* ::-webkit-scrollbar{display:none}body{-ms-overflow-style:none;scrollbar-width:none} */



::-webkit-scrollbar {
    width: 5px;
}

/* Track */
/* ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  } */

/* Handle */
::-webkit-scrollbar-thumb {
    background   : #fab314;
    border-radius: 10px;
}

/* partner css  */

.slider-container2 {
    width        : 100%;
    overflow     : hidden;
    border       : 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;

}

.slider2 {
    height  : 100px;
    margin  : 20px auto;
    overflow: hidden;
    position: relative;
    width   : 100%;
}

.slide-track2 {
    display  : flex;
    animation: scroll-left 22s linear infinite;
    /* Default animation for the first row */
    width    : calc(250px * 12);
    /* Adjust width for 9 original + 9 duplicate logos */
}

.slide2 {
    height         : 100px;
    width          : 250px;
    flex-shrink    : 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
    /* border      : 1px solid white; */
}

.slide2 img {
    max-width: 100%;
    height   : auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
        /* Adjust for 9 logos per row */
    }
}



.call-icon {
    position        : fixed;
    bottom          : 20px;
    left            : 90px;
    background-color: #007bff;
    color           : #fff;
    border-radius   : 50%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    width           : 50px;
    height          : 50px;
    font-size       : 26px;
    z-index         : 1000;
    box-shadow      : 0 0 15px rgba(0, 123, 255, 0.5);
    animation       : 1s ease-in-out infinite call-glow;
    transition      : background-color 0.3s;

    visibility    : hidden;
    pointer-events: none;
}

@keyframes call-glow {

    0%,
    100% {
        box-shadow: 0 0 30px #007bff, 0 0 60px rgba(0, 123, 255, 0.9), 0 0 90px rgba(0, 123, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 60px #007bff, 0 0 90px #007bff, 0 0 120px rgba(0, 123, 255, 0.9);
    }
}

.call-icon:hover {
    background-color: #0056b3;
}


.inner-heading {
    color    : #fab314;
    font-size: 26px;
}

.highlight-bold {
    color: #fab314;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding   : 100px 20px 80px;
    text-align: center;
    position  : relative;
    overflow  : hidden;
}

.hero-section::before {
    content       : '';
    position      : absolute;
    top           : 0;
    left          : 0;
    right         : 0;
    bottom        : 0;
    background    : radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin   : 0 auto;
    position : relative;
    z-index  : 2;
}

.hero-title {
    font-size              : 56px;
    font-weight            : 700;
    margin-bottom          : 20px;
    background             : linear-gradient(135deg, #fff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
}

.hero-subtitle {
    font-size: 20px;
    color    : #cccccc;
    max-width: 800px;
    margin   : 0 auto 40px;
}

.hero-stats {
    display        : flex;
    justify-content: center;
    gap            : 60px;
    margin-top     : 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size  : 48px;
    font-weight: 700;
    color      : #ffc107;
    display    : block;
}

.stat-label {
    font-size     : 16px;
    color         : #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Business Size Section */
.business-size-section {
    padding   : 80px 20px;
    background: linear-gradient(45deg, #111 0%, #222 100%);
}

.section-header {
    text-align   : center;
    margin-bottom: 60px;
}

.section-title {
    font-size    : 42px;
    font-weight  : 700;
    color        : #fff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color    : #ccc;
    max-width: 600px;
    margin   : 0 auto;
}

.business-sizes {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

.business-card {
    background   : linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border       : 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding      : 40px;
    text-align   : center;
    transition   : all 0.4s ease;
    position     : relative;
    overflow     : hidden;
}

.business-card::before {
    content   : '';
    position  : absolute;
    top       : -50%;
    left      : -50%;
    width     : 200%;
    height    : 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    transform : scale(0);
    transition: transform 0.5s ease;
}

.business-card:hover::before {
    transform: scale(1);
}

.business-card:hover {
    transform   : translateY(-10px);
    border-color: #ffc107;
    box-shadow  : 0 20px 40px rgba(255, 193, 7, 0.2);
}

.business-icon {
    width          : 100px;
    height         : 100px;
    margin         : 0 auto 30px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    background     : linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    border-radius  : 50%;
    font-size      : 48px;
    color          : #000;
    position       : relative;
    z-index        : 2;
}

.business-title {
    font-size    : 28px;
    font-weight  : 600;
    color        : #ffc107;
    margin-bottom: 20px;
    position     : relative;
    z-index      : 2;
}

.business-description {
    font-size    : 16px;
    color        : #ccc;
    margin-bottom: 30px;
    position     : relative;
    z-index      : 2;
}

.business-features {
    list-style: none;
    text-align: left;
    position  : relative;
    z-index   : 2;
}

.business-features li {
    padding     : 8px 0;
    color       : #aaa;
    position    : relative;
    padding-left: 25px;
}

.business-features li::before {
    content    : '✓';
    position   : absolute;
    left       : 0;
    color      : #ffc107;
    font-weight: bold;
}

/* Industries Grid Section */
.industries-section {
    padding   : 80px 20px;
    background: #000;
}

.industries-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap                  : 30px;
    margin-top           : 60px;
}

.industry-card {
    background     : linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border         : 1px solid rgba(255, 193, 7, 0.2);
    border-radius  : 20px;
    padding        : 40px 30px;
    text-align     : center;
    transition     : all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position       : relative;
    overflow       : hidden;
    backdrop-filter: blur(20px);
    cursor         : pointer;
}

.industry-card::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : -100%;
    width     : 100%;
    height    : 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform   : translateY(-10px) scale(1.02);
    border-color: #ffc107;
    box-shadow  : 0 20px 40px rgba(255, 193, 7, 0.2);
}

.industry-icon {
    width          : 80px;
    height         : 80px;
    margin         : 0 auto 25px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    background     : linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    border-radius  : 50%;
    font-size      : 36px;
    color          : #000;
    transition     : all 0.3s ease;
    position       : relative;
    z-index        : 2;
}

.industry-card:hover .industry-icon {
    transform : rotateY(360deg);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.industry-title {
    font-size    : 24px;
    font-weight  : 600;
    color        : #fff;
    margin-bottom: 15px;
    position     : relative;
    z-index      : 2;
    transition   : color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: #ffc107;
}

.industry-description {
    font-size  : 14px;
    color      : #aaa;
    line-height: 1.5;
    position   : relative;
    z-index    : 2;
}

/* Services Section */
.services-section {
    padding   : 80px 20px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.services-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 20px;
    margin-top           : 40px;
}

.service-item {
    background   : rgba(255, 193, 7, 0.1);
    border       : 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding      : 20px;
    text-align   : center;
    transition   : all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 193, 7, 0.2);
    transform : translateY(-5px);
}

.service-item h4 {
    color        : #ffc107;
    font-size    : 18px;
    margin-bottom: 10px;
}

.service-item p {
    color    : #ccc;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding   : 80px 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    text-align: center;
}

.cta-section h2 {
    font-size    : 42px;
    color        : #000;
    margin-bottom: 20px;
    font-weight  : 700;
}

.cta-section p {
    font-size    : 18px;
    color        : #333;
    margin-bottom: 40px;
    max-width    : 600px;
    margin-left  : auto;
    margin-right : auto;
}

.cta-button {
    display        : inline-block;
    background     : #000;
    color          : #fff;
    padding        : 18px 40px;
    border-radius  : 50px;
    text-decoration: none;
    font-weight    : 600;
    font-size      : 18px;
    transition     : all 0.3s ease;
    border         : 2px solid #000;
}

.cta-button:hover {
    background: transparent;
    color     : #000;
    transform : translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap           : 30px;
    }

    .business-sizes {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap                  : 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


.industries-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .industry-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 24px 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }

        .industry-card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
        }

        .industry-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            position: relative;
        }

        .industry-content {
            flex: 1;
        }

        .industry-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .industry-description {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
        }

        /* Individual industry colors */
        .healthcare { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
        .ecommerce { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
        .finance { background: linear-gradient(135deg, #45b7d1, #96c7ed); }
        .construction { background: linear-gradient(135deg, #f39c12, #f1c40f); }
        .realestate { background: linear-gradient(135deg, #27ae60, #2ecc71); }
        .education { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
        .food { background: linear-gradient(135deg, #e74c3c, #c0392b); }
        .legal { background: linear-gradient(135deg, #34495e, #2c3e50); }
        .technology { background: linear-gradient(135deg, #3498db, #2980b9); }
        .automotive { background: linear-gradient(135deg, #e67e22, #d35400); }
        .beauty { background: linear-gradient(135deg, #e91e63, #ad1457); }
        .fitness { background: linear-gradient(135deg, #1abc9c, #16a085); }
        .creative { background: linear-gradient(135deg, #f39c12, #e67e22); }
        .manufacturing { background: linear-gradient(135deg, #95a5a6, #7f8c8d); }
        .travel { background: linear-gradient(135deg, #00bcd4, #0097a7); }

        @media (max-width: 768px) {
            .industries-section {
                padding: 40px 16px;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .industry-card {
                padding: 20px 16px;
            }
        }

        @media (max-width: 480px) {
            .industry-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }



 /* tools */

 .seo-tools-grid-4x8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  padding: 40px;
  background-color: #000;
}

.seo-tool-card-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.2);
  transition: transform 0.3s ease;
}

.seo-tool-card-vertical:hover {
  transform: scale(1.05);
}

.seo-tool-card-vertical img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.seo-tool-card-vertical span {
  font-size: 14px;
  font-weight: 600;
  color: #ffcc00;
}


