:root {
    --primary-color: #ff1e1e;
    --secondary-color: #000;
    --default-color: #fff;
    --text-color: #464646;
    --light-text: #eee;
    --light-color: #f8f9fa;
    --footer-text: #ccc;
    --border-color: #ddd;
    --font1:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { height:100%; scroll-behavior: smooth; /*cursor: url('../image/cursor.png'), auto;*/ }
body {
    font-family: var(--font1);
	font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--default-color);
}
body::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
body::-webkit-scrollbar-track {
  background: var(--light-text);
  border:2px solid var(--default-color); 
}
body::-webkit-scrollbar-thumb {
  background:  var(--border-color);
  border:none;
  border-radius:3px; 
}
body::-webkit-scrollbar-thumb:hover {
  background:  var(--secondary-color);
}
h1, h2, h3, h4, h5, h6 { color: var(--secondary-color); }
.container {
    width: 94%;
    font-family: var(--font1);
    max-width: 1500px; 
    margin: auto;
}
img {max-width:100%;}
.pt-6 {padding-top:4rem;  }
.pb-6 {padding-bottom:4rem; }
.py-6 {padding-top:4rem; padding-bottom:4rem; }
.px-6 {padding-left:4rem; padding-right:4rem; }

.lead {font-size:120%; font-weight:400;}
.float-left {display:inline-block; float:left; margin-right:5px;}
.float-right {display:inline-block; float:right; margin-left:5px;}

/* Header Styles */
#myHeader {
	width:100%; 
    background-color: var(--default-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: block;
    top: 0; 
    z-index: 999;
} 
.stickyH {  position: fixed !important;  } 
.logo {
    display: inline-block;
	width:28%; 
}
.logo img {
    height: 70px;
}
.logo-text {
    margin-left: 10px;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Navigation Styles */
nav {
    display: inline-block; 
	width:70%;
	text-align:right;
}
nav ul {margin:0px; padding:0;}
.nav-menu {  
    list-style: none;
}
.nav-item {
    position: relative;
	display:inline-block;
    margin: 0 12px;   
}
.nav-item .social-link { display:inline; color: var(--text-color); padding: 7px 10px; transition: color 0.3s;}
.nav-item .social-link:hover { color: var(--primary-color); }
.nav-link {
	display:inline;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    transition: all 0.3s;
}
.nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 3px;
	margin:2px 0 0 0;
	padding:0px;
    background: var(--secondary-color);
    transition: width .3s;
	}
.nav-link:hover {
    color: var(--primary-color); 
}
.nav-link:hover::after { 
    width: 100%; 
	}
.nav-item .dropdown-menu { 
	position:absolute;
	display:none;
    top: 30px;
    left: -15px;
	width: 240px;
    background-color: var(--default-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);   
    transition: all 0.3s;
    list-style: none;
    z-index: 999;
}
.nav-item:hover .dropdown-menu { display:block; }
.dropdown-item {
    padding: 7px 15px;
	background: var(--default-color);
    border-bottom: 1px solid var(--border-color);
} 
.dropdown-link {
    color: var(--text-color); 
	font-weight:400;
    text-decoration: none;
    display: block; 
} 
.dropdown-item:hover, .dropdown-item:hover .dropdown-link { 
	color: var(--default-color); 
	background: var(--secondary-color);
} 
.dropdown-link:hover, .dropdown-link:focus {
    color: var(--default-color); 
}
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}
/* Hero Section */
.hero { 
    position: relative; 
	width:100%;
    height: 87vh;   
	vertical-align:center;
	overflow:hidden; 
  }
  .hero img{  
	width:100%;
    height: auto;   
  }
  .hero::before { 
    content: '';
	display:block;
    position: absolute;
	top:0;
	left:0;
	width:100%;
    height:100%; 
	background: var(--secondary-color);
	opacity: 0.5; 
  }
  
  .hero-content {
    position: absolute;
    z-index: 1;
    top: 55%;
	left:10%;
	width:80%;
    margin: auto;
    padding: 0 15px;
    text-align: center;
    color: var(--default-color); 
  }
  
  .hero-title {
    font-size: 285%;
    margin-bottom: 20px;
    font-weight: 700;
	color: var(--default-color);
  }
  .hero-subtitle {
    font-size: 151%;
	margin: auto;
    margin-bottom: 30px;
    font-weight: 400;
  }
  /* Hero Text Animation */
    .cursor {
    position: relative;  
    border-right: 2px solid rgba(255, 255, 255, 0.5); 
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
    }
    /* Animation */
    .typewriter-animation {
    animation:
        typewriter 5s steps(20) 1s 1 normal both,
        blinkingCursor 3s steps(5) 3s 1 normal forwards;
    /* blinkingCursor starts after 6s (5s + 1s delay), runs once */
    }
    @keyframes typewriter {
		from { width: 0;
		}
		to { width: 100%;
		}
    }
    @keyframes blinkingCursor {
		0% { border-right-color: rgba(255, 255, 255, 0.75);
		}
		100% {  border-right-color: transparent;
		}
    }


#desk-view {display:block;}
#mob-view { display:none;}

/* Button Hover Effect */
.slide-sm:hover,
.slide-sm:focus {
  box-shadow: inset 150px 0 0 0 var(--secondary-color);
}
.slide-md:hover,
.slide-md:focus {
  box-shadow: inset 300px 0 0 0 var(--secondary-color);
}
.slide-lg:hover,
.slide-lg:focus {
  box-shadow: inset 450px 0 0 0 var(--secondary-color);
}

button, .btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--default-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
}

button:hover,  button:focus, .btn:hover, .btn:focus{
    background-color: var(--secondary-color);
    color: var(--default-color);
	cursor:pointer;
}
 
/* About Section */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 216%;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 30%, rgba(255, 0, 0, 1) 31%);
    margin: 15px auto 0;
}
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-text, .about-image { 
	flex: 1;  
    min-width: 300px; 
	position:relative;
}
.about-image img {
    width: 100%;  
}
.about-image::before {content: ''; position:absolute; top:0px; right:0px;  width: 0; height: 0; border-top: 65px solid red; border-left: 110px solid transparent; border-radius: 0px 15px 0px 0px; z-index:2; }
.bdr-curves { border-radius:15px;}


/* Mission & Vision */
.bg1 {
    background-color: var(--light-color);
}
.bg2 {
    background:url('../img/bg2.jpg') no-repeat center center; background-size:cover;
}
.bg3 {
    background:url('../img/bg3.jpg') no-repeat center center; background-size:cover;
}
.cont-bg {
    background:url('../img/cont-bg.jpg') no-repeat center center; background-size:cover;
}
.network-bg {
    background:url('../img/network-1.jpg') no-repeat center center; background-size:cover;
}
.mv-container {
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
	gap: 30px;
}
.curve-box { 
    min-width: 300px;
    background-color: var(--default-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: transform 0.3s;
}
.curve-box:hover { 
    transform: translateY(-8px);
}
.mv-card {
    flex: 1; 
    text-align: center; 
}
.mv-icon {
    font-size: 285%;
    color: var(--primary-color);
}
.mv-img img{  width: 97%; height:auto; margin:auto; border-radius:10px;}
.mv-title, .head-title {
    font-size: 153%;
	color: var(--secondary-color);
	font-weight: 700;
    margin-bottom: 20px; 
}

/* Strengths Section */
.strengths-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.ht-fix {height:300px; overflow-y:scroll; padding-right:10px;}
.ht-fix::-webkit-scrollbar {
  width: 2px; 
  background: transparent;
}
.ht-fix::-webkit-scrollbar-track {
  background: var(--light-text);
  border:2px solid var(--default-color); 
}
.ht-fix::-webkit-scrollbar-thumb {
  background:  var(--light-color); 
  border:none;
  border-radius:2px; 
}
.ht-fix::-webkit-scrollbar-thumb:hover {
  background:  var(--border-color);
}

/* Product Section */

.product-categories1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
} 
.product-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
} 

#products .btn-group .btn {border-radius:5px; margin: auto 9px; }
#products .btn-group .btn.active {background:var(--secondary-color); color:var(--default-color); }
.btn-group input[type="radio"],
.btn-group input[type="checkbox"] {
    display: none;
}


.product-card { 
    background-color: var(--default-color);
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img {
    height: 200px;
    overflow: hidden;
	border-radius: 15px 15px 0 0; 
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
	display:block;
	min-height:180px;
    padding: 20px;
} 
.product-card a {
    display: inline-block;
    margin-top: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.product-card a:hover {
    color: var(--secondary-color);
}

.product-videos .product-card h4.head-title {font-size: 144%; font-weight:500;}

/* Markets Section */
.markets-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}


/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.contact-icon i {
    width: 30px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-group label {
    font-weight: 500;
}
.form-control {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
	border-bottom: 3px solid var(--border-color);
    border-radius: 5px; 
	margin-bottom:12px;
	box-shadow: 0 10px 20px rgba(200,200,200,0.2);
}
textarea.form-control {
    height: 90px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--default-color); 
}
.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    padding: 5px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}
footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--default-color);
    text-decoration: none;
    transition: background-color 0.3s;
}
footer .social-link:hover {
    background-color: var(--primary-color);
}
.footer-heading {
    font-size: 130%;
	font-weight: 600;
	color: var(--default-color);
    margin-bottom: 20px; 
}
.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--primary-color);
}
.copyright { 
    border-top: 1px solid rgba(255, 255, 255, 0.15); 
    font-size: 90%;
    color: var(--footer-text); 
	text-align: center;
}
.copyright a {
    color: var(--default-color);
    text-decoration: none;
    transition: color 0.3s;
}
.copyright a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}
 
 .clientele-box {
    display: flex; 
    gap: 30px;
	justify-content: space-between;
	text-align:center;
  }

/* Back to Top Button */
#backToTop {
  position: fixed;
  display:none;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: var(--primary-color); /* or use your brand color */
  color: var(--default-color); 
  width: 36px;
  height: 36px;
  padding:5px;
  border:none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);  
}
#backToTop:hover {
  background-color:var(--secondary-color);
  color: var(--default-color);
}
#backToTop.show {
  display:block;
}
.wa-icon {
  position: fixed;
  background: #00b041;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
  width: 42px;
  height: 42px;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
  text-align: center;
  text-decoration:none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.wa-icon i {
  color: var(--light-color);
  font-size: 27px;
}
.wa-icon:hover {
  background: #00CC30;
  box-shadow: none;
}










/* Responsive Styles */

@media (min-width: 1500px) {

body {  font-size: 20px;  }


}

@media (max-width: 1089px) {

body {  font-size: 14px;  }


}
 





@media (max-width: 768px) {

.logo { width:78%;}
.mobile-menu {  display: inline-block;  position:absolute; top: 15px; right:15px;}
nav {  width:20%;}
.nav-menu {
		display:none; 
		position:absolute;
        top: 80px;
        left: 20%; 
        width: 80%;   
		padding:10px;
		background-color: var(--default-color);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		transition: left 0.3s;
		z-index:999;
    } 
.nav-item {  display:block; margin: 5px auto; padding:7px; border-bottom:1px solid var(--light-text); text-align:center;}
.nav-item:hover {  background:var(--light-text); } 

.hero {  height: 54vh;  }
.hero img{   width:auto;  height: 100%;   }
.hero-content {  top: 24%; left:5%; width:90%; margin: auto;  padding: 0 10px;  }
.about-content, .mv-container, .strengths-container, .product-categories, .product-categories1, .product-videos, .markets-container, .contact-container  {grid-template-columns: repeat(1, 1fr);}
.col-xs-6 {width:33.33% !important; }

}

@media (max-width: 540px) {
.copyright span {  display:block;  }
#desk-view {display:none;}
#mob-view { display:block;}
.about-content  {border-radius:20px 20px 0 0;}
.about-content.pe-4 {
    padding-right: 0px !important; 
}
.about-content .about-text { padding:15px 20px; }
.product-card { 
	margin:12px 0; 
}
 .clientele-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; 
	text-align:center;
  }
  .col-xs-6 {width:49.5% !important; }


}