
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #f9fafb;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;

  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

.logo {
 height: 80px;
 margin-right: 12px; 
 border: 0;
}

.company{
font-size: 32px; 
font-weight: bold; 
color: #004497; 
line-height: 1;	
}

.slogan{
 font-size: 16px; 
 color: #004497; 
 line-height: 1;
}

/* ==== Layout ==== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2563eb;
}

header nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #374151;
}

header nav a:hover {
  color: #2563eb;
}

/* ==== Buttons ==== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

main {
  flex: 1; 
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1e4fbb;
}

.btn-secondary {
  background: #e5e7eb;
  color: #1a1a1a;
}

.btn-secondary:hover {
  background: #d1d5db;
}

/* ==== Hero ==== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.pill {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: #dbeafe;
  color: #1e40af;
  font-size: 1.0rem;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
 .hero-video {    width: 100%;    margin: 30px auto;    aspect-ratio: 16 / 9;        border-radius: 10px;    overflow: hidden;    background: #ffffff;  }  .hero-video video {    width: 100%;    height: 100%;    display: block;    object-fit: contain;         background: #ffffff;  }

/* ==== Features ==== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0.1rem 0;
}

.feature {
  background: white;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature h3 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.teliqlogo{
	width:80%;
	margin-top: 20px;
}

/* ==== Footer ==== */
footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

footer a {
  color: #374151;
  text-decoration: none;
}

footer a:hover {
  color: #2563eb;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }
}


/* ==== Navbar ==== */
.navbar {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
  font-size: 1.5rem; 
}


/* Hover color */
.nav-link:hover {
  color: #2563eb;
}

/* Underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.form-section {
  max-width: 600px;
  margin: 3rem auto 4rem; 
}

.demo-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;      
  margin: 0 auto;        
}

.demo-form label {
  font-weight: 500;
}

.demo-form input{
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box; 
}

.demo-form textarea {
  width: 100%;
  padding-left: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box; 
}


.demo-form textarea {
  resize: vertical; 
}

.demo-form button {
  font-size: 1.1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  margin-top: 0.8rem;
  width: 100%;
  padding: 0.8rem;
  box-sizing: border-box;
}



.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2563eb;
}

.service-item {
  display: flex;
  align-items: flex-start; 
  margin-bottom: 30px;
}

.service-icon {
  width: 60px;
  object-fit: contain;
  margin-right: 20px; 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.service-text h3 {
  margin: 0 0 10px 0;
}

.service-text p {
  margin: 0;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 0rem;  
    right: 0rem; 
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #2563eb;
    z-index: 1100; 
  }

  header {
	  background: white;
	  border-bottom: 1px solid #e5e7eb;
	  padding: 0.4rem 0;
	  position: sticky;
	  top: 0;
	  z-index: 1000;
  }
  header .container.flex-between {
    position: relative; 
    flex-direction: column;
    align-items: flex-start;
  }

/* Mobile navbar buttons */
.navbar {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 0.8rem 0; 
  gap: 0.5rem;

}

.navbar.active {
  display: flex;
}

.navbar .nav-link {
  display: block;
  padding: 0.6rem 1rem;      
  margin: 0.15rem auto;      
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  background: #f3f4f6;       
  color: #374151;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: 80%;
}

.navbar .nav-link:hover {
  background: #e5e7eb;       
  color: #2563eb;            
}

.navbar .nav-link.active {
  background: #2563eb;       
  color: white;
}

.navbar .nav-link::after {
  display: none;
}

.logo {
 height: 60px;
 margin-right: 12px; 
 border: 0;
}  

.company{
font-size: 22px; 
font-weight: bold; 
color: #004497; 
line-height: 1;	
}

.slogan{
 font-size: 12px; 
 color: #004497; 
 line-height: 1;
}

.hero-text h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.teliqlogo{
	width:100%;
}
.service-item {

    align-items: top; 
    margin-bottom: 15px;
  }

  .service-icon {
    width: 40px; 
    height: 40px;
    margin-right: 10px;
  }

  .service-text h3,
  .service-text p,
  .hero-text {
    text-align: left;
  } .hero-video {    margin: 10px auto;  }
}
