/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #0097d7;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #212728;
    --text-color: #807c7c;
    --text-light: #7f8c8d;
}

body {
    font-family: 'Chivo', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

    .main-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 40px;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            color: #2c3e50 !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }
        
        .nav-link:hover {
            color: #e74c3c !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #e74c3c;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .call-btn {
            background-color: #e74c3c;
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .call-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .call-btn i {
            margin-right: 8px;
        }
        
        .mobile-call-btn {
            display: none;
            background-color: #e74c3c;
            color: white;
            border-radius: 50px;
            padding: 10px 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        @media (max-width: 991px) {
            .desktop-call-btn {
                display: none;
            }
            
            .mobile-call-btn {
                display: inline-flex;
                align-items: center;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                margin-top: 15px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link {
                margin: 10px 0;
                padding: 10px 15px;
            }
            
            .nav-link:after {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand img {
                height: 35px;
            }
            
            .mobile-call-btn {
                padding: 8px 12px;
                font-size: 14px;
            }
        }
        
/* Printer Support Banner Styles */
.printer-support-banner {
    background-image:  url('img/73702.jpg');
    background-size: cover;
    background-position:bottom right;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0;
    min-height: 35vh;
    text-align: center;
    position: relative;
}

.printer-support-banner .container {
    position: relative;
    z-index: 2;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .printer-support-banner {
        padding: 80px 0;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .printer-support-banner {
        padding: 60px 0;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
}
/* Header Section */
.header-section {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.main-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.header-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.phone-box {
    display: grid;
    background-color: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-number {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem;
    font-weight: 700;
    /* display: block; */
    margin-bottom: 1rem;
    /* background-color: var(--secondary-color); */
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}
.phone-number:hover{
    color:var(--light-color)
}

.note-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-decoration: underline;
}

.support-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0px;
}

/* Hero Banner */
.hero-banner {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    text-align: justify;
    font-size: 1.1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align-last: center;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: white;
}

.service-card {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-text {
    color: var(--text-color);
}

/* Problems Section */
.problems-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.problem-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid var(--secondary-color);
}

.problem-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-text {
    color: var(--text-color);
}

/* Repair Section */
.repair-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn-call-now {
    background-color: var(--secondary-color);
    color: white;
    /* padding: 0.75rem 2rem; */
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background-color: #0088c3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Offline Section */
.offline-section {
    padding: 4rem 0;
    background-color: white;
}

.feature-box {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-color);
}

/* Help Section */
.help-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.help-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.help-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Wireless Section */
.wireless-section {
    padding: 4rem 0;
    background-color: white;
}

.wireless-card {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.wireless-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.wireless-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: white;
}

.cta-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-section {
    padding: 3rem 0;
    background-color: var(--dark-color);
    color: white;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

  /* Floating Call Bar Styles */
        .floating-call-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #212728;
            color: white;
            text-align: center;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            z-index: 999;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        .floating-call-bar.hidden {
            transform: translateY(100%);
        }
        
        .call-button {
            display: inline-flex;
            align-items: center;
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 7px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .call-button:hover {
            background-color: white;
            color: #e74c3c;
            transform: translateY(-2px);
        }
        
        .call-button i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .close-button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .call-button {
                padding: 8px 20px;
                font-size: 16px;
            }
        }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-heading, .section-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 2rem 0;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .phone-box {
        margin-top: 2rem;
    }
    
    .hero-banner, .repair-section, .offline-section, 
    .help-section, .wireless-section, .cta-section {
        padding: 0rem 0;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.5rem;
    }
    
    .hero-heading, .section-heading, .cta-heading {
        font-size: 1.8rem;
    }
    
    .header-text, .hero-text, .section-text {
        font-size: 1rem;
    }
}


/* model window */

/* model window */

.bg-dark {
    background-color: #21252900!important;
  }
  
  .modal-box{ font-family: 'Varela Round', sans-serif; }
  .modal-box .show-modal{
      color: #222;
      background-color: #fff;
      font-size: 18px;
      font-weight: 600;
      text-transform: capitalize;
      padding: 10px 15px;
      margin: 80px auto 0;
      border: none;
      outline: none;
      box-shadow: 0 0 10px #555;
      display: block;
  }
  .modal-box .show-modal:hover,
  .modal-box .show-modal:focus{
      color: #222;
      background-color: #fff;
      border: none;
      outline: none;
      text-decoration: none;
  }
  .modal-backdrop.in{ opacity: 0.1; }
  .modal-box .modal{ top: 0px !important;background: #10218b4f; }
  .modal-box .modal-dialog{
      width: 450px;
      margin: 80px auto 10px;
  }
  .modal-box .modal-dialog .modal-content{
      border-radius: 25px;
      box-shadow: 0 0 25px -8px #555;
  }
  .modal-box .modal-dialog .modal-content .close{
      color: #e74c3c;
      background-color: #fff;
      font-size: 28px;
      text-shadow: none;
      line-height: 33px;
      height: 36px;
      width: 36px;
      opacity: 1;
      border-radius: 50%;
      box-shadow: 0 0 5px #555;
      position: absolute;
      left: auto;
      right: -5px;
      top: -5px;
      z-index: 1;
      transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .close span{
      margin: -1px 0 0 0;
      display: block;
  }
  .modal-box .modal-dialog .modal-content .close:hover{
      color: #fff;
      background-color: #e74c3c;
  }
  .modal-box .modal-dialog .modal-content .modal-body{ padding: 50px 20px !important; }
  .modal-box .modal-dialog .modal-content .modal-body .icon{
      color: #26de81;
      font-size: 36px;
      text-align: center;
      text-shadow: 4px 0 0 #fff, 0 -3px 0 #fff;
      line-height: 40px;
      height: 50px;
      width: 50px;
      margin: 0 auto 30px;
      position: relative;
      z-index: 1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .icon:after{
      content: '';
      height: 45px;
      width: 45px;
      border: 5px solid #c1c1c1;
      border-radius: 50%;
      position: absolute;
      left: -5px;
      top: 3px;
      z-index: -1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .title{
      margin: 0 0 20px 0;
      font-size: 24px;
      color: #000000;
      text-transform: capitalize;
      font-weight: 600;
      text-align: center;
      padding-top: 5px;
      padding-bottom: 2px;
  }
  .modal-box .modal-dialog .modal-content .modal-body .description{
    color: #05711e;
    text-align: center;
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe{
      color: #fff;
      background-color: #26de81;
      font-size: 18px;
      text-transform: uppercase;
      padding: 10px 20px;
      margin: 0 auto;
      border: 0 solid #222;
      border-radius: 50px;
      overflow: hidden;
      display: block;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe:hover{ background-color: #222; }
  @media only screen and (max-width: 768px){
      .modal-dialog{ width: 400px !important; }
  }
  @media only screen and (max-width: 576px){
      .modal-dialog{ width: auto !important; }
  }
   /* chatbtn */
  
   .btn-get
   {
   font-weight: 700;
   width: 180px;
   background-color: #0097d7;
   padding: 16px;
   color: #ffffff;  
   font-size: 20px;
   border-radius: 50px;
   text-decoration: none;
   transition: all 0.3s ease;
   }
 
   
   .btn-get:hover
   {
     background-color: #000000;
    color: #ffffff;
   text-decoration: none;
   }

   a{text-decoration: none;color: #000;}