.footer-row2 .navbar-brand img{
    height:170px !important
}

.text-justify{
    text-align: justify;
}
.main-header{
    background-color: #fff;
}
.nav-bg-b .custom-nav .nav-list li a.menu-links{
    color:#050748
}

.ptb-30{
    padding : 30px 0;
}

.ptb-60{
    padding : 60px 0;
}
/* Equal height mission & vision boxes */
.missionvision .row {
    display: flex;
    align-items: stretch;
}

.missionvision .col-lg-6 {
    display: flex;
}

.missionvision .s-block2 {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.case-study h3 {
    margin-bottom: 15px;
}

.case-study ul {
    padding-left: 18px;
}

.case-study ul li {
    margin-bottom: 8px;
}
.service-content { padding: 20px 10px; }

.service-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #c59d5f;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-title {
    font-size: 30px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 15px;
}

.service-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c59d5f;
    display: block;
    margin-top: 8px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
    padding-left: 0;
}

.service-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.service-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c59d5f;
    font-weight: bold;
}
/* Brand Partners Section */
.brand-partners {
    background: #ffffff;
}

.brand-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #0b1c39;
}

/* Brand Box */
.brand-box {
    background: #e8e1d5;
    border: 2px solid #355c8a;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* LOGO – ORIGINAL COLORS */
.brand-box img {
    max-height: 60px;
    object-fit: contain;
    filter: none;              /* 🔥 remove grayscale */
    transition: transform 0.3s ease;
}

/* Optional hover zoom (no color change) */
.brand-box img:hover {
    transform: scale(1.05);
}
/* WHY CHOOSE – Equal Box Design */
.why-choose .s-block {
    height: 100%;
    min-height: 260px;          /* SAME HEIGHT FOR ALL */
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 35px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* ICON SIZE FIX */
.why-choose .s-card-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
}

/* TITLE ALIGNMENT */
.why-choose .s-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0b1c39;
    line-height: 1.4;
    margin: 0;
}

/* HOVER EFFECT (OPTIONAL BUT PREMIUM) */
.why-choose .s-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    border-color: #2563eb;
}
.consult-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    padding-top: 5vh;
}

.consult-box {
    background: #fff;
    width: 100%;
    max-width: 460px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 35px 35px;
    border-radius: 16px;
    position: relative;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.consult-box h3 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.consult-box p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #666;
}

.consult-box input,
.consult-box select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.consult-box input:focus,
.consult-box select:focus {
    outline: none;
    border-color: #cfae70;
}

.consult-box button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #cfae70, #b08b4f);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consult-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 174, 112, 0.4);
}

.close-btn {
    position: absolute;
    top: 55px;
    right: 18px;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: #ff4757;
    color: white;
    border-color: #ff4757;
    transform: rotate(90deg);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Service card image wrapper */
.service-card-app .tec-icon {
    width: 100%;
    height: 220px;            /* controls image height */
    overflow: hidden;
    border-radius: 10px;
}

/* Service card images */
.service-card-app .tec-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* makes image wider, no stretch */
    object-position: center;
    border-radius: 10px;
}
.service-card-app .tec-icon img {
    transition: transform 0.4s ease;
}

.service-card-app:hover .tec-icon img {
    transform: scale(1.08);
}
/* ===============================
   WHY CHOOSE US SECTION
=============================== */

.why-choose-style {
  background: #ffffff;
  padding: 80px 0;
}

/* Headings */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b0f3f;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b6f9a;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  min-height: 240px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.08);
}

/* Icon box */
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff2b6a, #7b5cff);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

/* Icon */
.why-icon i {
  font-size: 22px;
  color: #ffffff;
}

/* Card title */
.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b0f3f;
  margin-bottom: 12px;
  line-height: 1.35;
}

/* Card text */
.why-card p {
  font-size: 15px;
  color: #5c5f87;
  line-height: 1.6;
}

/* Highlight card */
.highlight-card {
  border: 2px solid #ff2b6a;
}

.highlight-card h5 {
  color: #ff2b6a;
}

.highlight-card .why-icon {
  background: #ff2b6a;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {

  .why-choose-style {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .why-card {
    min-height: auto;
  }
}

/* ==============================
   HOW WE WORK SECTION
============================== */

.how-we-work {
  background: #ffffff;
  padding: 80px 0;
}

/* ==============================
   SECTION HEADING
============================== */

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b0f3f;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b6f9a;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==============================
   STEP CARD
============================== */

.work-card {
  background: #ffffff;
  min-height: 240px;              /* uniform height */
  padding: 32px 24px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.work-card {
  padding-top: 60px;   /* space for floating number */
}


/* ==============================
   STEP NUMBER
============================== */

.work-card .step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff2b6a, #7b5cff);
  color: #ffffff;

  font-size: 20px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: -60px;              /* ⭐ pulls number outside card */
  margin-bottom: 20px;

  box-shadow: 0 10px 25px rgba(123, 92, 255, 0.35);
}

.work-card:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
}


/* ==============================
   CARD TITLE
============================== */
.work-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0b0f3f;

  margin-bottom: 12px;
  max-width: 200px;
  text-align: center;
  line-height: 1.35;

  min-height: 44px;   /* ⭐ CRITICAL FIX */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ==============================
   CARD DESCRIPTION
============================== */
.work-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6f9a;

  max-width: 220px;
  margin: 0 auto;
  text-align: center;

  min-height: 70px;   /* ⭐ CRITICAL FIX */
}


/* ==============================
   MOBILE OPTIMIZATION
============================== */

@media (max-width: 768px) {

  .how-we-work {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .work-card {
    min-height: auto;
    padding: 28px 20px;
  }
}
/* ===============================
   TRUSTED BRANDS – FINAL TUNING
================================ */

.trusted-brands {
  background: #ffffff;
  padding: 90px 0;
}

/* Grid */
.brand-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 55px 40px;   /* more breathing space */

  align-items: center;
  justify-items: center;
}

/* LOGO SIZE – MAIN FIX */
.brand-grid img {
  max-width: 165px;     /* ⬅ increased */
  max-height: 80px;     /* ⬅ increased */

  width: auto;
  height: auto;
  object-fit: contain;

  filter: none;
  opacity: 1;

  transition: transform 0.3s ease;
}

/* Hover */
.brand-grid img:hover {
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 991px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }

  .brand-grid img {
    max-width: 150px;
    max-height: 75px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .brand-grid img {
    max-width: 140px;
    max-height: 70px;
  }
}
/* ==============================
   PORTFOLIO PREVIEW
============================== */

.portfolio-preview {
  background: #ffffff;
}

/* Section title */
.portfolio-preview .section-title span {
  color: #ff2b6a;
}

/* Card */
.portfolio-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-decoration: none;
}

/* Hover */
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.1);
}

/* Image */
.portfolio-img {
  height: 240px;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* Content */
.portfolio-content {
  padding: 20px 22px;
}

.portfolio-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: #0b0f3f;
  margin-bottom: 12px;
}

/* Footer */
.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-footer .price {
  font-size: 14px;
  font-weight: 500;
  color: #caa25a;
}

.portfolio-footer .btn-view {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: #2b2b2b;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio-img {
    height: 200px;
  }
  
  /* Mobile modal adjustments */
  .consult-modal {
    padding: 15px;
    padding-top: 20px;
    align-items: flex-start;
  }
  
  .consult-box {
    padding: 30px 25px;
    max-height: 80vh;
    max-width: 100%;
    margin: 0;
  }
  
  .consult-box h3 {
    font-size: 20px;
  }
  
  .consult-box p {
    font-size: 14px;
  }
  
  .close-btn {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 15px;
    font-size: 16px;
  }
}

/* ===============================
   SUCCESS POPUP
================================ */
.success-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.success-popup-content {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: successSlideIn 0.4s ease-out;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 60px;
    color: #28a745;
}

.success-popup-content h3 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-popup-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-btn {
    background: linear-gradient(45deg, #cfae70, #b08b4f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 174, 112, 0.4);
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===============================
   FLOATING ACTION BUTTONS
================================ */
.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe57);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57, #25D366);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #ff4757, #ff3838);
}

.call-btn:hover {
    background: linear-gradient(135deg, #ff3838, #ff4757);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 70px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homeverse-footer {
  background: #000;
  color: #cfcfcf;
  padding: 70px 0 20px;
  font-size: 14px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

.tagline {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #bdbdbd;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff2b6a;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: #ff2b6a;
  margin-top: 3px;
}

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #111;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff2b6a;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  margin-top: 30px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  color: #aaa;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .homeverse-footer {
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
}
