@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* styles.css */
:root {
  --primary: hsl(24, 100%, 50%);
  --background: hsl(0, 0%, 100%);
  --text: hsl(222.2, 84%, 4.9%);
  --header-height: 5rem;
  --transition-normal: 0.3s ease;
  --blur-background: rgba(255, 255, 255, 0.8);
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Improve default styles */
html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Lato", system-ui, sans-serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Abril Fatface', sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
  height: 100%;
}



/* Mini Navbar Styles */
.mini-navbar {
  background-color: #272424;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.social-media {
  display: flex;
  gap: 3rem;
}

.social-media a {
  color: #fff;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.275);
  padding: 0.5rem;
}

.develop-in {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.develop-in span {
  color: #fff;
  font-weight: 700;
}

/* Header Styles */
.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 40px;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  cursor: pointer;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a.active {
  color: #ff6600;
}

.nav-links li a:hover {
  color: #ff6600;
}

.get-quotation {
  background: #ff6600;
  color: white !important;
  padding: 0.8rem 1.5rem;
  /* border-radius: 4px; */
  transition: background 0.3s ease;
}

.get-quotation:hover {
  background: #e65c00;
}

.input-error {
  color: #c00;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}


.quotation-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.popup-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.5s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.popup-content.show {
  transform: scale(1);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

#quotationForm input,
#quotationForm button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
}

#quotationForm button {
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: background 0.3s;
}

#quotationForm button:hover {
  background: #e65c00;
}

.tick-success {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.tick-success svg {
  width: 100px;
  height: 100px;
  stroke: #28a745;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: draw 1s ease forwards;
}

@keyframes draw {
  from {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
  }
  to {
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
  }
}


/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: #333;
}

/* Mobile Responsive */
/* Responsive Styles */
@media (max-width: 1200px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 140px;
    gap: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    height: calc(100vh - 140px);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 16px 0;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background-color: #f8f8f8;
    margin: 10px auto;
    width: 90%;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 140px;
    gap: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 16px 0;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* Animations */
@keyframes fadeInLogo {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles */
@media print {

  .header,
  .mobile-menu,
  .floating-menu {
    display: none;
  }
}


.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-col {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.company-desc {
  color: #999;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff6b00;
  transform: translateY(-3px);
}

.footer-col h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ff6b00;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #ff6b00;
  transform: translateX(5px);
}

.footer-bottom {
  background: #111;
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #666;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .site-footer {
    padding-top: 2rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}