
/* ============================================================
   ERAL Aluminium Industries — Custom Stylesheet
   Dark Navy + Orange + White Theme
   ============================================================ */

:root {
  --dark-navy: #0B1B3F;
  --navy-mid: #0E2251;
  --navy-light: #162B60;
  --orange: #F97316;
  --orange-dark: #E05E00;
  --orange-light: #FFA350;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --section-gap: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Colors ── */
.text-orange { color: var(--orange) !important; }
.bg-dark-navy { background-color: var(--dark-navy) !important; }
.fw-600 { font-weight: 600; }

/* ── Buttons ── */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  transition: all 0.25s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Navbar ── */
#mainNavbar {
  padding: 0.8rem 0;
  transition: all 0.35s ease;
  background: white; 
  width: 100%;
  z-index:1000;
}
#mainNavbar.scrolled {
  background: #ffffff !important;
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-icon { color: var(--orange); font-size: 1.4rem; line-height: 1; }
.brand-text { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.brand-accent { color: var(--orange); }
.navbar-nav .nav-link {
  color: #0B1B3F !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;             
  letter-spacing: 0.04em;        
  text-transform: uppercase;
  padding: 0.4rem 0.6rem !important; 
  transition: color 0.2s;
  white-space: nowrap;           
}
.navbar-nav .nav-link:hover { color: var(--orange) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11,27,63,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= Dropdown ================= */

.navbar .dropdown-menu{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:8px;
    padding:10px 0;
    margin-top:15px;
    min-width:250px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.navbar .dropdown-item{
    color:#0B1B3F;
    padding:10px 22px;
    font-family:'Oswald', sans-serif;
    font-size:14px;
    transition:0.3s;
}

.navbar .dropdown-item:hover{
    background:var(--orange);
    color:#ffffff;
    padding-left:28px;
}

.navbar .dropdown-toggle::after{
    margin-left:6px;
    vertical-align:middle;
}


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

.navbar-brand { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  text-decoration: none; 
  padding: 0;
}

.logo-img {
  height: 50px;         /* लोगो की हाइट को सीमित किया */
  width: auto;          /* विड्थ अपने आप एडजस्ट होगी */
  object-fit: contain;
}

/* ── Footer ── */
.footer-section { background: #111111;
  
 }

 
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 320px; }
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.footer-contact-list li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
}
.social-link:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


/* ================= Footer Logo ================= */

.footer-logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo-img{
    width:220px;
    height:auto;
    object-fit:contain;
    display:block;
}


.footer-company-name{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -10px;
}

.footer-company-name span{
    color: #f6f3f0;
    text-transform: none;
}

.footer-company-name:hover{
    color: #fff;
}

.footer-tagline{
    margin-top: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-style: italic;
}


/* ── Scroll Animations ── */
.fade-section { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-experience-badge { bottom: 10px; right: 10px; }
  .gallery-img { height: 320px; }
  
}
@media (max-width: 767px) {
  :root { --section-gap: 70px; }
  .hero-title { font-size: 2.2rem; }
  .about-img { height: 280px; }
  .gallery-img { height: 240px; }
  .stat-number { font-size: 2rem; }
  .stat-item::after { display: none; }
}


/* ==========================================================
   GET QUOTE MODAL
========================================================== */

.quote-modal{
    background:#ffffff;
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

/* Header */

.quote-modal .modal-header{
    background:#0B1B3F;
    padding:22px 30px;
    border:none;
}

.quote-modal .modal-title{
    color:#fff;
    font-family:'Oswald',sans-serif;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
}

/* Close Button */

.quote-modal .btn-close{
    filter:invert(1);
    opacity:1;
    transition:.3s;
}

.quote-modal .btn-close:hover{
    transform:rotate(90deg);
}

/* Body */

.quote-modal .modal-body{
    padding:35px;
}

/* Labels */

.quote-modal .form-label{
    font-family:'Oswald',sans-serif;
    font-size:15px;
    color:#0B1B3F;
    margin-bottom:8px;
    letter-spacing:.5px;
}

/* Inputs */

.quote-modal .form-control,
.quote-modal .form-select{

    height:52px;
    border-radius:10px;
    border:1px solid #dcdcdc;
    box-shadow:none;
    font-size:15px;
    padding:12px 16px;
    transition:.3s;
}

.quote-modal textarea.form-control{
    height:140px;
    resize:none;
}

/* Focus */

.quote-modal .form-control:focus,
.quote-modal .form-select:focus{

    border-color:#F97316;
    box-shadow:0 0 0 .18rem rgba(249,115,22,.18);

}

/* File Upload */

.quote-modal input[type=file]{

    padding:12px;

}

/* Button */

.quote-modal .btn-orange{

    height:54px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    letter-spacing:1px;
    transition:.35s;

}

.quote-modal .btn-orange:hover{

    transform:translateY(-2px);

}

/* Modal Animation */

.modal.fade .modal-dialog{

    transform:translateY(-60px);
    transition:.35s;

}

.modal.show .modal-dialog{

    transform:translateY(0);

}

/* Responsive */

@media(max-width:768px){

.quote-modal .modal-body{

    padding:25px;

}

.quote-modal .modal-title{

    font-size:24px;

}

}


/* ==========================================================
   GET QUOTE MODAL
========================================================== */

.quote-modal{
    background:#ffffff;
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

/* Header */

.quote-modal .modal-header{
    background:#0B1B3F;
    padding:22px 30px;
    border:none;
}

.quote-modal .modal-title{
    color:#fff;
    font-family:'Oswald',sans-serif;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
}

/* Close Button */

.quote-modal .btn-close{
    filter:invert(1);
    opacity:1;
    transition:.3s;
}

.quote-modal .btn-close:hover{
    transform:rotate(90deg);
}

/* Body */

.quote-modal .modal-body{
    padding:35px;
}

/* Labels */

.quote-modal .form-label{
    font-family:'Oswald',sans-serif;
    font-size:15px;
    color:#0B1B3F;
    margin-bottom:8px;
    letter-spacing:.5px;
}

/* Inputs */

.quote-modal .form-control,
.quote-modal .form-select{

    height:52px;
    border-radius:10px;
    border:1px solid #dcdcdc;
    box-shadow:none;
    font-size:15px;
    padding:12px 16px;
    transition:.3s;
}

.quote-modal textarea.form-control{
    height:140px;
    resize:none;
}

/* Focus */

.quote-modal .form-control:focus,
.quote-modal .form-select:focus{

    border-color:#F97316;
    box-shadow:0 0 0 .18rem rgba(249,115,22,.18);

}

/* File Upload */

.quote-modal input[type=file]{

    padding:12px;

}

/* Button */

.quote-modal .btn-orange{

    height:54px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    letter-spacing:1px;
    transition:.35s;

}

.quote-modal .btn-orange:hover{

    transform:translateY(-2px);

}

/* Modal Animation */

.modal.fade .modal-dialog{

    transform:translateY(-60px);
    transition:.35s;

}

.modal.show .modal-dialog{

    transform:translateY(0);

}

/* Responsive */

@media(max-width:768px){

.quote-modal .modal-body{

    padding:25px;

}

.quote-modal .modal-title{

    font-size:24px;

}

}

/* ===================== FLOATING CONTACT BUTTONS ===================== */
.floating-contact-buttons {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.whatsapp-btn {
  background-color: #25D366;
  animation: pulse-whatsapp 2s infinite;
}

.call-btn {
  background-color: #FF6B00; /* aapke website ka orange color */
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile responsive */
@media (max-width: 576px) {
  .floating-contact-buttons {
    bottom: 15px;
    right: 15px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
