 @import url('https://cdn.fontsource.org/fonts/inter/css.css');

 :root {
     --primary: #0066cc;
     --primary-dark: #004d99;
     --secondary: #ff8c00;
     --secondary-dark: #e07b00;
     --dark: #1a1a2e;
     --gradient: linear-gradient(135deg, var(--primary), var(--secondary))
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 body {
     font-family: 'Inter', sans-serif;
     color: #333;
     overflow-x: hidden
 }

 .navbar {
     background: rgba(26, 26, 46, 0.95);
     backdrop-filter: blur(10px);
     padding: 12px 0;
     transition: all 0.3s ease;
     z-index: 1050;
 }

 .navbar.scrolled {
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
     padding: 8px 0;
 }

 .navbar-brand img {
     height: 80px;
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .navbar-brand {
     font-family: "Bungee Inline", sans-serif;
     color: #fff !important;
     font-size: 1.4rem;
     font-weight: 400;
     text-transform: uppercase;

 }

 .navbar.scrolled .navbar-brand img {
     height: 60px;
 }

 .nav-link {
     color: #fff !important;
     font-weight: 500;
     padding: 0.75rem 1.1rem !important;
     position: relative;
     transition: color 0.3s
 }

 .nav-link:hover {
     color: var(--secondary) !important
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 2px;
     background: var(--secondary);
     transition: all 0.3s;
     transform: translateX(-50%)
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 70%
 }

 .nav-link.active {
     color: var(--secondary) !important
 }

 .navbar-toggler {
     border: none
 }

 .navbar-toggler:focus {
     box-shadow: none
 }

 .hero-section {
     position: relative;
     overflow: hidden
 }

 .carousel-item {
     height: 85vh;
     min-height: 500px;
     background-size: cover;
     background-position: center;
     position: relative
 }

 /* Semi transparent overlay div over slider image inactivated. Commented out for future use if needed.
 .carousel-item::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(255, 140, 0, 0.55))
 }
 */

 .carousel-caption {
     bottom: 50%;
     transform: translateY(50%);
     z-index: 2;
     text-align: left
 }

 .carousel-caption h1 {
     font-size: 3.2rem;
     font-weight: 800;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
     margin-bottom: 1rem
 }

 .carousel-caption p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.95
 }

 .btn-primary-custom {
     background: var(--secondary);
     border: none;
     padding: 12px 35px;
     font-weight: 600;
     border-radius: 50px;
     color: #fff;
     transition: all 0.3s;
     display: inline-block;
     text-decoration: none
 }

 .btn-primary-custom:hover {
     background: var(--secondary-dark);
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
     color: #fff
 }

 .btn-outline-custom {
     border: 2px solid #fff;
     padding: 12px 35px;
     font-weight: 600;
     border-radius: 50px;
     color: #fff;
     transition: all 0.3s;
     background: transparent;
     display: inline-block;
     text-decoration: none
 }

 .btn-outline-custom:hover {
     background: #fff;
     color: var(--primary);
     transform: translateY(-3px)
 }

 .section-padding {
     padding: 80px 0
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px
 }

 .section-title h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--dark);
     position: relative;
     display: inline-block
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: var(--gradient);
     border-radius: 2px
 }

 .section-title p {
     color: #666;
     margin-top: 20px;
     font-size: 1.1rem
 }

 .why-us-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s;
     border: 1px solid rgba(0, 0, 0, 0.05);
     height: 100%
 }

 .why-us-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15)
 }

 .why-us-card .icon-box {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: var(--gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 2rem;
     color: #fff
 }

 .why-us-card h4 {
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 15px
 }

 .why-us-card p {
     color: #666;
     line-height: 1.7
 }

 .business-section {
     background: linear-gradient(135deg, #f5f7fa, #e8ecf1)
 }

 .business-card {
     background: #fff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s;
     height: 100%
 }

 .business-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12)
 }

 .business-card img {
     width: 100%;
     height: 220px;
     object-fit: cover
 }

 .business-card .card-body {
     padding: 30px
 }

 .business-card h4 {
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 15px
 }

 .business-card p {
     color: #666;
     line-height: 1.7
 }

 .business-card .learn-more {
     color: var(--primary);
     font-weight: 600;
     text-decoration: none;
     transition: color 0.3s
 }

 .business-card .learn-more:hover {
     color: var(--secondary)
 }

 .about-img {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15)
 }

 .about-img img {
     width: 100%;
     height: 100%;
     object-fit: cover
 }

 .reviews-section {
     background: linear-gradient(135deg, var(--dark), #16213e);
     color: #fff
 }

 .reviews-section .section-title h2 {
     color: #fff
 }

 .reviews-section .section-title h2::after {
     background: var(--secondary)
 }

 .reviews-section .section-title p {
     color: rgba(255, 255, 255, 0.7)
 }

 .review-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 35px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s;
     height: 100%
 }

 .review-card:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px)
 }

 .review-card .stars {
     color: var(--secondary);
     margin-bottom: 15px
 }

 .review-card p {
     font-style: italic;
     line-height: 1.7;
     margin-bottom: 20px;
     color: rgba(255, 255, 255, 0.9)
 }

 .review-card .reviewer {
     display: flex;
     align-items: center;
     gap: 15px
 }

 .review-card .reviewer img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover
 }

 .review-card .reviewer h5 {
     margin: 0;
     font-weight: 600
 }

 .review-card .reviewer span {
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.6)
 }

 .cta-section {
     background: var(--gradient);
     padding: 80px 0;
     position: relative;
     overflow: hidden
 }

 .cta-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url('https://image.qwenlm.ai/public_source/34a671ef-dcee-4f15-bb41-c51eb414a614/1d8b10ce1-6c65-4811-87b0-2d94c32b23fd.png') center/cover;
     opacity: 0.2
 }

 .cta-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: #fff
 }

 .cta-content h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px
 }

 .cta-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9
 }

 .btn-cta {
     background: #fff;
     color: var(--primary);
     padding: 15px 40px;
     border-radius: 50px;
     font-weight: 700;
     border: none;
     font-size: 1.1rem;
     transition: all 0.3s;
     text-decoration: none;
     display: inline-block
 }

 .btn-cta:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
     color: var(--primary)
 }

 .floating-contact {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
     display: flex;
     flex-direction: column;
     gap: 15px
 }

 .floating-btn {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.5rem;
     text-decoration: none;
     transition: all 0.3s;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
     animation: pulse 2s infinite
 }

 .floating-btn:hover {
     transform: scale(1.1)
 }

 .floating-btn.whatsapp {
     background: #25D366
 }

 .floating-btn.phone {
     background: var(--primary)
 }

 @keyframes pulse {

     0%,
     100% {
         box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2)
     }

     50% {
         box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4)
     }
 }

 footer {
     background: var(--dark);
     color: #fff;
     padding: 60px 0 30px
 }

 footer h5 {
     font-weight: 600;
     margin-bottom: 20px;
     color: var(--secondary)
 }

 footer p,
 footer a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     line-height: 1.8;
     transition: color 0.3s
 }

 footer a:hover {
     color: var(--secondary)
 }

 footer ul {
     list-style: none;
     padding: 0
 }

 footer ul li {
     margin-bottom: 10px
 }

 footer ul li a {
     display: flex;
     align-items: center;
     gap: 8px
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     margin-top: 40px
 }

 .social-links a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     margin-right: 10px;
     transition: all 0.3s
 }

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

 .back-to-top {
     position: fixed;
     bottom: 100px;
     right: 35px;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background: var(--primary);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     opacity: 0;
     transition: all 0.3s;
     z-index: 999
 }

 .back-to-top.show {
     opacity: 1
 }

 .back-to-top:hover {
     background: var(--secondary);
     transform: translateY(-3px)
 }

 .page-header {
     background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(255, 140, 0, 0.7));
     padding: 150px 0 80px;
     text-align: center;
     color: #fff
 }

 .page-header h1 {
     font-size: 2.5rem;
     font-weight: 700
 }

 .page-header .breadcrumb {
     justify-content: center;
     margin-top: 15px
 }

 .page-header .breadcrumb-item a {
     color: #fff;
     opacity: 0.8
 }

 .page-header .breadcrumb-item.active {
     color: var(--secondary)
 }

 .about-content h3 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--dark);
     margin-bottom: 20px
 }

 .about-content p {
     color: #666;
     line-height: 1.8;
     margin-bottom: 15px
 }

 .about-stats {
     display: flex;
     gap: 30px;
     margin-top: 30px;
     flex-wrap: wrap
 }

 .stat-item {
     text-align: center
 }

 .stat-item h3 {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--primary)
 }

 .stat-item p {
     color: #666;
     font-size: 0.9rem
 }

 .service-detail-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s;
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.05)
 }

 .service-detail-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 60px rgba(0, 102, 204, 0.12)
 }

 .service-detail-card .service-icon {
     width: 70px;
     height: 70px;
     border-radius: 15px;
     background: var(--gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     color: #fff;
     margin-bottom: 25px
 }

 .service-detail-card h4 {
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 15px
 }

 .service-detail-card p {
     color: #666;
     line-height: 1.7
 }

 .service-detail-card ul {
     list-style: none;
     padding: 0;
     margin-top: 15px
 }

 .service-detail-card ul li {
     padding: 8px 0;
     color: #555;
     border-bottom: 1px solid #eee
 }

 .service-detail-card ul li:last-child {
     border: none
 }

 .service-detail-card ul li i {
     color: var(--secondary);
     margin-right: 10px
 }

 .plan-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s;
     position: relative;
     overflow: hidden;
     height: 100%;
     border: 2px solid transparent
 }

 .plan-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary)
 }

 .plan-card.featured {
     border-color: var(--secondary);
     transform: scale(1.05)
 }

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

 .plan-badge {
     position: absolute;
     top: 20px;
     right: -35px;
     background: var(--secondary);
     color: #fff;
     padding: 5px 40px;
     font-size: 0.8rem;
     font-weight: 600;
     transform: rotate(45deg)
 }

 .plan-card .plan-name {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 10px
 }

 .plan-card .plan-price {
     font-size: 3rem;
     font-weight: 800;
     color: var(--primary);
     margin-bottom: 5px
 }

 .plan-card .plan-price span {
     font-size: 1rem;
     font-weight: 400;
     color: #666
 }

 .plan-card .plan-speed {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--secondary);
     margin-bottom: 20px
 }

 .plan-card ul {
     list-style: none;
     padding: 0;
     margin-bottom: 30px
 }

 .plan-card ul li {
     padding: 10px 0;
     border-bottom: 1px solid #eee;
     color: #555
 }

 .plan-card ul li:last-child {
     border: none
 }

 .plan-card ul li i {
     color: var(--primary);
     margin-right: 8px
 }

 .plan-card .btn-plan {
     background: var(--gradient);
     border: none;
     padding: 12px 35px;
     font-weight: 600;
     border-radius: 50px;
     color: #fff;
     transition: all 0.3s;
     width: 100%;
     display: block;
     text-decoration: none
 }

 .plan-card .btn-plan:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
     color: #fff
 }

 .contact-info-card {
     background: #fff;
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: all 0.3s;
     height: 100%
 }

 .contact-info-card:hover {
     transform: translateY(-5px)
 }

 .contact-info-card .contact-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: var(--gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: #fff;
     margin: 0 auto 20px
 }

 .contact-info-card h5 {
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 10px
 }

 .contact-info-card p {
     color: #666;
     margin: 0
 }

 .contact-form {
     background: #fff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08)
 }

 .contact-form .form-control {
     border-radius: 10px;
     padding: 12px 15px;
     border: 1px solid #ddd;
     transition: border-color 0.3s
 }

 .contact-form .form-control:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1)
 }

 .map-container {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     height: 400px
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: none
 }

 .policy-content {
     background: #fff;
     border-radius: 20px;
     padding: 50px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08)
 }

 .policy-content h2 {
     color: var(--dark);
     font-weight: 700;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 2px solid var(--gradient);
     display: inline-block
 }

 .policy-content h3 {
     color: var(--primary);
     font-weight: 600;
     margin-top: 30px;
     margin-bottom: 15px
 }

 .policy-content p {
     color: #555;
     line-height: 1.8;
     margin-bottom: 15px
 }

 .policy-content ul {
     color: #555;
     line-height: 1.8;
     margin-bottom: 15px;
     padding-left: 20px
 }

 .policy-content ul li {
     margin-bottom: 8px
 }

 .team-member {
     text-align: center;
     margin-bottom: 30px
 }

 .team-member img {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 15px;
     border: 4px solid var(--primary)
 }

 .team-member h5 {
     font-weight: 600;
     color: var(--dark)
 }

 .team-member p {
     color: #666;
     font-size: 0.9rem
 }

 .timeline {
     position: relative;
     padding: 20px 0
 }

 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     width: 3px;
     height: 100%;
     background: var(--gradient)
 }

 .timeline-item {
     position: relative;
     margin-bottom: 40px
 }

 .timeline-item::before {
     content: '';
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background: var(--secondary);
     border: 4px solid #fff;
     box-shadow: 0 0 0 3px var(--primary);
     z-index: 1
 }

 .timeline-content {
     background: #fff;
     border-radius: 15px;
     padding: 25px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     width: 45%
 }

 .timeline-item:nth-child(odd) .timeline-content {
     margin-left: auto;
     margin-right: 55%
 }

 .timeline-item:nth-child(even) .timeline-content {
     margin-left: 55%
 }

 .timeline-content h4 {
     color: var(--primary);
     font-weight: 600;
     margin-bottom: 10px
 }

 .timeline-content p {
     color: #666;
     margin: 0;
     font-size: 0.95rem
 }

 @media(max-width:768px) {
     .carousel-caption h1 {
         font-size: 1.8rem
     }

     .carousel-caption p {
         font-size: 0.95rem
     }

     .carousel-item {
         height: 60vh
     }

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

     .cta-content h2 {
         font-size: 1.8rem
     }

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

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

     .timeline::before {
         left: 20px
     }

     .timeline-item::before {
         left: 20px
     }

     .timeline-content {
         width: calc(100% - 60px);
         margin-left: 50px !important;
         margin-right: 0 !important
     }
 }
/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.phone {
    background: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    text-decoration: none !important;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
