* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Firefox Scrollbar Styling */
* {
  scrollbar-width: thin;
}

:root{
 --primary:#1f4f82;
 --secondary:#2f7de1;
 --light:#f5f7fa;
 --dark:#1b1b1b;
}

body {
  background: linear-gradient(135deg, #f5f9fc 0%, #eff5f8 100%);
}

.bg-footer{
    background: rgb(24, 106, 161)
}

.bg-red {
  background-color: #0049e6;
}

.display-7{
    font-size: 2rem;
    font-weight: 700;
}

.dark-red {
  color: #160092;
}

.bg-dark-red {
  background-color: #002792;
}

.border-dark-red {
  border-color: #002e92 !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

.form-backgr {
  background-color: var(--red);
}

section:has([data-animate]) {
  overflow: hidden;
}

.faq-img-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating Buttons */
.floating-row {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
}

/* FAB Button */
.fab-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0692e3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.fab-icon:hover {
  opacity: 0.85;
}

/* Hamburger Icon */
.icon-bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  margin: 5px 0;
}

/* FAB Options */
.fab-options {
  position: absolute;
  bottom: 70px;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% bottom;
  transition: all 0.3s ease;
}

.fab-wrapper:hover .fab-options {
  opacity: 1;
  transform: scale(1);
}

.fab-icon-holder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.fab-icon-holder:hover {
  opacity: 0.85;
}

.call-btn {
  background-color: #007bff;
}

.whatsapp-btn {
  background-color: #25d366;
}

/* Tooltip Label */
.fab-label {
  position: relative;
  background-color: #000;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.fab-label::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-right: 15px solid #000;
  border-bottom: 10px solid transparent;
}

.fab-options li:hover .fab-label {
  display: block;
}

/* Quote Button */
.floating-btn {
  background: #067fe3;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-btn a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.floating-btn a:hover {
  color: #fff;
  text-decoration: none;
}
/* Animations*/

/* === Base animation setup === */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* === Direction Animations === */
[data-animate="left"] {
  transform: translateX(-50px);
}
[data-animate="right"] {
  transform: translateX(50px);
}
[data-animate="top"] {
  transform: translateY(-50px);
}
[data-animate="bottom"] {
  transform: translateY(50px);
}

/* === When visible === */
[data-animate].show {
  opacity: 1;
  transform: translate(0, 0);
}

/* === Delay options === */
[data-delay="1"] {
  transition-delay: 0.3s;
}
[data-delay="2"] {
  transition-delay: 0.6s;
}
[data-delay="3"] {
  transition-delay: 0.9s;
}
[data-delay="4"] {
  transition-delay: 1.2s;
}

/* Menu Overlay */

/* Top Bar */
.top-bar {
  background-color: var(--primary-red);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
}

.top-bar a:hover {
  color: #dce31e;
}

/* Main Navbar */
.main-navbar {
  background-color: #fff;
  padding-top: 4px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo-menu img {
  height: 100px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Action Buttons */
.phone-btn {
  color: #1e52e3;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.phone-btn:hover {
  color: #148ac0;
  transform: translateY(-2px);
}

.track-btn {
  color: #1e63e3;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.track-btn:hover {
  color: #145fc0;
  transform: translateY(-2px);
}

.quote-btn {
  background-color: #1e6de3;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.quote-btn:hover {
  background-color: #2514c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(30, 132, 227, 0.3);
}

/* Hamburger Button */
.hamburger-btn {
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger-btn i {
  font-size: 30px;
}

.hamburger-btn:hover {
  transform: scale(1.1);
}

/* Full Screen Menu */
.fullscreen-menu {
  position: fixed;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 50%, #ececec 100%);
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.fullscreen-menu::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
.fullscreen-menu {
  scrollbar-width: none; /* hides scrollbar */
}

/* For IE & old Edge */
.fullscreen-menu {
  -ms-overflow-style: none;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  padding-inline: 40px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Menu Button */
.close-menu-btn {
  top: 40px;
  right: 50px;
  z-index: 1001;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.close-menu-btn i {
  color: var(--primary-red);
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.fullscreen-menu.active .close-menu-btn {
  opacity: 1;
  visibility: visible;
}

.close-menu-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.close-menu-btn:hover i {
  color: var(--primary-red);
  text-shadow: 0 0 15px rgba(227, 30, 36, 0.6);
}

.menu-title {
  font-size: 24px;
  position: relative;
  margin-bottom: 6px;
  color: #101010;
  font-weight: 700;
  display: block;
}

.menu-title::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 4px;
  width: 30%;
}

.menu-section ul li {
  margin-top: 10px;
}

.menu-section ul li a {
  color: #101010;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
}

.menu-section ul li a:hover {
  color: var(--primary-red);
  padding-left: 10px;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #101010;
}

.contact-info a {
  color: #101010;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
}

.contact-info a:hover {
  color: var(--primary-red);
  padding-left: 10px;
}

.contact-info i {
  color: #1e8ae3;
  margin-right: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #1e84e3;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icons a:hover {
  background-color: #ffeb3b;
  color: #1a1a1a;
  border-color: #1e94e3;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 138, 227, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .fullscreen-menu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-inline: 40px;
  }
  .fullscreen-menu::-webkit-scrollbar {
    display: block;
    width: 8px;
  }

  /* Optional scrollbar style for menu */
  .fullscreen-menu::-webkit-scrollbar-thumb {
    background: #39bee6;
    border-radius: 4px;
  }

  /* Re-enable scrollbar in Firefox & Edge */
  .fullscreen-menu {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
  }
  .menu-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .close-menu-btn {
    top: 30px;
    right: 30px;
  }

  .phone-btn,
  .track-btn {
    font-size: 14px;
  }

  .quote-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.top-section {
  margin-top: -160px;
  position: relative;
  z-index: 9;
}

@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
/* Footer Background */
.footer-bg {
  position: relative;
  z-index: 1;
  background-color: var(--red);
}

/* Background Image */
.footer-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

/* Footer Overlay */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 85, 135, 0.85);
  z-index: 1;
}

/* Ensure content is above background */
.footer-bg .container {
  position: relative;
  z-index: 2;
}
.footer-text {
  color: rgb(217, 217, 217);
}

.footer-link {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgb(217, 217, 217);
}

.footer-link:hover {
  color: #ffbf00;
  text-decoration: none;
}

/* Social Icons */
.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #9a7400;
  border-color: #ffc107;
  color: #ffffff;
  transform: scale(1.1);
}

/* Footer Links */
.footer-links li {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.892);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffbf00;
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* Contact Boxes */
.contact-box {
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #0b2a48;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  position: relative;
  z-index: 2;
}

.btn-warning {
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}


/* service */
.service-img{
    max-width: 380px;   /* image chhoti ho jayegi */
    width: 100%;
}

/* teble2 */
.city-trust-page{
    background:#f5f7fb;
    padding:40px 0;
}

/* ===== Rectangular card ===== */
.city-content-design{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    max-width:1100px;
    margin:auto;
}

/* ===== Heading ===== */
.city-content-design h2{
    font-weight:700;
    margin-bottom:25px;
    color:#0d6efd;
}

/* ===== Table base ===== */
.city-content-design table{
    width:100%;
    border-collapse:collapse;
}

/* ===== Header row ===== */
.city-content-design thead th{
    background:#0d6efd;
    color:#fff;
    padding:6px;
    text-align:center;
    font-weight:600;
}

/* ===== Table body cells ===== */
.city-content-design tbody td{
    padding:4px;
    border-bottom:1px solid #eee;
    text-align:center;
    font-size:15px;
}

/* ===== First column text left ===== */
.city-content-design tbody td.text{
    text-align:left;
    font-weight:500;
}

/* ===== Check & cross ===== */
.city-content-design .check{
    color:#28a745;
    font-size:18px;
    font-weight:bold;
}

.city-content-design .cross{
    color:#dc3545;
    font-size:18px;
    font-weight:bold;
}

/* ===== Hover effect ===== */
.city-content-design tbody tr:hover{
    background:#f9fbff;
}
/* end  */

/* home about section  */
.about-section .stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid navy; /* navy outline */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: navy; /* number color matches border */
    background-color: transparent; /* transparent inside */
    transition: transform 0.3s;
}

/* Optional hover effect on circle */
.about-section .stat-circle:hover {
    transform: scale(1.05);
}

/* Stat item alignment */
 .about-section .stat-item small {
    font-size: 0.9rem;
    color: #333;
}
.main-img {
  border-radius: 6px;
  height:450px;        
  object-fit:cover;    
}

.small-img {
  width: 220px;
  position: absolute;
  bottom: -30px;
  left: 60%;
  border-radius: 6px;
  border: 6px solid #fff;
}

/* Checklist */
.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}

.about-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Mobile fix */
@media (max-width: 768px) {
  .small-img {
    position: static;
    width: 140px;
    margin-top: 15px;
  }
}
/* end  */
/* iba section  */
.cert-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.cert-img {
  max-height: 130px;
  transition: 0.4s ease;
  animation: floatLogo 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Hover Effect */
.cert-item:hover .cert-img {
  transform: translateY(-10px) scale(1.08);
  filter: drop-shadow(0 10px 18px rgba(13,110,253,0.35));
}

.cert-item:hover h6 {
  color: #0d6efd;
  transition: 0.3s;
}

/* Soft Glow Effect */
.cert-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(13,110,253,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  z-index: -1;
}

.cert-item:hover::before {
  width: 160px;
  height: 160px;
}
/* end  */
/* iba  */
.circle {
    width: 140px;
    height: 140px;
}

.circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

.circle:hover img {
    transform: translateY(-6px);
}
/* end  */

/* service   */

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
}
/* end  */
/* home why choose us  */
.why-card {
  transition: all 0.3s ease;
}
.left-panel{
  background:rgb(16 49 97) !important;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #13376d !important;
}

/* CTA subtle hover */
.btn-light.rounded-pill:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}
/* end  */

/* testimonial  */
.testimonial-main {
  display: none;
  transition: 0.4s ease;
}

.testimonial-main.active {
  display: block;
}

/* Slight premium hover effect */
.testimonial-main:hover {
  transform: translateY(-5px);
}
/* end  */

/* cta-city */
/* Custom dark tone (if you want slightly different from bg-dark) */
.cta-section {
  background-color: #17252b;
}

/* Perfect Circle Frame */
.img-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .img-circle {
    width: 200px;
    height: 200px;
    margin-top: 20px;
  }
}
/* end  */
/* city-table1 */
/* Header */
.pricing-table-wrapper .city-header h3 {
    color: #59a2f7;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Table */
.pricing-table-wrapper .pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #e0e0e0;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

/* Red theme */
.pricing-table thead th {
    background: #0f2a5c;
    color: #fff;
}

.pricing-table-wrapper .sticky-col {
    position: sticky;
    left: 0;
    background: #21204e;
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

.pricing-table tbody tr:nth-child(even) td:not(.sticky-col) {
    background: #cdd8fc;
}

.pricing-table tbody tr:hover td:not(.sticky-col) {
    background: #e1e1ff;
}

/* Responsive */
@media (max-width: 600px) {
    .pricing-table td[data-label]:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: #021d58;
    }

    .pricing-table-wrapper .pricing-table td {
        text-align: right;
    }

    .pricing-table-wrapper .sticky-col {
        text-align: left;
    }
}
/* end  */

/* faq  */
.faq-wrapper {
  max-width: 100%;  /* full width in its column */
  background:#e0e8ff;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* FAQ items styling stays same as your code */
.faq-section .item .answer { display: none; }
.faq-section .item.open .answer { display: block; }

.offer-box {
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  background: linear-gradient(135deg, #f0f4ff, #d9e2ff);
}
/* end  */

/* peocess */
.process-one {
    background: #34343e;
}

/* Circle icon styling */
.process-icon-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

/* Hover effect for circle */
.process-icon-circle:hover {
    transform: translateY(-5px);
    background-color: #5297f1;
}

/* Image inside circle */
.process-icon-circle img {
    width: 100px;
    height: auto;
    transition: 0.3s;
}

/* Step number badge */
.process-step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5297f1;
    color: white;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}

.process-one__icon:hover .process-step-number {
    background-color:#34343e; 
    transform: translateX(-50%) scale(1.2); 
}
/* Step title below circle */
.process-one__icon h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
}
/* end  */
