/* ============================================
   COMPLETELY NEW LAYOUT DESIGN
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #f5f7fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: #14b8a6;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2dd4bf;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a2540 0%, #1a3a5c 100%);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  padding: 30px 0;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logo-section {
  padding: 0 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.logo-link {
  display: block;
  margin-bottom: 15px;
  text-align: center;
}

.logo {
  height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.company-name {
  text-align: center;
}

.company-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2dd4bf;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.company-id {
  display: block;
  font-size: 0.9rem;
  color: #E8F4F8;
  margin-bottom: 3px;
}

.company-reg {
  display: block;
  font-size: 0.75rem;
  color: #B8D4E8;
  opacity: 0.8;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 15px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-item:hover {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  transform: translateX(5px);
}

.nav-item.active {
  background: rgba(45, 212, 191, 0.2);
  color: #2dd4bf;
  border-left: 3px solid #2dd4bf;
}

.nav-icon {
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.nav-text {
  font-size: 0.95rem;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.main-content {
  margin-left: 280px;
  min-height: 100vh;
  background: #f5f7fa;
}

/* ============================================
   HERO SECTION - SPLIT LAYOUT
   ============================================ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 50%, #2c5282 100%);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #ffffff;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: #ffffff;
  position: relative;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.3);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 15%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.alt-bg {
  background: #ffffff;
}

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #14b8a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

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

.about-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #14b8a6;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 15px;
}

.about-card p {
  color: #666;
  line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #2dd4bf);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #14b8a6;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

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

.feature-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 78, 137, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 78, 137, 0.15);
}

.feature-check {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 8px;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.industry-card {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transition: transform 0.6s ease;
}

.industry-card:hover::before {
  transform: scale(1.5);
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.4);
}

.industry-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.industry-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* ============================================
   VISION SECTION
   ============================================ */

.vision-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #ffffff;
  text-align: center;
  padding: 120px 60px;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.vision-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #ffffff;
}

.vision-text {
  font-size: 1.3rem;
  line-height: 1.9;
  opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: #ffffff;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  gap: 30px;
}

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

.contact-item {
  display: flex;
  gap: 20px;
  background: #f8fafb;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.1);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
}

.contact-details p {
  color: #666;
  line-height: 1.8;
}

.contact-details a {
  color: #14b8a6;
  font-weight: 600;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer-section {
  background: #f8fafb;
}

.disclaimer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  border-left: 5px solid #14b8a6;
}

.disclaimer-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.9;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #ffffff;
  padding: 40px 60px;
  text-align: center;
  border-top: 4px solid #14b8a6;
}

.footer-content p {
  color: #ffffff;
  font-size: 0.95rem;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5b 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.go-top-btn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
  padding: 14px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

.go-top-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.6);
}

.go-top-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

#blog {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

#blog h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2540;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.blog-post {
  background: #ffffff;
  padding: 50px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  border-left: 5px solid #14b8a6;
  transition: all 0.4s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
}

.blog-post h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #14b8a6;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-top: 25px;
  margin-bottom: 12px;
}

.blog-post p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.blog-post ul, .blog-post ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #666;
}

.blog-post li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.blog-post li::marker {
  color: #14b8a6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .hero-left {
    min-height: 60vh;
  }
  
  .hero-right {
    min-height: 40vh;
  }
  
  .content-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px 0;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .logo {
    height: 150px;
  }
  
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 15px;
  }
  
  .nav-item {
    flex: 1 1 auto;
    min-width: 100px;
    justify-content: center;
  }
  
  .nav-text {
    display: none;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .hero-left, .hero-right {
    padding: 60px 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .content-section {
    padding: 60px 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-grid,
  .services-grid,
  .features-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .vision-section {
    padding: 80px 30px;
  }
  
  #blog {
    padding: 60px 30px;
  }
  
  .blog-post {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .content-section {
    padding: 40px 20px;
  }
  
  .about-card,
  .service-card,
  .industry-card {
    padding: 25px;
  }
}
