@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&display=swap");

/* ======== GLOBAL STYLES & VARIABLES BY MAHTAB ======== */
:root {
  --primary-gradient: linear-gradient(135deg, #6a82fb, #fc5c7d);
  --accent-color: #20c997;
  --dark-bg: #1f2937;
  --text-heading: #1f2937;
  --text-body: #4b5563;
  --bg-light: #f2f6fb;f
  --border-color: #e5e7eb;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  overflow-x: hidden;
  font-size:20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--text-heading);
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Offset for fixed navbar */
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}
.section-padding {
  padding: 5rem 0 6rem;
}
.btn-primary {
  background-color: #000000;
  border-color: #000000;
  padding: 12px 28px;
  font-weight: 500;
  transition: all 0.3s ease;
}
    h4.lap-sec {
    margin-left: 29px;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.4);
}

.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* ======== NAVBAR ======== */
.navbar {
  transition: background-color 0.4s ease-in-out, padding 0.4s ease;
  background-color: transparent;
}

.navbar-scrolled {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar .navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ======== HERO SECTION ======== */
.hero-section {
  height: 100vh;
  min-height: 40rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-section .carousel-item img {
  height: 100vh;
  min-height: 40rem;
  object-fit: cover;
  width: 100%;
}

/* Gradient overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-overlay-content {
  position: relative; /* Changed from absolute */
  z-index: 2;
  max-width: 800px;
}
.hero-overlay-content h1 {
  color: var(--bg-light);
}

/* ======== ABOUT SECTION ======== */
.feature-box {
  padding: 1rem;
}
.feature-box i {
  color: var(--accent-color);
}
.client-logos img {
  height: 40px;
  margin: 15px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ======== HARDWARE SECTION ======== */
.hardware-card {
  background: #0dcaf0;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* For shine effect */
  overflow: hidden; /* For shine effect */
}
.hardware-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.hardware-card h3 {
  margin-bottom: 0.5rem;
}

/* ======== SOFTWARE SECTION ======== */
.software-card {
  background: #0dcaf0;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}
.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.software-card .icon-gradient {
  font-size: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.software-card .platforms .badge {
  background-color: var(--bg-light);
  color: var(--text-body);
  font-weight: 500;
  margin: 0.9rem 5px 0.8rem;
}

/* ======== RENTAL SECTION ======== */
.rental-card {
  background: #0dcaf0;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-image 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rental-card:hover {
  border-image: var(--primary-gradient) 1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}
.rental-card h4 {
  font-weight: 700;
}
.rental-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.rental-card ul li {
  margin-bottom: 0.5rem;
}
.rental-card ul li .fa-check {
  color: var(--accent-color);
  margin-right: 8px;
}
.rental-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rental-card ul li {
  display: flex;
  align-items: flex-start; /* text top se align hoga */
  margin-bottom: 10px;
}

.rental-card ul li i {
  color: #00c853; /* green tick */
  margin-right: 8px;
  min-width: 18px;   /* icon ke liye fixed space */
  text-align: center;
}


.site-sec {
    background: #0dcaf0;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-image 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 50%;
    margin-left:160px;
}

.site-sec ul li .fa-check { 

		    color: var(--accent-color);
                margin-right: 8px;
	}
	
	.site-sec ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.site-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-sec ul li {
  display: flex;
  align-items: flex-start; /* text top se align hoga */
  margin-bottom: 10px;
}

.site-sec ul li i {
  color: #00c853; 
  margin-right: 8px;
  min-width: 18px;  
  text-align: center;
}

/* Mobile view ke liye */
@media (max-width: 600px) {
    .site-sec {
        width: 90% !important ;        
        margin: 0 auto!important ; 
        /*height:100%;*/
    }
    
    
}



/* ======== CONTACT & FOOTER ======== */
#contactForm {
  padding: 30px;
}
#contactForm .form-control {
  padding: 12px;
  &:hover {
    border-color: var(--accent-color);
  }
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.accordion-button:not(.collapsed) {
  background-color: #e7f8f3;
  color: var(--text-heading);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;   
  gap: 10px;                 
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-item i {
  font-size: 16px;
  color: #fff;
  margin-top: 3px;          
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--accent-color) !important;
}

footer hr {
  height: 0.1rem;
  width: 3.8rem;
  background-color: var(--accent-color);
  border: 0;
  opacity: 1;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: var(--dark-bg);
  border: 0.1rem solid var(--border-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-left: 10px;
}

/* ======== BACK TO TOP BUTTON ======== */
#back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s;
}
#back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top-btn:hover {
  transform: scale(1.1);
  background-color: #1aa07a;
}

/* ======== ANIMATION CLASSES & KEYFRAMES ======== */
.reveal-up,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-up {
  transform: translateY(30px);
}
.reveal-up.revealed,
.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift effect */
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Hover shine effect */
.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}
.shine:hover::after {
  left: 150%;
}

/* ======== RESPONSIVENESS ======== */
@media (max-width: 991.98px) {
  .hero-section,
  .hero-section .carousel-item img {
    height: 60vh;
    min-height: 35rem;
  }
  #navbarNav {
    background-color: var(--dark-bg);
    text-align: center;
  }
  .navbar .nav-link {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
  }
  .navbar .nav-link::after {
    display: none;
  }
  .hero-overlay-content h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

 .logo-carousel .carousel-item {
      text-align: center;
    }
    .logo-carousel img {
      max-height: 180px; /* logo size control */
      margin: 0 auto;
      object-fit: contain;
    }

.owl-carousel .item img {
      width: 100%;
      height: 100%;
      display: block;
    }
    /* Mobile responsive adjustments */
@media (max-width: 600px) {
    .our-associates .owl-carousel .item img {
        max-height: 50px; /* Reduce height on mobile */
    }
    .our-associates h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
}
    

h3.text-center {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
 font-family: "Poppins", sans-serif;
}




.owl-carousel .item {
  text-align: center;      /* logo center me aayega */
}

.owl-carousel .item img {
  max-height: 180px;        /* Desktop par maximum height */
  width: auto;             
  margin: 0 auto;          /* center align */
  display: block;
  object-fit: contain;     /* image crop nahi hogi */
}

/* Tablet */
@media (max-width: 991px) {
  .owl-carousel .item img {
    max-height: 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .owl-carousel .item img {
    max-height: -45px;
  }
}


.icon-big{
    width: 135px;
    margin-top:20px;
    margin-left: 60px;
}



/* Mobile view (max-width 768px tak) */
@media (max-width: 768px) {
    .icon-big {
        width: 60px;       /* thoda chhota ki mobile pe fit ho */
        margin-top: 10px;  
        margin-left: 0;    /* center alignment ke liye margin hata diya */
        display: block;
        margin-right: auto;
        margin-left: auto; /*
    }
}