/* Fixora IT Services - style.css */
/* Base */
:root {
  --primary: #1e73be;
  --secondary: #2bae66;
  --accent: #66b32e;
  --dark: #102a43;
  --light: #f7fbff;
  --white: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
.py-100 {
  padding: 100px 0;
}
.section-tag {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 20px;
}
.section-text {
  color: #666;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.logo {
  height: 70px;
  width: auto;
}
.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  margin: 0 8px;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.btn-call,
.btn-main,
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: 0.35s;
}
.btn-call:hover,
.btn-main:hover,
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 115, 190, 0.35);
  color: #fff;
}
.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-block;
  transition: 0.35s;
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary);
}
.hero {
  position: relative;
  padding: 180px 0 100px;
  background: url("https://images.pexels.com/photos/15554492/pexels-photo-15554492.jpeg?_gl=1*150963d*_ga*Mzg3NTU4MzkuMTc2MTIxNzkyMg..*_ga_8JE65Q40S6*czE3ODQxODg1MjYkbzY4JGcxJHQxNzg0MTg4NjkxJGoxNiRsMCRoMA..") center/cover no-repeat;
}
.hero .overlay,
.enquire-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 42, 67, 0.82), rgba(16, 42, 67, 0.82));
}
.hero > .container,
.enquire-section > .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
}
.hero h1 span {
  color: var(--accent);
}
.hero p,
.hero-list div,
.badge-text {
  color: #fff;
}
.hero-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 25px 0;
}
.booking-form,
.enquiry-form,
.popup-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.booking-form h3,
.enquiry-form h3 {
  color: #fff;
}
.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.experience-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}
.feature-box,
.trust-box,
.choose-card,
.service-card,
.counter-box,
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  height: 100%;
}
.choose-card:hover,
.service-card:hover,
.testimonial-card:hover,
.trust-box:hover {
  transform: translateY(-8px);
}
.choose-card i,
.service-card i,
.trust-box i {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
}
.choose-card.brand-card {
  text-align: center;
}
.choose-card.brand-card img {
  margin: 0 auto 15px;
  border-radius: 10px;
  width: 100%;
  max-width: 160px;
  height: auto;
}
.choose-card.brand-card h4 {
  font-size: 18px;
  margin: 0;
}
.service-card {
  text-align: center;
}
.services {
  background: var(--light);
}
.counter-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.counter-box {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
}
.counter-box h5 {
  margin: 10px 0;
}
.enquire-section {
  position: relative;
  background: url("https://images.pexels.com/photos/32588542/pexels-photo-32588542.jpeg?auto=compress&cs=tinysrgb&h=1080&fit=crop&w=1920") center/cover no-repeat;
}
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  color: #fff;
  margin: 10px 0;
}
.testimonial-section {
  background: var(--light);
}
.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer {
  background: var(--dark);
  color: #fff;
  padding: 70px 0 20px;
}
.footer a,
.footer li {
  color: #d8e3ee;
  list-style: none;
  margin: 8px 0;
}
.whatsapp-btn,
.call-btn {
  position: fixed;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 999;
}
.whatsapp-btn {
  bottom: 90px;
  background: #25d366;
}
.call-btn {
  bottom: 20px;
  background: var(--primary);
}
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.popup-box {
  background: #fff;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.close-popup {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #1e73be;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: #2bae66;
  transform: translateY(-5px);
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */

/* Large desktops / big screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
  .hero h1 {
    font-size: 64px;
  }
}

/* Small laptops / large tablets */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 50px;
  }
  .section-title {
    font-size: 38px;
  }
  .about-img img {
    height: 380px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .hero {
    padding-top: 150px;
    text-align: center;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-btns {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .section-title {
    font-size: 34px;
  }
  .logo {
    height: 60px;
  }
  .about-img img {
    height: 320px;
    margin-bottom: 20px;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .booking-form,
  .enquiry-form {
    margin-top: 40px;
  }
}

/* Large phones / small tablets */
@media (max-width: 767px) {
  .py-100 {
    padding: 70px 0;
  }
  .hero {
    text-align: center;
    padding: 140px 0 70px;
  }
  .hero-list {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-tag {
    font-size: 13px;
  }
  .btn-main,
  .btn-outline-custom,
  .btn-call,
  .btn-submit {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    justify-content: center;
  }
  .hero-btns {
    flex-direction: column;
  }
  .whatsapp-btn,
  .call-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .about-img img {
    height: 260px;
  }
  .experience-box {
    padding: 12px;
    right: 10px;
    bottom: 10px;
  }
  .choose-card.brand-card img {
    max-width: 120px;
  }
  .counter-box h2.counter {
    font-size: 34px;
  }
}

/* Small phones */
@media (max-width: 575px) {
  .hero h1 {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .service-card,
  .choose-card,
  .feature-box,
  .counter-box {
    padding: 20px;
  }
  .choose-card i,
  .service-card i {
    font-size: 34px;
  }
  .booking-form,
  .enquiry-form,
  .popup-box {
    padding: 22px;
  }
  .footer {
    padding: 50px 0 20px;
    text-align: center;
  }
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 30px;
  }
  .scroll-top,
  .whatsapp-btn,
  .call-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .whatsapp-btn {
    bottom: 78px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 24px;
  }
  .badge-text {
    font-size: 12px;
  }
  .logo {
    height: 48px;
  }
}

.footer {
    background: #0f172a;
    color: #d1d5db;
    padding: 70px 0 30px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p,
.footer li {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: #0d6efd;
}

.footer i {
    color: #0d6efd;
    width: 22px;
    margin-right: 6px;
}

.footer iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.footer hr {
    border-color: rgba(255,255,255,.1);
    margin: 35px 0 20px;
}

@media (max-width:768px){
    .footer{
        text-align:center;
    }

    .footer i{
        margin-right:5px;
    }

    .footer iframe{
        height:250px;
    }
}