/* Reset */
html, body {
  overflow-x: hidden;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container spacing */
.section {
  padding: 80px 0;
}

/* Navbar */
.navbar {
  transition: 0.3s;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
  color: #0d6efd !important;
}

.navbar .nav-link {
  margin-left: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #0d6efd;
}

/* Call Button */
.navbar .btn {
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 30px;
  font-weight: 800;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0755ee, #fa760d);
  color: white;
  padding: 70px 0;
  text-align: left;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-top: 15px;
}

.hero .btn {
  margin-top: 20px;
  border-radius: 30px;
}

/* About Image */
img {
  max-width: 100%;
  height: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
}

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

/* Icons */
.card i {
  color: #0d6efd;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0755ee, #fa760d);
  border: none;
  padding: 10px 22px;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
  background: #f5f5f5;
}

/* Contact Form */
form input,
form textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
}

form button {
  width: 100%;
}


/* ===================== */
/* 🔥 MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .navbar .btn {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .card {
    margin-bottom: 20px;
  }
}

/* ===================== */
/* 📱 EXTRA SMALL DEVICES */
/* ===================== */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}



/* Footer Main */
.footer {
  background: #0f0667;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

/* Headings */
.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.footer p {
  color: #fff;
  line-height: 1.7;
}

/* Links */
.footer a {
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.footer a:hover {
  color: #d26507;
  padding-left: 5px;
}


/* List */
.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li a:hover{ color: #d26507;}
/* Contact spacing */
.footer .col-lg-3 p {
  margin-bottom: 8px;
}

/* Divider */
.footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

/* Copyright */
.footer .text-center {
  color: #888;
  font-size: 13px;
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  
  .footer {
    text-align: center;
  }

  .footer h5 {
    margin-top: 20px;
  }

  .footer a:hover {
    padding-left: 0;
  }
}

/* ===================== */
/* 💻 TABLET */
/* ===================== */

@media (max-width: 992px) {
  .footer .col-lg-3 {
    margin-bottom: 20px;
  }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0755ee, #fa760d);
    padding: 40px 20px;
    color: #fff;
}

/* Heading */
.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Subtext */
.cta-section p {
    font-size: 18px;
    margin: 15px 0 25px;
    color: #ccc;
}
/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, #0755ee, #fa760d);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
    color: #fff;
}

/* Click Effect */
.btn-cta:active {
    transform: scale(0.95);
}

/* Glow Animation */
.btn-cta::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -120%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 120%;
}

/* Default: hide mobile-only element on larger screens */
  .mobile-phone {
    display: none;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .mobile-phone {
      display: flex;
      position: fixed;
      top: 0px;
      left: 0;
      right: 0;
      height: 56px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 16px;
      background: linear-gradient(90deg,#0b7dda,#0366a6);
      color: white;
      font-weight: 800;
      z-index: 9;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      /* if you want safe-area for iPhones with notch */
      padding-top: env(safe-area-inset-top);
    }

    .mobile-phone a.phone-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      background: rgba(255,255,255,0.12);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 25px;
    }

    /* body content should not hide under fixed header */
    body { padding-top: 56px; }
  }
  
  /* Hide by default */
  .mobile-callbar {
    display: none;
  }

  /* Show and style on mobile only */
  @media (max-width: 768px) {
    .mobile-callbar {
      display: flex;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 60px;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #007bff, #0a68c5);
      color: #fff;
      font-weight: 800;
      z-index: 9999;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
      padding: 0 16px;
      /*padding-bottom: calc(env(safe-area-inset-bottom) + 10px);*/
      text-align: center;
    }

    .mobile-callbar span.label {
      margin-right: 8px;
      font-weight: 600;
    }

    .mobile-callbar a.call-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
      background: rgba(255,255,255,0.15);
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 25px;
    }

  }