/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066b2;
  /* Blue color for Loukya Transport */
  --secondary-color: #ff8c00;
  /* Orange accent color */
  --dark-color: #333;
  --light-color: #f4f4f4;
  --white: #fff;
  --gray: #777;
  --light-gray: #eee;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background: var(--white);
}

.logo img {
  height: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.primary-btn {
  background: var(--primary-color);
  color: var(--white);
}

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

.secondary-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.secondary-btn:hover {
  background: var(--white);
  color: var(--primary-color);
}

.white-btn {
  background: var(--white);
  color: var(--primary-color);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
}

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

.contact-info span {
  margin-right: 20px;
  font-size: 14px;
}

.contact-info a {
  color: var(--white);
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--secondary-color);
}

.contact-info i {
  margin-right: 5px;
}

.social-links a {
  color: var(--white);
  margin-left: 15px;
  font-size: 14px;
}

.social-links a:hover {
  color: var(--secondary-color);
}

nav {
  padding: 15px 0;
  background: var(--white);
}

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

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.logo span {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.nav-menu {
  display: flex;
}

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

.nav-menu a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
}

/* Partners and Product Section Combined */
.partners-product {
  padding: 60px 0;
  background: var(--light-color);
  text-align: center;
}

.partners-product-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.technology-partners, 
.our-product {
  flex: 1;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.technology-partners:hover, 
.our-product:hover {
  transform: translateY(-10px);
}

.technology-partners h3,
.our-product h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.partner-logo,
.maktix-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-logo img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.maktix-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.partner-link,
.product-link {
  display: inline-block;
  color: var(--white);
  background-color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 500;
  transition: var(--transition);
}

.partner-link:hover,
.product-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Media query for responsive design */
@media (max-width: 768px) {
  .partners-product-content {
    flex-direction: column;
  }
  
  .technology-partners, 
  .our-product {
    width: 100%;
  }
}

.hero-content {
  max-width: 700px;
}

.hero-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-text h3 {
  font-size: 28px;
  color: var(--primary-color);
}

.about-features {
  margin: 20px 0;
}

.about-features li {
  margin-bottom: 10px;
}

.about-features i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 30px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 102, 178, 0.9), rgba(0, 102, 178, 0.9)), url('https://images.unsplash.com/photo-1557729557-70772db21a46?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Fleet Section */
.fleet {
  padding: 80px 0;
  background: var(--light-color);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-10px);
}

.fleet-card img {
  height: 200px;
  object-fit: cover;
}

.fleet-card h3 {
  font-size: 22px;
  padding: 20px 20px 0;
}

.fleet-card p {
  padding: 0 20px 20px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--dark-color);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
footer {
  background: #000000;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-office h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-office p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-office i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-office a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-office a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: 1;
  }

  .about-text {
    order: 2;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

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

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

  .hero {
    height: auto;
    padding: 100px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
  }

  .contact-info {
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    border-radius: 5px;
  }
}