@media (max-width: 767px) {
    .hero-slider {
        width: 100%;
        height: auto;
        background: #37517e;
        width: 100%;
        background: url(../img/mobile-bg.jpg) top center;
        background-repeat: repeat;
        background-size: auto;
        background-size: 100%;
        position: relative;
        background-repeat: no-repeat;
        min-height: auto;
    }
}@media (max-width: 767px) {
    .hero-slider {
        width: 100%;
        height: auto;
        background: #37517e;
        width: 100%;
        background: url(../img/mobile-bg.jpg) top center;
        background-repeat: repeat;
        background-size: auto;
        background-size: 100%;
        position: relative;
        background-repeat: no-repeat;
        min-height: auto;
    }
}@media (max-width: 767px) {
    .hero-slider {
        width: 100%;
        height: auto;
        background: #37517e;
        width: 100%;
        background: url(../img/mobile-bg.jpg) top center;
        background-repeat: repeat;
        background-size: auto;
        background-size: 100%;
        position: relative;
        background-repeat: no-repeat;
        min-height: auto;
    }
}@charset "utf-8";
/* CSS Document */
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  margin: 40px 0;
}
.section-title h2 {
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 3px solid #d32f2f;
  display: inline-block;
  padding-bottom: 5px;
}
.section-title span {
  color: #d32f2f;
}



/* Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-bar {
  background: #d32f2f;
  color: #fff;
  padding: 5px 0;
  font-size: 0.8rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d32f2f;
}
.nav-links {
  list-style: none;
  display: flex;
	margin-right: 420px;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #d32f2f;
}
/* Multi-level Dropdown */
.submenu, .submenu-inner {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  width: 377px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
	line-height: 12px;
}

.table, th, td {
  border: 1px solid;
}
.submenu-inner {
  top: 0;
  left: 100%;
	width: 435px;
}
.nav-links li:hover > .submenu, .dropdown-inner:hover > .submenu-inner {
  display: block;
}
/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
}
.overlay {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}
/* Grid Layouts */
.product-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
margin-top: 20px;
}
.product-card img {
  max-width: 100%;
  height: auto;
}
/* Client Logo Slider (Infinite Loop) */
.clients {
  background: #eee;
  padding: 30px 0;
  overflow: hidden;
}
.client-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 20s linear infinite;
	gap: 20px;
}
.client-logo {
  width: 200px;
  text-align: center;
  font-weight: bold;
  color: #777;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-grid {
    display: flex;
    flex-direction: column; /* Mobile first */
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content {
    text-align: left;
}

.sub-title {
    color: #3498db;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 37px;
    margin: 15px 0;
    color: #2c3e50;
}

.highlight {
    color: #3498db;
}

.about-content p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-button {
    padding: 12px 30px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.hidden-content {
    display: none;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}


.bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ltn__breadcrumb-area {
    background-color: var(--section-bg-1);
    margin-bottom: 70px;
    padding-top: 110px;
    padding-bottom: 110px;
}

.ltn__breadcrumb-list ul {
    margin: 0;
    padding: 0;
}

.ltn__breadcrumb-list ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    font-weight: 700;
}

.fa, .fas {
    font-weight: 900;
}

.ltn__breadcrumb-list ul li:after

 {
    position: absolute;
    content: "\f054";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 10px;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.service-single .service-sidebar {
    margin-right: 20px;
}

.service-catergory {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f8f8f8;
    padding: 30px 30px;
}

.service-catergory li.active {
    background: #00A9E1;
}

.service-catergory li {
    list-style: none;
    position: relative;
    background: #fff;
    padding: 10px 0;
    margin-bottom: 10px;
}

ul li {
   
    margin-left: 12px;
}

.service-catergory li.active a {
    color: #fff;
}

.service-catergory li a {
    display: block;
    font-size: 14px;
    color: #848484;
    letter-spacing: 1px;
    line-height: 30px;
    font-weight: 700;
    padding-left: 20px;
    transition: all .5s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.service-catergory span {
    margin-right: 8px;
    font-size: 12px;
}

.fa
 {
    font: 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-catergory li.active a {
    color: #fff;
}

.service-catergory {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f8f8f8;
    padding: 30px 30px;
}

.service-catergory li.active {
    background: #d32f2f;
}



/* Breadcrumb Banner */
    .breadcrumb-banner{
      position:relative;
      width:100%;
      height:350px;
      background:url( "../img/about/14.jpg")
      center/cover no-repeat;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }

    /* Dark Overlay */
    .breadcrumb-banner::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:rgba(0,0,0,0.55);
    }

    /* Content */
    .breadcrumb-content{
      position:relative;
      text-align:center;
      color:#fff;
      z-index:2;
      animation:fadeUp 1s ease;
    }

    .breadcrumb-content h1{
      font-size:48px;
      margin-bottom:15px;
      letter-spacing:1px;
    }

    .breadcrumb{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .breadcrumb a{
      color:#fff;
      text-decoration:none;
      transition:0.3s;
    }

    .breadcrumb a:hover{
      color:#ffd700;
    }

    .breadcrumb span{
      color:#ddd;
    }





.gallery-section{
    padding:60px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

h1{
    text-align:center;
    margin-bottom:40px;
    color:#333;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.contact-section{
    padding:80px 20px;
}

.contact-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;
    overflow:hidden;
}

.contact-info{
    padding:60px;
    color:#fff;
}

.contact-info h2{
    font-size:45px;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    margin-bottom:35px;
    color:#ddd;
}

.info-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
    font-size:18px;
}

.info-item i{
    width:50px;
    height:50px;
    background:#2563eb;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
}

.social-icons{
    margin-top:40px;
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.15);
    color:#fff;

    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#2563eb;
    transform:translateY(-5px);
}

.contact-form{
    background:#fff;
    padding:60px;
}

.input-box{
    position:relative;
    margin-bottom:30px;
}

.input-box input,
.input-box textarea{
    width:100%;
    border:2px solid #ddd;
    outline:none;
    padding:16px;
    border-radius:12px;
    font-size:16px;
}

.input-box textarea{
    height:150px;
    resize:none;
}

.input-box label{
    position:absolute;
    left:15px;
    top:15px;
    background:#fff;
    padding:0 5px;
    color:#777;
    pointer-events:none;
    transition:.3s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label{
    top:-10px;
    font-size:13px;
    color:#2563eb;
}

button{
    width:100%;
    border:none;
    background:#2563eb;
    color:#fff;
    padding:16px;
    font-size:18px;
    font-weight:600;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#1d4ed8;
}

.map-section{
    padding:0 20px 80px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
}

.cta-button-1 {
    padding: 13px 0px;
    background-color: #201010;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 135px;
}



    /* Animation */
    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(40px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }




.about-image-product {
    border: 2px solid;
    border-radius: 5px;
    color: red;
}


/* Desktop Responsiveness */
@media (min-width: 768px) {
    .about-grid {
        flex-direction: row; /* Side by side on desktop */
    }
    
    .about-image, .about-content {
        flex: 1;
    }
}


/* Responsive */
    @media(max-width:768px){
      .breadcrumb-banner{
        height:250px;
      }

      .breadcrumb-content h1{
        font-size:32px;
      }
    }

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5));
  }
}
/* Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-col h3 {
  border-left: 4px solid #d32f2f;
  padding-left: 10px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
	font-size: 15px;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
}
form button {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
/* Responsive Nav */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .submenu, .submenu-inner {
    position: static;
    width: 100%;
    box-shadow: none;
  }
	
	@media (min-width: 992px) {
    .col-md-4 {
        width: 33.33333333%;
    }
		

}
	@media (min-width: 992px) {
    .col-md-4 {
        width: 33.33333333%;
    }
}
	.about-content h2 {
    font-size: 35px;
 
	margin-left: 61px;
}
	.about-content p {

    margin-left: 8px;
}
	@media (max-width:768px){
    .gallery-item img{
        height:220px;
    }
}

/* Mobile */
@media (max-width:480px){
    .gallery-section{
        padding:40px 15px;
    }

    h1{
        font-size:28px;
    }

    .gallery-item img{
        height:200px;
    }
}
	
	/* Responsive Design */
@media (max-width:768px){
    .container{
        flex-direction:column;
    }

    .contact-info h2{
        font-size:32px;
    }

    .contact-form{
        width:100%;
    }
}

	
}
		
		
		

