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

:root {
   --primary-color: #2563eb;
   --secondary-color: #7c3aed;
   --accent-color: #06b6d4;
   --dark-color: #1e293b;
   --light-color: #f8fafc;
   --text-color: #334155;
   --border-color: #e2e8f0;
   --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
   font-family: "Inter", sans-serif;
   line-height: 1.6;
   color: var(--text-color);
   background: var(--light-color);
}

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

/* Navigation */
.navbar {
   background: white;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
}

.nav-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 0;
   position: relative;
}

.logo h2 {
   color: var(--primary-color);
   font-size: 1.8rem;
   font-weight: 700;
}

.tagline {
   font-size: 0.75rem;
   color: var(--text-color);
   opacity: 0.8;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 2rem;
}

.nav-links a {
   text-decoration: none;
   color: var(--text-color);
   font-weight: 500;
   transition: color 0.3s;
}

.nav-links a:hover {
   color: var(--primary-color);
}

.hamburger {
   display: none;
   flex-direction: column;
   cursor: pointer;
   z-index: 1001;
}

.hamburger span {
   width: 25px;
   height: 3px;
   background: var(--dark-color);
   margin: 3px 0;
   transition: 0.3s;
}

/* Hero Section */
.hero {
   padding: 150px 0 80px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   height: 100vh;
   max-height: 724px;
}

.hero::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
      no-repeat bottom;
   background-size: cover;
}

.hero .container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 1;
}

.hero-content {
   color: white;
}

.hero-title {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
   margin-bottom: 2rem;
   opacity: 0.95;
}

.hero-features {
   display: flex;
   gap: 1rem;
   margin-bottom: 2rem;
   flex-wrap: wrap;
}

.feature-tag {
   background: rgba(255, 255, 255, 0.2);
   padding: 0.5rem 1rem;
   border-radius: 25px;
   backdrop-filter: blur(10px);
   font-size: 0.9rem;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.btn {
   padding: 12px 30px;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s;
   display: inline-block;
   border: none;
   cursor: pointer;
}

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

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.hero-image {
   position: relative;
   height: 400px;
   display: block;
}

.floating-card {
   position: absolute;
   background: white;
   padding: 1rem 1.5rem;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   display: flex;
   align-items: center;
   gap: 0.75rem;
   animation: float 3s ease-in-out infinite;
}

.floating-card .icon {
   font-size: 1.5rem;
}

.floating-card span:last-child {
   color: var(--dark-color);
   font-weight: 600;
}

.card-1 {
   top: 20px;
   left: 50px;
   animation-delay: 0s;
}

.card-2 {
   top: 100px;
   right: 80px;
   animation-delay: 0.5s;
}

.card-3 {
   bottom: 120px;
   left: 100px;
   animation-delay: 1s;
}

.card-4 {
   bottom: 40px;
   right: 50px;
   animation-delay: 1.5s;
}

@keyframes float {
   0%,
   100% {
      transform: translateY(0);
   }
   50% {
      transform: translateY(-20px);
   }
}

/* Products Section */
.products {
   padding: 80px 0;
   background: white;
}

.section-title {
   text-align: center;
   font-size: 2.5rem;
   color: var(--dark-color);
   margin-bottom: 1rem;
}

.section-subtitle {
   text-align: center;
   color: var(--text-color);
   margin-bottom: 3rem;
   font-size: 1.1rem;
}

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

.product-card {
   background: white;
   border-radius: 12px;
   padding: 2rem;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s;
   border: 1px solid var(--border-color);
   display: flex;
   flex-direction: column;
}

.product-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
   width: 60px;
   height: 60px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   margin-bottom: 1.5rem;
}

.healthcare {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.education {
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.textile {
   background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.retail {
   background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.garment {
   background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.medical {
   background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.accounting {
   background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
.hrms {
   background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.crm {
   background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}
.billing {
   background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.product-card h3 {
   color: var(--dark-color);
   margin-bottom: 1rem;
   font-size: 1.5rem;
}

.product-card p {
   color: var(--text-color);
   margin-bottom: 1.5rem;
   line-height: 1.6;
   flex-grow: 1;
}

.product-features {
   list-style: none;
}

.product-features li {
   padding: 0.5rem 0;
   color: var(--text-color);
   position: relative;
   padding-left: 1.5rem;
}

.product-features li::before {
   content: "✓";
   position: absolute;
   left: 0;
   color: var(--accent-color);
   font-weight: bold;
}

/* Features Section */
.features {
   padding: 80px 0;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.feature-item {
   background: white;
   padding: 2rem;
   border-radius: 12px;
   text-align: center;
   transition: all 0.3s;
}

.feature-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
   font-size: 3rem;
   margin-bottom: 1rem;
}

.feature-item h3 {
   color: var(--dark-color);
   margin-bottom: 1rem;
}

.feature-item p {
   color: var(--text-color);
}

/* Industries Section */
.industries {
   padding: 80px 0;
   background: white;
}

.industry-stats {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem;
}

.stat-item {
   text-align: center;
   padding: 2rem;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 12px;
   color: white;
}

.stat-item h3 {
   font-size: 2.5rem;
   margin-bottom: 0.5rem;
}

.industry-list {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   justify-content: center;
}

.industry-tag {
   background: var(--light-color);
   padding: 0.75rem 1.5rem;
   border-radius: 25px;
   border: 2px solid var(--primary-color);
   color: var(--primary-color);
   font-weight: 600;
   transition: all 0.3s;
}

.industry-tag:hover {
   background: var(--primary-color);
   color: white;
}

/* Contact Section */
.contact {
   padding: 80px 0;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.contact .section-title,
.contact .section-subtitle {
   color: white;
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   margin-top: 3rem;
}

.contact-info h3 {
   font-size: 1.8rem;
   margin-bottom: 1rem;
}

.contact-info p {
   margin-bottom: 2rem;
   opacity: 0.95;
}

.contact-item {
   display: flex;
   gap: 1rem;
   margin-bottom: 1.5rem;
   align-items: start;
}

.contact-item .icon {
   font-size: 1.5rem;
   background: rgba(255, 255, 255, 0.2);
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 10px;
   flex-shrink: 0;
}

.contact-item h4 {
   margin-bottom: 0.25rem;
}

.contact-item p {
   opacity: 0.9;
   margin: 0;
}

.contact-form {
   background: white;
   padding: 2rem;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid var(--border-color);
   border-radius: 8px;
   font-size: 1rem;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--primary-color);
}

.contact-form .btn-primary {
   width: 100%;
   background: var(--primary-color);
   color: white;
   font-size: 1.1rem;
}

/* Footer */
.footer {
   background: var(--dark-color);
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;
   margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
   margin-bottom: 1rem;
}

.footer-section p {
   opacity: 0.8;
   line-height: 1.6;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.75rem;
}

.footer-section a {
   color: white;
   text-decoration: none;
   opacity: 0.8;
   transition: opacity 0.3s;
}

.footer-section a:hover {
   opacity: 1;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   opacity: 0.8;
}

.footer-contact {
   margin-top: 1rem;
   font-size: 0.9rem;
}

.footer-contact p {
   margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
   .hero-title {
      font-size: 2.8rem;
   }

   .floating-card {
      padding: 0.8rem 1.2rem;
   }

   .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
   }
}

@media (max-width: 768px) {
   .hamburger {
      display: flex;
   }

   .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      padding: 1rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
   }

   .nav-links.active {
      display: flex;
   }

   .hero {
      padding: 120px 0 60px;
      min-height: auto;
   }

   .hero .container {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .hero-title {
      font-size: 2.2rem;
   }

   .hero-subtitle {
      font-size: 1.1rem;
   }

   .hero-image {
      display: none;
   }

   .products-grid,
   .features-grid {
      grid-template-columns: 1fr;
   }

   .industry-stats {
      grid-template-columns: repeat(2, 1fr);
   }

   .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
   }
}

@media (max-width: 480px) {
   .hero-title {
      font-size: 1.8rem;
   }

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

   .btn {
      width: 100%;
      text-align: center;
   }

   .section-title {
      font-size: 2rem;
   }

   .industry-stats {
      grid-template-columns: 1fr;
   }

   .stat-item h3 {
      font-size: 2rem;
   }

   .industry-tag {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
   }

   .contact-item {
      flex-direction: column;
      text-align: center;
      align-items: center;
   }

   .contact-item .icon {
      margin-bottom: 0.5rem;
   }
}
