/* ==========================================================
   VAARADHI SOLAR – Main Stylesheet
   Colors: Navy #0d1f5e | Orange #f7941d | White #ffffff
   ========================================================== */

:root {
  --navy:   #0d1f5e;
  --navy2:  #162a7a;
  --orange: #f7941d;
  --white:  #ffffff;
  --light:  #f4f7ff;
  --text:   #333333;
  --muted:  #6c757d;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,31,94,.10);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
}

/* ── Utilities ──────────────────────────────────────────── */
.text-orange   { color: var(--orange) !important; }
.text-navy     { color: var(--navy)   !important; }
.bg-navy       { background: var(--navy) !important; }
.bg-light-blue { background: var(--light); }
.section-pad   { padding: 72px 0; }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: #cdd5f5;
  font-size: 12.5px;
  padding: 6px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: #cdd5f5; text-decoration: none; margin-right: 14px; transition: color .2s; }
.top-bar a:hover { color: var(--orange); }
.top-bar i { margin-right: 5px; }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar-right a { font-size: 13px; margin-right: 0; }

/* ── Navbar ─────────────────────────────────────────────── */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(13,31,94,.10);
  padding: 10px 0;
  z-index: 1000;
}
.logo-wrap     { display: flex; align-items: center; gap: 10px; }
.logo-icon     { background: var(--orange); color: #fff; border-radius: 8px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.logo-name     { display: block; font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-sub      { display: block; font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 2px; }
.logo-text     { line-height: 1.2; }
.nav-link      { font-weight: 500; font-size: 14px; color: var(--navy) !important; padding: 8px 14px !important; border-radius: 6px; transition: background .2s; }
.nav-link:hover, .nav-link.active { background: var(--light); color: var(--orange) !important; }
.navbar-nav .dropdown-menu { border: none; box-shadow: var(--shadow); border-radius: var(--radius); }
.dropdown-item { font-size: 13.5px; font-weight: 500; color: var(--navy); padding: 9px 18px; }
.dropdown-item:hover { background: var(--light); color: var(--orange); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-survey {
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; font-weight: 600; font-size: 14px;
  padding: 10px 22px; transition: all .2s;
}
.btn-survey:hover { background: #e07e0c; color: #fff; transform: translateY(-1px); }
.btn-whatsapp {
  background: #25d366; color: #fff; border: none;
  border-radius: 8px; font-weight: 600; font-size: 14px;
  padding: 10px 22px; transition: all .2s;
}
.btn-whatsapp:hover { background: #1db954; color: #fff; transform: translateY(-1px); }
.btn-call {
  background: var(--navy); color: #fff; border: none;
  border-radius: 8px; font-weight: 600; font-size: 14px;
  padding: 10px 22px; transition: all .2s;
}
.btn-call:hover { background: var(--navy2); color: #fff; transform: translateY(-1px); }
.btn-primary-custom {
  background: var(--navy); color: #fff; border: none;
  border-radius: 8px; font-weight: 600; padding: 10px 22px; transition: all .2s;
}
.btn-primary-custom:hover { background: var(--navy2); color: #fff; }
.btn-outline-navy {
  border: 2px solid var(--navy); color: var(--navy); background: transparent;
  border-radius: 8px; font-weight: 600; padding: 9px 22px; transition: all .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── Hero ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d1f5e 0%, #162a7a 60%, #1e3a9f 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><circle cx="600" cy="80" r="200" fill="%23f7941d" opacity=".06"/><circle cx="100" cy="400" r="150" fill="%23f7941d" opacity=".04"/></svg>') no-repeat center/cover;
}
.hero-overlay { display: none; }
.min-vh-hero  { min-height: 80vh; padding: 80px 0 40px; }
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-sub  { font-size: 1.1rem; font-weight: 600; color: #cdd5f5; letter-spacing: 1px; margin-bottom: 18px; }
.hero-bullets { list-style: none; padding: 0; margin-bottom: 28px; }
.hero-bullets li { color: #d0d8f5; font-size: 14.5px; margin-bottom: 7px; }
.hero-bullets i  { margin-right: 8px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-location { color: #aab5d4; font-size: 13px; }

.hero-badge-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: #fff;
}
.hero-badge-icon { font-size: 3rem; color: var(--orange); margin-bottom: 10px; }
.badge-save  { display: block; font-size: 13px; opacity: .8; }
.badge-pct   { display: block; font-size: 5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.badge-label { display: block; font-size: 12px; opacity: .8; }

/* ── Feature Strip ──────────────────────────────────────── */
.feature-strip {
  background: #fff;
  box-shadow: 0 6px 30px rgba(13,31,94,.12);
  position: relative;
  z-index: 2;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 14px;
  border-right: 1px solid #e8edff;
}
.feature-item:last-child { border-right: none; }
.fi-icon {
  font-size: 28px; color: var(--navy);
  background: var(--light); border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-orange .fi-icon { background: #fff3e0; color: var(--orange); }
.fi-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.fi-text span   { font-size: 12px; color: var(--muted); }

/* ── Section Headers ────────────────────────────────────── */
.section-header { text-align: center; }
.section-title  { font-size: clamp(1.3rem,3vw,2rem); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.section-underline {
  width: 60px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 0 auto;
}
.section-header.text-start .section-underline { margin: 0; }

/* ── Service Cards ──────────────────────────────────────── */
.service-card {
  border: none; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: #fff; height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,94,.18); }
.sc-img img { width: 100%; height: 200px; object-fit: cover; }
.sc-body { padding: 22px 24px; }
.sc-icon { background: var(--light); color: var(--navy); width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.sc-icon-orange { background: #fff3e0; color: var(--orange); }
.sc-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.sc-list { list-style: none; padding: 0; margin-bottom: 14px; }
.sc-list li { font-size: 13.5px; color: #555; margin-bottom: 6px; }
.sc-list i   { margin-right: 6px; }

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 40px 0; }
.stat-item { color: #fff; }
.stat-item i  { font-size: 2rem; color: var(--orange); margin-bottom: 10px; }
.stat-item h3 { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.stat-item p  { font-size: 13px; color: #aab5d4; margin: 0; }

/* ── About / Why Section ────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--orange); color: #fff; border-radius: 12px;
  padding: 14px 20px; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(247,148,29,.4);
}
.why-list   { display: flex; flex-direction: column; gap: 10px; }
.why-item   { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; }
.why-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.founder-card { background: var(--light); border-radius: 12px; padding: 16px; border-left: 4px solid var(--orange); }
.fc-inner { display: flex; align-items: flex-start; gap: 14px; }
.fc-icon { background: var(--navy); color: var(--orange); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.value-card { background: #fff; border-radius: 14px; padding: 28px 24px; text-align: center; box-shadow: var(--shadow); height: 100%; }

/* ── Gallery Cards ──────────────────────────────────────── */
.gallery-card {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow);
}
.gallery-card img { width: 100%; height: 180px; object-fit: cover; transition: transform .3s; display: block; }
.gallery-card:hover img { transform: scale(1.06); }
.gc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,31,94,.85));
  color: #fff; font-size: 12.5px; font-weight: 600;
  padding: 20px 12px 10px; line-height: 1.3;
}
.gc-label small { font-weight: 400; opacity: .85; }
.gc-overlay {
  position: absolute; top: 8px; right: 8px;
  background: rgba(247,148,29,.85); color: #fff;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; opacity: 0; transition: opacity .2s;
}
.gallery-card:hover .gc-overlay { opacity: 1; }

/* ── Gallery Filters ────────────────────────────────────── */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
  background: #fff; border: 2px solid #e0e5f5; color: var(--navy);
  border-radius: 30px; padding: 8px 22px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Review Cards ───────────────────────────────────────── */
.review-card {
  background: #fff; border-radius: 14px; padding: 24px; box-shadow: var(--shadow);
  position: relative; height: 100%;
}
.stars { font-size: 20px; color: var(--orange); margin-bottom: 12px; }
.review-card p { font-size: 14px; color: #555; font-style: italic; }
.reviewer { font-size: 13px; font-weight: 700; color: var(--navy); }
.review-quote { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: #e8edff; }

/* ── CTA Section ────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 70px 0; }
.cta-section h2 { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-section p  { color: #aab5d4; font-size: 15px; margin-bottom: 28px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 24px; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.cta-badges span { color: #cdd5f5; font-size: 13px; }
.cta-badges i    { color: var(--orange); margin-right: 5px; }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162a7a 100%);
  padding: 60px 0 50px;
  position: relative;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><circle cx="700" cy="0" r="120" fill="%23f7941d" opacity=".07"/></svg>') no-repeat right top;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.breadcrumb { background: transparent; }
.breadcrumb-item a { color: #aab5d4; text-decoration: none; font-size: 13px; }
.breadcrumb-item.active { color: var(--orange); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: #aab5d4; }

/* ── Form Card ──────────────────────────────────────────── */
.form-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow);
}
.form-card-header { text-align: center; margin-bottom: 28px; }
.form-card-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid #dde3f5; border-radius: 8px;
  font-size: 14px; padding: 10px 14px;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,.15); }
.form-label { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }

/* ── OTP Inputs ─────────────────────────────────────────── */
.otp-inputs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.otp-digit {
  width: 46px; height: 50px; text-align: center; font-size: 1.3rem; font-weight: 700;
  border: 2px solid #dde3f5; border-radius: 10px; outline: none; transition: border .2s;
}
.otp-digit:focus { border-color: var(--orange); }

/* ── Info Sidebar ───────────────────────────────────────── */
.info-sidebar {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow); position: sticky; top: 90px;
}
.info-sidebar h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sidebar-list { list-style: none; padding: 0; margin-bottom: 0; }
.sidebar-list li { font-size: 13.5px; color: #555; margin-bottom: 8px; }
.sidebar-list i  { color: var(--orange); margin-right: 7px; }

/* ── Project Tracking ───────────────────────────────────── */
.project-track-card {
  background: #fff; border-radius: 14px; padding: 22px; box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.ptc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.ptc-id { font-size: 16px; font-weight: 800; color: var(--navy); margin-right: 8px; }
.ptc-service { background: var(--light); color: var(--navy); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.pcs-icon i { color: var(--orange); margin-right: 10px; font-size: 1.4rem; }
.pcs-value.text-orange { color: var(--orange) !important; }
.pcs-value.text-success { color: #198754 !important; }

.ptc-progress-wrap { position: relative; }
.ptc-progress-bar { background: #e8edff; border-radius: 10px; height: 8px; margin-bottom: 8px; }
.ptc-progress-fill { background: var(--orange); height: 8px; border-radius: 10px; transition: width .5s; }
.ptc-steps { display: flex; justify-content: space-between; }
.ptc-step-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: #dde3f5; border: 2px solid #c5cfe0;
  transition: all .2s; cursor: default; position: relative;
}
.ptc-step-dot.done   { background: var(--orange); border-color: var(--orange); }
.ptc-step-dot.active { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(247,148,29,.25); transform: scale(1.3); }
.ptc-step-dot[title]:hover::after {
  content: attr(title); position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-size: 11px; white-space: nowrap;
  padding: 4px 8px; border-radius: 4px; pointer-events: none; z-index: 10;
}

/* ── Status Guide Sidebar ───────────────────────────────── */
.status-guide { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.sg-item { display: flex; align-items: center; gap: 10px; }
.sg-num { background: var(--navy); color: #fff; width: 24px; height: 24px; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sg-label { font-size: 13px; color: #555; }

/* ── Success Box ────────────────────────────────────────── */
.project-id-box {
  background: var(--light); border-radius: 12px; padding: 20px;
  border: 2px dashed var(--orange);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { background: var(--light); color: var(--navy); width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-item strong { font-size: 13.5px; color: var(--navy); display: block; margin-bottom: 2px; }
.ci-item a { color: var(--navy); text-decoration: none; }
.ci-item a:hover { color: var(--orange); }
.map-embed { height: 220px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Services page ──────────────────────────────────────── */
.service-detail-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.svc-point { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #444; margin-bottom: 4px; }
.svc-point i { flex-shrink: 0; margin-top: 2px; }
.why-card { background: #fff; border-radius: 14px; padding: 24px; text-align: center; box-shadow: var(--shadow); height: 100%; transition: transform .2s; }
.why-card:hover { transform: translateY(-3px); }
.wc-icon { background: var(--light); width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--orange); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #aab5d4; padding: 60px 0 0; }
.footer-brand .logo-name, .footer-brand .logo-sub { color: #fff; }
.text-muted-light { color: #8899cc; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .2s;
  text-decoration: none;
}
.social-links a:hover { background: var(--orange); }
.footer-heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links   { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #8899cc; text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #8899cc; text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { background: rgba(0,0,0,.2); margin-top: 40px; padding: 16px 0; font-size: 13px; color: #6677aa; }

/* ── WhatsApp Float Button ──────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999; text-decoration: none; transition: transform .2s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.75); }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section  { min-height: auto; }
  .min-vh-hero   { padding: 60px 0 30px; }
  .section-pad   { padding: 50px 0; }
  .feature-item  { border-right: none; border-bottom: 1px solid #e8edff; }
  .feature-item:last-child { border-bottom: none; }
  .about-badge   { bottom: -10px; right: 0; font-size: 11px; padding: 10px 14px; }
  .form-card     { padding: 22px 16px; }
  .otp-digit     { width: 38px; height: 44px; font-size: 1.1rem; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .cta-btns      { flex-direction: column; align-items: center; }
}


/* ==========================================
   HOME PAGE IMAGE SLIDER
========================================== */

.hero-slider-section{
    width:100%;
    margin:0;
    padding:0;
    background:#fff;
}

.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* Slides */

.hero-slider .slide{
    display:none;
    width:100%;
}

.hero-slider .slide.active{
    display:block;
}

/* Images */

.hero-slider .slide img{
    width:100%;
    height:auto;
    display:block;
    vertical-align:middle;
}

/* Navigation */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.90);
    color:#333;
    cursor:pointer;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    transition:.3s;
}

.slider-btn:hover{
    background:#f7941d;
    color:#fff;
}

.slider-btn.prev{
    left:15px;
}

.slider-btn.next{
    right:15px;
}

.slider-btn i{
    font-size:14px;
}

/* Tablet */

@media(max-width:991px){

    .slider-btn{
        width:36px;
        height:36px;
    }

}

/* Mobile */

@media(max-width:576px){

    .slider-btn{
        width:30px;
        height:30px;
    }

    .slider-btn i{
        font-size:12px;
    }

}

/* FORCE OVERRIDE OLD SLIDER */

.hero-slider{
    height:auto !important;
    max-height:none !important;
    min-height:auto !important;
    overflow:visible !important;
}

.hero-slider .slide{
    position:static !important;
    inset:auto !important;
    opacity:1 !important;
}

.hero-slider .slide:not(.active){
    display:none !important;
}

.hero-slider .slide img{
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    max-height:none !important;
    display:block !important;
    object-fit:unset !important;
}

/* ===== Navbar Logo ===== */

.navbar-brand{
    padding:0 !important;
    margin-right:20px;
    flex-shrink:0;
}

.site-logo{
    display:block;
    width:220px !important;
    height:auto !important;
    max-width:220px !important;
}

/* Laptop */

@media (max-width:1200px){
    .site-logo{
        width:190px !important;
        max-width:190px !important;
    }
}

/* Tablet */

@media (max-width:991px){
    .site-logo{
        width:170px !important;
        max-width:170px !important;
    }
}

/* Mobile */

@media (max-width:576px){
    .site-logo{
        width:140px !important;
        max-width:140px !important;
    }
}

/* ==========================
   PROJECT GALLERY
========================== */

.project-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.project-card:hover{
    transform:translateY(-5px);
}

/* Image Container */

.project-card a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:450px;
    background:#f8f9fa;
    padding:10px;
}

/* Images */

.project-img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    display:block;
    object-fit:contain;
}

/* Content */

.project-content{
    padding:18px;
    text-align:center;
    margin-top:auto;
}

.project-content h5{
    font-size:18px;
    font-weight:600;
    color:#0d1f5e;
    margin-bottom:8px;
    line-height:1.4;
}

.project-content span{
    color:#666;
    font-size:14px;
}

.project-content i{
    color:#f7941d;
    margin-right:5px;
}

/* Tablet */

@media(max-width:991px){

    .project-card a{
        height:400px;
    }

}

/* Mobile */

@media(max-width:576px){

    .project-card a{
        height:320px;
    }

    .project-content h5{
        font-size:16px;
    }

}


.call-float{
    position:fixed;
    right:20px;
    bottom:90px;
    width:60px;
    height:60px;
    background:#0d6efd;
    color:#ffffff !important;
    border-radius:50%;
    z-index:99999;

    display:flex !important;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:bold;
    text-decoration:none !important;
    line-height:1;
}

.call-float:hover{
    color:#ffffff !important;
}