:root {
     /* Font Families */
    --font-primary: 'Poppins', Arial, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Navbar Font Sizes */
    --nav-font-size: 16px;
    --nav-dropdown-font-size: 15px;

    /* Body & Text */
    --body-font-size: 15px;
    --body-line-height: 1.6;

    /* Headings */
    --h1-size: 36px;
    --h2-size: 30px;
    --h3-size: 24px;
    --h4-size: 20px;
    --h5-size: 18px;
    --h6-size: 16px;

    /* Letter Spacing */
    --nav-letter-spacing: 0.3px;
    --heading-letter-spacing: 0.2px;

    /* Colors */
    --color-primary: #ff0000;
    --color-secondary: #ffcc4d;
    --color-text: #222222;
    --color-muted: #777777;

    /* Spacing */
    --nav-link-padding-x: 14px;
    --nav-link-padding-y: 10px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
}

@media (max-width: 991.98px) {
    :root {
        --nav-font-size: 15px;
        --nav-dropdown-font-size: 14px;

        --body-font-size: 14px;

        --h1-size: 30px;
        --h2-size: 26px;
        --h3-size: 22px;
        --h4-size: 19px;
    }
}


@media (max-width: 575.98px) {
    :root {
        --nav-font-size: 14px;
        --nav-dropdown-font-size: 13px;

        --body-font-size: 13.5px;

        --h1-size: 26px;
        --h2-size: 22px;
        --h3-size: 20px;
        --h4-size: 18px;
    }
}

* {
    box-sizing: border-box;
    outline: none!important;
    box-shadow: none !important;
}

body {
    font-family: var(--font-primary);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--color-text);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader .ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-top: 5px solid #dc3545;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader .ring:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
    border-top: 5px solid #ffffff;
    animation-duration: 2s;
}

.loader .ring:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
    border-top: 5px solid #dc3545;
    animation-duration: 1s;
}

.loader span {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -35px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hide content initially */
#postloader {
    opacity: 0;
    transition: opacity 0.6s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.top-info-bar {
  background: linear-gradient(90deg, #f5c542, #f2b705);
  padding: 8px 0;
  font-size: 14px;
  color: #1b1b1b;
}

.top-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact span {
  margin-right: 20px;
  font-weight: 500;
}

.top-contact i {
  margin-right: 6px;
}

.top-certification {
  font-weight: 600;
  white-space: nowrap;
}

.top-certification i {
  margin-right: 6px;
}

.top-social a {
  color: #1b1b1b;
  margin-left: 12px;
  transition: 0.3s;
}

.top-social a:hover {
  color: #c40000;
  transform: translateY(-2px);
}
.main-header .show{
     z-index: 11;
 }

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-info-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-contact span {
    display: block;
    margin-right: 0;
  }
}



.top-bar {
    background: var(--color-secondary);
}


.main-header {
    background: var(--color-primary);
    height: 80px;
}

.logo {
    height: 60px;
    line-height: 80px;
}
.main-header .nav-link {
    color: #fff !important;
    font-weight: 600;
    line-height: 80px;
    padding: 0 15px!important;
    font-size: var(--nav-font-size);
}

.main-header .show {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

.social-icons a {
    color: #000;
    margin-left: 10px;
}
.dropdown-menu {
    background: var(--color-secondary);
    border: 1px solid var(--color-muted);
    border-radius: 0;
    padding: 0;

}
.services .dropdown-item {
    color: #000;
    font-size: var(--nav-dropdown-font-size);
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-bottom: 1px solid var(--color-muted);
}

.services .dropdown-item:hover {
    background: var(--color-primary);
    color: #fff;
}


/* Breadcrumb Section */
.breadcrumb-section {
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Breadcrumb */
.branded-breadcrumb {
  background: transparent;
  padding: 14px 0;
  font-size: 14px;
}

/* Breadcrumb Links */
.branded-breadcrumb .breadcrumb-item a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.branded-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-secondary); /* yellow */
}

/* Active Breadcrumb */
.branded-breadcrumb .breadcrumb-item.active {
  color: var(--color-secondary);
  font-weight: var(--font-weight-medium);
}

/* Separator Color */
.branded-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* Mobile Spacing */
@media (max-width: 575.98px) {
  .branded-breadcrumb {
    font-size: 13px;
    padding: 10px 0;
  }
}



/* Footer base */
  .footer-dark {
    background: #000;
    color: #fff;
    border-top: 2px solid #1a1a1a;
  }

  /* Titles with red accent bar */
  .footer-title {
    position: relative;
    padding-left: 18px;
    letter-spacing: 0.2px;
  }
  .footer-accent {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 3px;
    height: 18px;
    background: #ff0000;
    border-radius: 2px;
  }

  /* Social buttons */
  .social-btn {
    width: 46px;
    height: 46px;
    border: 1px solid #333;
    color: #fff;
    border-radius: 2px;
    transition: 0.25s ease;
  }
  .social-btn:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
  }

  /* Blogger tile */
  .blogger-box {
    width: 64px;
    height: 64px;
    background: #f57c00;
    color: #fff;
    font-size: 22px;
    border-radius: 2px;
  }

  /* Links */
  .footer-link {
    color: #cfcfcf;
    transition: 0.2s ease;
  }
  .footer-link:hover {
    color: #ff0000;
  }

  /* Contact icon boxes */
  .contact-icon {
    width: 46px;
    height: 46px;
    border: 1px solid #333;
    color: #ff0000;
    border-radius: 2px;
    flex: 0 0 auto;
  }

  /* Bottom bar */
  .footer-bottom {
    background: #111;
    border-top: 1px solid #222;
  }


  /* Sticky CTA Wrapper */
.sticky-cta-wrapper {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Common Button Styles */
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* WhatsApp Button (Top) */
.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Call Button (Bottom) */
.call-btn {
  background: var(--color-primary); /* Red */
}

.call-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* Icons */
.sticky-cta-btn i {
  font-size: 16px;
}

/* Mobile Optimization */
@media (max-width: 575.98px) {
  .sticky-cta-btn span {
    display: none; /* show only icon on very small screens */
  }

  .sticky-cta-btn {
    padding: 12px;
    border-radius: 50%;
  }

  .sticky-cta-wrapper {
    left: 10px;
    bottom: 10px;
  }
  .main-header .nav-link{
	  line-height: 55px;
  }
  #google_translate_element{
	  display: none;
  }
}

.fa-brands {
    font-size: 12px;
    border: 1px solid #f3f3f3;
    border-radius: 13px;
    padding: 7px;
    color: #FFF;
}

.fa-brands:hover{
	background: var(--color-primary);
	transition: 1s all ease-in-out;
}
