/**
*	Theme Name: Nexora Theme
*	Theme URI: https://nexoratextile.com
*	Author: Devaxe
*	Author URI: https://devaxe.co
*	Description: Custom theme
*	Version: 1.0
*	Text Domain:  nexdev_theme
**/
:root {
  --primary: #2a5f8a;
  --primary-light: #3a7cb9;
  --secondary: #e67e22;
  --secondary-light: #f39c12;
  --accent: #16a085;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --gray: #7f8c8d;
  --light-gray: #f5f7fa;
  --transition: all 0.3s ease-out;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
}
:root {
  --primary: #2a5f8a;
  --primary-light: #3a7cb9;
  --secondary: #007B7F;
  --secondary-light: #009a9f;
  --dark: #222222;
  --gray: #555555;
  --light-gray: #f5f7fa;
  --transition: all 0.3s ease-out;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  color: var(--dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h3, h4{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}
.logo-menu {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #164861;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-light);
}

.site-logo img {
  width: 150px;
  transition: var(--transition);
}

section {
  padding: 30px 0;
  position: relative;
}
.menu-checkbox{
    display: none;
}
.services-section {
  padding: 30px 20px;
  background-color: #ffffff;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services-title{
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.services-section h2 {
  font-size: 2.5rem;
  color: #164861;
  display: inline-block;
  padding-bottom: .5rem;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.services-tags span {
    width: fit-content;
    color: #000000;
    border-radius: 25px;
    font-size: 18px;
    display: block;
    white-space: nowrap;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    margin: auto;
    transform: scale(1); 
    margin-bottom: 10px;
}
.services-tags span a{
  text-decoration: none;
  color: #000;
} 
.services-tags span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #164861;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.services-tags span:hover {
    color: #164861;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.services-tags span:hover::after {
    width: 100%;
}


.site-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    color: #fff;
    position: relative;
    height: 90vh;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.site-logo img{
    width: 150px;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.header-content {
    position: absolute;
    bottom: 5%;
}

.header-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.header-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.header-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.header-button:hover {
    background-color: #e55c00;
}


@media (max-width: 768px) {
    .header-top {
        margin-bottom: 40px;
    }
    .header-content {
        text-align: center;
        margin: 0 auto;
    }

    .header-title {
        font-size: 2rem;
    }
}

.hero-section {
  background: linear-gradient(135deg, rgb(14 14 14 / 90%) 0%, rgb(29 29 29 / 90%) 100%), url(https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80) no-repeat center center / cover;
  color: white;
  min-height: 100vh;
  align-items: center;
  background-attachment: fixed;
}



.hero-content-box {
  width: 100%;
  position: absolute;
  bottom: 20%;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s ease-out 0.3s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}


.menuToggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menuToggle input {
  display: none;
}

.menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: white;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menuToggle span:first-child {
  transform-origin: 0% 0%;
}

.menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

.menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: fixed;
  width: 300px;
  height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 125px 50px 50px;
  background: #164861;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  right: 0;
  top: 0;
  z-index: 999;
}

.menuToggle input:checked ~ ul {
  transform: translateX(0);
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

#menu li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#menu a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#menu a:hover {
  color: #aad4ff;
}

/* Navigation Bar */
.nav-bar {
  transition: all 0.5s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.about-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(42, 95, 138, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(0, 123, 127, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #164861;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.about-text p {
  margin-bottom: 50px;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
}

.info-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.info-boxes .box {
  flex: 1;
  background-color: white;
  padding: 40px 30px;
  border-radius: 8px;
  min-width: 280px;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  cursor: pointer;
}

.info-boxes .box:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.info-boxes .box:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.info-boxes .box:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.info-boxes .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.info-boxes .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #164861;
  transition: all 0.3s ease;
}

.info-boxes .box:hover::before {
  height: 10px;
  background: var(--secondary);
}

.info-boxes .box i {
  font-size: 2.5rem;
  color: #164861;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.info-boxes .box:hover i {
  transform: scale(1.1);
  color: var(--secondary);
}

.info-boxes .box h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--dark);
}

.info-boxes .box p {
  color: #000;
  font-size: 1rem;
}

.dual-column-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.dual-column-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(42, 95, 138, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.column-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.col {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 40px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform: scale(0.95);
  opacity: 0;
  cursor: pointer;
}

.col:nth-child(1) {
  animation: scaleIn 0.8s ease-out 0.2s forwards;
}

.col:nth-child(2) {
  animation: scaleIn 0.8s ease-out 0.4s forwards;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.col:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.col h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #164861;
  position: relative;
  padding-bottom: 10px;
}

.col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.col:hover h3::after {
  width: 70px;
}

.col p {
  font-size: 1.05rem;
  color: #000;
}

.image-gallery {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.image-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 123, 127, 0.1) 0%, transparent 70%);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
  cursor: pointer;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.image-container:hover {
  transform: translateY(-5px);
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.overlay-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.overlay-content button {
  background: transparent;
  color: white;
  border: none;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.overlay-content button:hover {
  background: #1a5a7a;
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

    .impact-section {
      background-color: white;
      position: relative;
    }

    .impact-section::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: var(--light-gray);
      z-index: 0;
    }

    .impact-row {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .impact-text {
      flex: 1;
      min-width: 300px;
      transform: translateX(-20px);
      opacity: 0;
      animation: slideInLeft 0.8s ease-out 0.3s forwards;
    }

    @keyframes slideInLeft {
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .impact-text h3 {
      font-size: 2rem;
      margin-bottom: 25px;
      color: #164861;
    }

    .impact-text p {
      margin-bottom: 30px;
      font-size: 1.1rem;
      color: #000;
      font-weight: normal;
    }

    /* Slider Styles */
    .impact-slider {
      flex: 1;
      min-width: 300px;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transform: translateX(20px);
      opacity: 0;
      animation: slideInRight 0.8s ease-out 0.3s forwards;
    }

    @keyframes slideInRight {
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .slider-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease;
      height: 400px;
    }

    .slides img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }

    /* Navigation Buttons */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #000;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 18px;
      color: #164861;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
    }
    .prev i, .next i{
      color: #fff;
    }
    .impact-slider:hover .prev,
    .impact-slider:hover .next {
      opacity: 1;
    }

    .prev {
      left: 15px;
    }

    .next {
      right: 15px;
    }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 15px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 10;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: rgba(255, 255, 255, 0.5);
      display: inline-block;
      border-radius: 50%;
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active, .dot:hover {
      background-color: white;
      transform: scale(1.2);
    }

    /* Section 6: Customers */
    .customers-section {
      position: relative;
      overflow: hidden;
    }

    .customers-grid {
      display: flex;
      gap: 20px;
      align-items: center;
      z-index: 1;
      flex-wrap: wrap;
      justify-content: center;
    }

    .customers-grid img {
      width: 20%;
      height: 150px;
      border-radius: 6px;
      background: white;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      cursor: pointer;
    }


    .stories-section {
      padding: 20px 0;
      background-color: #f9f9f9;
    }



    .stories-section .container {
      position: relative;
      z-index: 1;
    }

    .stories-section h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      text-align: center;
      color: #164861;
      position: relative;
    }

    .stories-section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--secondary);
    }

    .story-box {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      border-bottom: 1px solid #333B4A4A;
      cursor: pointer;
    }

    .story-box:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
    .story-box:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
    .story-box:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }

    .story-box img {
      width: 200px;
      height: 150px;
      object-fit: cover;
      border-radius: 6px;
      margin-right: 25px;
      transition: var(--transition);
      
    }

    .story-content {
      flex: 1;
    }

    .story-content span {
      font-size: 16px;
      margin-bottom: 20px;
      color: #000;
      display: block;
    }

    .read-more-btn {
      display: inline-block;
      padding: 7px 40px;
      background-color: transparent;
      color: #000;
      border: 1px solid #000;
      text-decoration: none;
      border-radius: 20px;
      font-size: 14px;
      position: relative;
      overflow: hidden;
    }
    /* Footer */
    .site-footer {
      background-color: var(--dark);
      color: white;
      padding: 15px 0;
    }


    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 1;
    }

    .footer-col img {
      width: 200px;
      margin-bottom: 20px;    }

    .footer-col p, .footer-col ul {
      margin: 0;
      font-size: 15px;
      color: #ccc;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-block;
      position: relative;
    }

    .footer-col ul li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 1px;
      bottom: -2px;
      left: 0;
      background-color: var(--secondary);
      transition: width 0.3s ease;
    }

    .footer-col ul li a:hover {
      color: white;
    }

    .footer-col ul li a:hover::after {
      width: 100%;
    }

    .copyright {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #999;
      font-size: 0.9rem;
      position: relative;
      z-index: 1;
    }

    /* Scroll to Top Button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: #164861;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .scroll-top.active {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      background: var(--secondary);
      transform: translateY(-5px);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      section {
        padding: 70px 0;
      }
      
      .hero-section h1 {
        font-size: 3rem;
      }
      
      .hero-section p {
        font-size: 1.1rem;
      }
      
      .impact-row {
        flex-direction: column;
      }
      
      .impact-slider {
        width: 100%;
      }

      .story-box {
        flex-direction: column;
        text-align: center;
      }

      .story-box img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
      }
      
      .hero-section h1 {
        font-size: 2.5rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .slides {
        height: 350px;
      }

      .menuToggle {
        display: block;
      }

      .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #164861;
        transition: all 0.5s ease;
        z-index: 998;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
      }

      .nav-bar.active {
        right: 0;
      }

      .nav-menu {
        flex-direction: column;
      }

      .nav-menu li {
        margin: 15px 0;
      }

      .nav-menu li a {
        font-size: 1.1rem;
      }

      .logo-menu {
        padding: 20px 0;
      }

      .site-header.scrolled .logo-menu {
        padding: 15px 0;
      }

    }

    @media (max-width: 576px) {
      section {
        padding: 10px 0;
      }
      .customers-grid img{
        width: 45%;
      }
      .hero-section h1 {
        font-size: 2.2rem;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
      }
      
      .info-boxes .box,
      .col {
        min-width: 100%;
      }
      
      .customers-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      }

      .story-box {
        padding: 20px;
      }

      .story-content h3 {
        font-size: 1.3rem;
      }
      .impact-section{
        text-align: center;
      }
      .image-grid{
        padding: 0;
      }
      .services-tags span{
        letter-spacing: 1px;
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
    .customers-grid img{
        width: 60%;
    }
}
a,
a:hover {
    text-decoration: none !important;
}

p {
    margin: 0 0 20px;
}

img {
    max-width: 100%
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
	outline: 0 !important
}

input[type="checkbox"],
input[type="radio"] {
	width: auto !Important
}

.searchform {
	position: relative
}

.searchform input {
	border-radius: 30px;
	border: 1px solid #ccc;
	padding: 14px 20px;
	width: 100%;
}

.searchform button {
	border: 0px;
	background-color: transparent;
	font-size: 24px;
	position: absolute;
	top: 5px;
	right: 10px;
}

.not-found {
	margin: 100px 0;
}

.not-found p {
	margin-bottom: 30px;
}

/* Navbar */
/*.nav-bar {
    float: right;
	width: 67%;
}
*/
.main-navigation {
	clear: both;
	position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
}

.nav-menu li {
	display: inline-block;
    margin: 0 25px 0 0;
	position: relative;
}

.nav-menu li a {
	color: #fff;
	display: block;
	font-size: 14px;
	line-height: 1;
	padding: 0 6px;
    text-transform: capitalize;
	text-decoration: none;
}

/*.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
	background-color: #220e10;
	color: #ffffff;
}*/

.nav-menu .sub-menu,
.nav-menu .children {
	background-color: #e35a28;
	border: 0px;
	border-top: 0;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

ul.sub-menu li {
    margin: 0px
}

ul.sub-menu li a {
    color: #ffffff !important;
    padding: 15px;
    text-align: left;
}

ul.sub-menu li a:hover {
    background: #000;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #ffffff;
	margin: 0;
	width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover,
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
	background-color: #db572f;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #ffffff;
}

.closebtn,
.openmenu,
.menuToggle,
.mobilesubmenu {
	display: none;
}

/*  Alignment  */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Slider */
.slick-list.draggable {
	padding: 0px !important;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.nopd {
    padding: 0 !Important
}

.fw-container-fluid.nopd .fw-row {
    margin: 0;
}

/* Pagination  */
.pagination {
    display: inline-block;
    margin: 30px 0 0;
    width: 100%;
}

.sub-pagenation-div li {
	display: inline-block;
    border-radius: 4px;
    width: auto;
}

.sub-pagenation-div li a {
    border-radius: 4px;
    color: #333333;
    display: block;
    padding: 10px 20px;
}

.sub-pagenation-div li.current a,
.sub-pagenation-div li:hover a {
    background: #394e8c;
    color: #ffffff;
}
.background-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* MAIN CSS  */
.container::after,
.blogdetail::after,
.fw-container::after,
.entry-content::after {
	content: '';
	clear: both;
	display: block;
}

.blogdetail {
	display: block;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

/*  Media Query  */
@media( max-width: 830px )
{
    #menuToggle {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 40px;
        right: 25px;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
        z-index: 9999999;
    }

    #menuToggle input {
        width: 32px !important;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        top: -6px;
    }

    #menuToggle span
    {
      display: flex;
      width: 29px;
      height: 2px;
      margin-bottom: 5px;
      position: relative;
      background: #fff;
      border-radius: 3px;
      z-index: 1;
      transform-origin: 5px 0px;
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  opacity 0.55s ease;
    }

    #menuToggle span:first-child
    {
      transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2)
    {
      transform-origin: 0% 100%;
    }
    #menuToggle input:checked ~ span
    {
      opacity: 1;
      transform: rotate(45deg) translate(-3px, -1px);
      background: #ffffff;
    }
    #menuToggle input:checked ~ span:nth-last-child(3)
    {
      opacity: 0;
      transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2)
    {
      transform: rotate(-45deg) translate(0, -1px);
    }
    ul.nav-menu li ul.sub-menu,
    ul.nav-menu li:hover ul.sub-menu{
        display: none !IMportant
    }
    ul.nav-menu li.open ul.sub-menu,
    ul.nav-menu li.open:hover ul.sub-menu{
        display: block !important
    }
    ul.sub-menu.open-submenu {
        display: block !Important;
        background-color: rgba(72, 72, 72, 0.85) !Important;
        top: 0 !Important
    }
    .mobilesubmenu.open{
        background-color: rgba(72, 72, 72, 0.85) !Important;
    }
    ul.sub-menu{
        display: none !Important;
        position: relative !Important;
        top: -100% !Important;
    }
    .site-logo{
        float: left;
    }
    .mobilesubmenu i {
        position: relative;
        top: 13px;
        right: 18px;
    }
    .nav-bar li {
        display: block;
        margin: 0;
        width: 100%;
        top: 0;
        border-bottom: 1px solid #717171;
        overflow: hidden;
        float: left;
    }
    .mobilesubmenu {
        display: block;
        position: absolute;
        top: 0;
        cursor: pointer;
        color: #ffffff;
        right: 0;
        z-index: 9999;
        border-left: 1px solid #717171;
        padding-left: 36px;
        height: 46px;
    }
    .nav-menu .sub-menu, .nav-menu .children {
        width: 100%;
    }
    ul.sub-menu li {
        display: block;
    }
    ul.sub-menu,
    .open-submenu{
        transition: all 1s;
    }
	.openmenu {
		display: inline-block;
		font-size: 30px;
		cursor: pointer;
		color: #333333;
		float: right;
	}
	.nav-bar.open {
		right: 0;
	}
    .nav-menu li a{
        color: #ffffff;
        float: left;
        font-weight: normal;
        font-size: 16px;
        padding: 15px 0;
    }
    ul.sub-menu li:last-child{
        border: 0px !Important;
    }
    ul.sub-menu li a{
        color: #ffffff !Important;
        font-weight: 600;
    }
    ul.sub-menu li{
        margin: 0px
    }
    ul.sub-menu li:last-child a{
        text-align: left;
        color: #ffffff !Important;
        padding: 15px;
    }
    .nav-menu li:last-child{
        border: 0px !Important;
    }
    .nav-menu li:last-child a,
    .nav-menu .sub-menu, .nav-menu .children{
        left: 0;
        width: 100% !important;
    }
	.nav-bar {
		background-color: #000;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
		padding: 15px;
        padding-top: 60px;
		transition: all 0.3s;
		width: 100%;
        text-align: left;
		z-index: 999;
	}
	.closebtn {
		display: block;
        position: absolute;
        top: -55px;
        font-size: 20px;
        right: 0;
		color: #ffffff;
		cursor: pointer;
		margin-bottom: 20px;
	}
}

@media( max-width: 667px )
{
    img.alignleft,
    img.alignnone,
    img.alignright {
        margin: 0 auto 20px;
        display: block;
        float: none;
    }
}