.custom-navbar .nav-link::after,
.section-title::after {
    position: absolute;
    left: 0;
    background-color: var(--primary-color)
}

/* whatsapp button start */

/* Base Floating Menu */
.floating-menu {
  position: fixed;
  bottom: 20%;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

/* Button Styles */
.floating-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Main Button */
.main-btn {
  background-color: #007bff;
  z-index: 3;
  transition: transform 0.4s ease;
}

/* Hidden State */
.whatsapp-btn,
.call-btn,
.insta-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
}

/* Colors */
.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: #28a745; }
.insta-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Active State – Circular Expansion */
.floating-menu.active .whatsapp-btn {
  transform: translate(-65px, -65px) scale(1);
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.1s;
}

.floating-menu.active .call-btn {
  transform: translate(-95px, 0px) scale(1);
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.2s;
}

.floating-menu.active .insta-btn {
  transform: translate(-65px, 65px) scale(1);
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.3s;
}

/* Close Animation (reverse delay) */
.floating-menu:not(.active) .insta-btn {
  transition-delay: 0.1s;
}
.floating-menu:not(.active) .call-btn {
  transition-delay: 0.2s;
}
.floating-menu:not(.active) .whatsapp-btn {
  transition-delay: 0.3s;
}

/* Rotate Main Button When Active */
.floating-menu.active .main-btn {
  transform: rotate(45deg);
}

/* Hover Effect for Icons */
.floating-btn:hover {
  transform: scale(1.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-menu {
    bottom: 15%;
    right: 15px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}


/* whatsapp button End */

* {
    margin: 0;
    padding: 0
}
html, body {
    overflow-x: hidden !important;
}
.hero-image,
.map-section,
.section-title {
    position: relative
}



@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width:767px) {
    .about-hero-single-section {
        min-height: 50vh;
        padding: 2rem 0
    }

    .about-hero-single-section h1 {
        font-size: 1.75rem
    }

    .about-hero-single-section p.lead,
    .portfolio-section .section-subtitle {
        font-size: 1rem
    }

    .portfolio-container {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .portfolio-item {
        width: 100%
    }

    .portfolio-box {
        width: 100%;
        max-width: 100%;
        margin: 0 auto
    }

    .portfolio-section .section-title {
        font-size: 1.5rem
    }
}

@media (min-width:768px) and (max-width:991px) {
    .about-hero-single-section {
        min-height: 60vh
    }
}

@media (min-width:992px) {
    .about-hero-single-section {
        min-height: 70vh
    }
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0
}

.dropdown-menu {
    transition: .2s
}

.filter-btn.active,
.filter-btn:hover {
    color: #fff !important;
    background: #0d6efd
}

.portfolio-item {
    opacity: 1;
    visibility: visible;
    transition: opacity .2s, visibility .2s
}

.portfolio-item.hide {
    opacity: 0;
    visibility: hidden
}

.portfolio-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px
}

.filter-btn {
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border: none;
    background: #e9ecef;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: .3s
}

.map-label {
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .75);
    color: #212529;
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    max-width: 300px
}

.map-label h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px
}

.map-label small {
    font-size: .9rem;
    color: #555
}

@media (max-width:768px) {
    .map-label {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        max-width: 90%
    }

    .map-label h2 {
        font-size: 1rem
    }

    .map-label small {
        font-size: .8rem
    }
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.portfolio-item {
    flex: 0 0 calc(33.333% - 30px)
}

:root {
    --primary-color: #4a6cf7;
    --secondary-color: #6a7c92;
    --accent-color: #ff6b6b;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease
}

.btn,
.custom-navbar,
.custom-navbar .nav-link::after,
.dropdown-item,
.footer a,
.form-control,
.pricing-card,
.social-links a,
a {
    transition: var(--transition)
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    padding-top: 80px
}

.btn-outline-primary,
a {
    color: var(--primary-color)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

a {
    text-decoration: none
}

a:hover {
    color: #3a57d5
}

.btn {
    border-radius: var(--border-radius);
    padding: 10px 25px;
    font-weight: 600
}

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

.btn-primary:hover {
    background-color: #3a57d5;
    border-color: #3a57d5;
    transform: translateY(-2px)
}

.btn-outline-primary,
.btn-outline-primary:hover {
    border-color: var(--primary-color)
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px)
}

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

.section-title::after {
    content: '';
    bottom: -10px;
    width: 60px;
    height: 3px
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

.custom-navbar {
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    padding: 15px 0
}

.custom-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem
}

.custom-navbar .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative
}

.custom-navbar .nav-link::after {
    content: '';
    bottom: 0;
    width: 0;
    height: 2px
}

.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link:hover::after {
    width: 100%
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius)
}

.dropdown-item {
    padding: 10px 20px
}

.hero-section,
.services-section {
    padding: 100px 0
}

.dropdown-item.active,
.dropdown-item:hover {
    background-color: rgba(74, 108, 247, .1);
    color: var(--primary-color)
}

.hero-section {
    background: linear-gradient(135deg, #f5f7ff 0, #eef1ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color)
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 500px
}

.hero-buttons {
    margin-top: 2rem
}

.hero-image img,
.strategy-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow)
}

.benefit-card,
.feature-card,
.process-step,
.service-card,
.team-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.benefit-icon,
.service-feature-card .feature-icon,
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 108, 247, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem
}

.cta-section h2,
.footer,
.footer a:hover,
.footer h5 {
    color: #fff
}

.service-card h4,
.service-content h3 {
    margin-bottom: 15px
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0, #3a57d5 100%);
    color: #fff;
    padding: 80px 0
}

.cta-section .btn {
    background-color: #fff;
    color: var(--primary-color);
    border: none
}

.cta-section .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px)
}

.footer {
    background-color: #1a1a1a
}

.footer h5 {
    margin-bottom: 20px
}

.footer a {
    color: #ccc
}

.footer ul li {
    margin-bottom: 10px
}

.footer img {
    background: #fff;
    padding: 3px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1)
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px)
}

.page-header {
    background: linear-gradient(135deg, #f5f7ff 0, #eef1ff 100%);
    padding: 100px 0 50px
}

.page-title {
    font-size: 3rem;
    font-weight: 800
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto
}

.contact-item .contact-icon,
.feature-icon {
    background: rgba(74, 108, 247, .1);
    border-radius: 50%;
    color: var(--primary-color)
}

.feature-icon,
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    display: flex
}

.about-content,
.contact-section,
.service-detail {
    padding: 80px 0
}

.benefit-card:hover,
.feature-card:hover,
.portfolio-item:hover,
.process-step:hover,
.result-item:hover,
.service-feature-card:hover,
.service-overview-card:hover,
.team-card:hover {
    transform: translateY(-5px)
}

.feature-icon {
    align-items: center;
    justify-content: center
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.form-control {
    border-radius: var(--border-radius);
    padding: 12px 15px;
    border: 1px solid #e1e5e9
}

.pricing-body ul,
.service-content ul,
.service-features {
    list-style: none;
    padding: 0
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .2rem rgba(74, 108, 247, .25)
}

.map-placeholder,
.portfolio-image img {
    border-radius: var(--border-radius)
}

.pricing-body,
.pricing-header,
.result-item {
    padding: 30px 20px
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 0
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.price,
.result-number {
    font-size: 2.5rem;
    font-weight: 700
}

.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%
}

.pricing-card:hover {
    transform: translateY(-10px)
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color)
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px)
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0, #3a57d5 100%);
    color: #fff;
    text-align: center
}

.portfolio-item,
.result-item,
.service-overview-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.pricing-header h3 {
    color: #fff;
    margin-bottom: 10px
}

.price span {
    font-size: 1rem;
    font-weight: 400
}

.pricing-body ul {
    margin-bottom: 30px
}

.pricing-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1
}

.pricing-body ul li:last-child {
    border-bottom: none
}

.portfolio-item {
    padding: 20px;
    height: 100%
}

.result-number {
    color: var(--primary-color);
    margin-bottom: 10px
}

.service-overview-card {
    display: flex;
    padding: 30px;
    height: 100%;
    margin-bottom: 30px
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(74, 108, 247, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
    margin-right: 25px
}

.service-content ul {
    margin: 15px 0 20px
}

.service-content ul li {
    padding: 5px 0 5px 20px;
    position: relative
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700
}

.service-feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center
}

.strategy-content {
    padding-right: 30px
}

@media (max-width:991px) {
    .hero-title {
        font-size: 2.8rem
    }

    .section-title {
        font-size: 2rem
    }

    .service-overview-card {
        flex-direction: column;
        text-align: center
    }

    .service-icon-large {
        margin-right: 0;
        margin-bottom: 20px
    }

    .strategy-content {
        padding-right: 0;
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .hero-title {
        font-size: 2.2rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .pricing-card.featured {
        transform: scale(1)
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px)
    }
}

@media (max-width:575px) {
    .hero-title {
        font-size: 1.8rem
    }

    .page-title {
        font-size: 2.2rem
    }

    .section-title {
        font-size: 1.6rem
    }
}