@charset "ISO-8859-1";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0d6efd;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-logo {
  max-width: 200px;
  animation: pulse 1.5s infinite ease-in-out;
}

.loading-logo img {
  width: 100%;
  height: auto;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Rest of your existing CSS remains the same */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  transition: var(--transition);
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
  transition: var(--transition);
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-info a i {
  margin-right: 5px;
}

.social-icons a {
  color: var(--white);
  margin-left: 15px;
  font-size: 14px;
  transition: var(--transition);
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Main Header Styles */
.main-header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: auto;
  max-width: 100%;
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.main-nav a.active:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.quote-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}

.quote-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  padding: 5px;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  transition: var(--transition);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  left: 0;
}

/* Drawer Header Styles */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: var(--white);
}

.drawer-header .logo {
  flex: 1;
}

.drawer-header .logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  padding: 5px;
  margin-left: 20px;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-nav {
  padding: 20px;
  flex-grow: 1;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.mobile-nav a.active {
  color: var(--primary-color);
}

.mobile-quote-btn {
  display: block;
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.drawer-footer {
  padding: 20px;
  text-align: center;
  color: white;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

.drawer-contact-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.drawer-contact-info a {
  color: var(--black);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.drawer-contact-info a i {
  margin-right: 8px;
  color: var(--primary-color);
}

.drawer-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.drawer-social-icons a {
  color: var(--primary-color);
  font-size: 18px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Responsive adjustments */
@media (max-width: 480px) {
  .drawer-header {
    padding: 12px 15px;
  }
  
  .drawer-header .logo img {
    height: 35px;
  }
  
  .drawer-close-btn {
    font-size: 20px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .top-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-info a {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* Scrolled State */
body.scrolled .top-header {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}