/* index.css */

/* Root Variables */
:root {
  --primary-color:#f05724 ;
  --secondary-color: #030358;
  --dark-color: #292929;
  --light-color: #f4f4f4;
  --success-color: #5cb85c;
  --danger-color: #d9534f;
  --warning-color: #f0ad4e;
  --info-color: #5bc0de;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--primary-color);
  color: #f9f1f1;
}
.btn-primary:hover {
  background: #ee2405;
  transform: translateY(-3px);
}

/* Header & Navigation */
.header {
position: fixed;
top: 0; left: 0; width: 100%; height: 80px;
z-index: 1000; padding: 20px 0;
transition: all 0.3s ease;
background-color: #ffffff;
}
.header.scrolled {
  background: rgba(211,205,205,0.9);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 60px;
  width: 200px;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
  position: relative;
}
.nav-links a {
  color: #080808;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}
.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width .3s ease;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}
/* Dropdown */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 0 0 5px 5px;
  z-index: 1001;
}
.nav-links .dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #333;
  transition: background .3s;
}
.nav-links .dropdown-content a:hover {
  background: #f4f4f4;
}
.nav-links .dropdown:hover .dropdown-content,
.nav-links .dropdown-content.active {
  display: block;
}
/* Hamburger (mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px; height: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%; height: 3px;
  background: #080808;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left .3s ease;
    z-index: 1000;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .nav-links .dropdown-content {
    position: static;
    box-shadow: none;
    background: none;
  }
}

/* Sections Common */
section {
  padding: 80px 0;
}

/* AI Revolution Section */
.ai-revolution {
  height: 100vh;
  min-height: 850px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--secondary-color);
  /* background: linear-gradient(135deg, #ec5c02 0%, #02247a 100%); */
}
.ai-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}
.ai-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding-right: 40px;
  padding-top: 150px;
}
.ai-title {
  font-size: 3.5rem;
  margin-top: 20px;
  animation: float 6s ease-in-out infinite;
}
.ai-title span {
  color: var(--primary-color);
  position: relative;
}
.ai-title span::after {
  content: '';
  bottom: -5px; left: 0;
  width: 100%; height: 3px;
  background: var(--primary-color);
  animation: pulse 5s infinite;
}
.ai-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.8);
}
.ai-visual-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ai-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.innovation-circle {
  position: relative;
  width: 350px; height: 350px;
  margin: 0 auto;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.tech-item {
  position: absolute;
  width: 100px; height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all .5s ease;
}
.tech-item span {
  font-size: .8rem;
  margin-top: 5px;
  color: var(--secondary-color);
  text-align: center;
}
.tech-item:hover span {
  color: rgb(225,15,15);
}
/* Position around circle */
.tech-item.cv { top: 30%; right: 70%; transform: translate(-50%, -50%); }
.tech-item.custom { right: 50%; left: 30%; transform: translate(-50%, 50%); }
.tech-item.web { bottom: 0; left: 40%; transform: translate(-50%, 50%); }
.tech-item.data { bottom: 10%; left: 10%; transform: translateY(50%); }
.tech-item.dms { top: 40%; left: 70%; transform: translate(-50%, -50%); }
.tech-item.digit { bottom: 60%; right: 10%; transform: translateY(-50%); }

/* Digital Transformation Section */
.digital-tranform {
  padding: 100px 0;
  background-color: var(--light-color);
  color: #080808;
  overflow: hidden;
}
.digital-tranform .section-header {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 800px;
}
.digital-tranform .section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.digital-tranform .section-header h2 span {
  color: var(--secondary-color);
}
.digital-tranform .process-flow {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.digital-tranform .process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  overflow: hidden;
  transition: all .4s ease;
  position: relative;
}
.digital-tranform .process-step:hover {
  background-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.digital-tranform .step-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.digital-tranform .step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.digital-tranform .process-step:hover .step-image {
  transform: scale(1.03);
}
.digital-tranform .step-number {
  position: absolute;
  top: 30px; left: 30px;
  width: 60px; height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(235,77,20,.5);
}
.digital-tranform .step-content {
  flex: 1;
  padding: 40px;
  color: #fff;
}
.digital-tranform .step-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 25px;
  transition: all .3s ease;
}
.digital-tranform .process-step:hover .step-icon {
  background: #fff;
  color: var(--primary-color);
  transform: rotate(15deg);
}
.digital-tranform .step-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}
.digital-tranform .step-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 0;
  width: 60px; height: 3px;
  background: var(--primary-color);
}
.digital-tranform .step-content p,
.digital-tranform .step-content ul li {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.6;
}
.digital-tranform .step-content ul {
  list-style: none;
  margin-bottom: 25px;
}
.digital-tranform .step-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.digital-tranform .step-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.digital-tranform .step-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.digital-tranform .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: .9rem;
  color: #fff;
}
.digital-tranform .benefit-item i {
  color: #fff;
}
.digital-tranform .process-step:nth-child(even) {
  flex-direction: row-reverse;
}
.digital-tranform .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 30px;
  background: var(--primary-color);
  animation: pulse 2s infinite;
}

/* EDMS Benefits Section */
.dms-benefits {
  padding: 100px 0;
  background:var(--secondary-color);
  color: white;
  position: relative;
  overflow: hidden;
}
.dms-content {
  text-align: center;
}
.dms-content h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}
.dms-content h2 span {
  color: var(--primary-color);
}
.dms-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.dms-feature {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.dms-feature:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}
.dms-feature .feature-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all .3s ease;
}
.dms-feature:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(360deg);
}
.dms-animation {
  height: 200px;
  position: relative;
  margin-top: 50px;
}
.document-stack {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  animation: documentPulse 3s infinite;
}
.search-beam {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 0;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  animation: beamScan 4s infinite;
}

/* Growth Accelerator Section */
.growth-accelerator {
  padding: 100px 0;
  background: white;
}
.growth-content {
  text-align: center;
}
.growth-content h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--secondary-color);
}
.growth-content h2 span {
  color: var(--primary-color);
}
.growth-path {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.path-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 350px;
}
.path-number {
  width: 40px; height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.path-content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.path-content p {
  color: #555;
}
.growth-visual {
  height: 200px;
  position: relative;
}
.growth-line {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.growth-rocket {
  position: absolute;
  top: 50%; left: 10%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 100%, 50% 70%, 0% 100%);
  animation: rocketLaunch 6s infinite;
}

/* Client Success Section */
.client-success {
  padding: 100px 0;
  background: var(--secondary-color);
  color: white;
  text-align: center;
}
.client-success h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}
.client-success h2 span {
  color: var(--primary-color);
}
.success-stories {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.story-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  width: 350px;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.story-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}
.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.story-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.story-stats {
  display: flex;
  gap: 15px;
}
.story-stats .stat {
  background: rgba(235,77,20,0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: .9rem;
}

/* Clients Section */
.clients-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f05724 0%, #e53e28 100%);
}
.clients-section .section-header h2{
  color: var(--secondary-color);
  text-align: center;


  
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.client-logo {
  position: relative;
  height: 150px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--light-color);
  transition: all .5s ease; 
}
.client-logo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.9);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  transition: all .5s ease;
}
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.client-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .5s ease;
  padding: 20px;
  text-align: center;
}
.client-logo:hover .client-overlay {
  opacity: 1;
}

/* Call To Action Section */
.cta {
  padding: 80px 0;
  text-align: center;
  background:var(--secondary-color);
  color: #fff;
}
.cta-content h2 {
  margin-bottom: 20px;
}
.cta-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.cta-content .btn-primary {
  width: 200px;
  height: 50px;
  font-size: 1.2rem;
  border-radius: 30px;
  padding: 10px;
}

/* Footer */
.footer {
  background: #282829;
  color: #fff;
  padding: 80px 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--primary-color);
}
.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 2px;
  background: var(--primary-color);
}
.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  transition: all .3s ease;
}
.footer-col ul li:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-col ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}
.social-links {
  display: flex;
  margin-top: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: all .3s ease;
}
.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: .9rem;
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes documentPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes beamScan {
  0% { height: 0; }
  100% { height: 100%; }
}
@keyframes rocketLaunch {
  0%,100% { left: 10%; transform: translateY(-50%) rotate(45deg); }
  50% { left: 90%; transform: translateY(-50%) rotate(-45deg); }
}

/* Utility Animations */
.animate-from-bottom {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 992px) {
.ai-content {
  flex-direction: column;
  text-align: center;
}

.ai-text {
  max-width: 100%;
  padding-right: 0;
  margin-bottom: 50px;
  text-align: center;
}

.ai-title, .ai-subtitle {
  text-align: center;
}

.innovation-circle {
  width: 300px;
  height: 300px;
}

.tech-item {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
}

.tech-item span {
  font-size: 0.7rem;
}
}

@media (max-width: 576px) {
.ai-title {
  font-size: 2.5rem;
}

.ai-subtitle {
  font-size: 1.1rem;
}

.tech-item {
  width: 70px;
  height: 70px;
  font-size: 1.2rem;
}
}
@media(max-width:992px){
.digital-tranform  .process-step,
.digital-tranform  .process-step:nth-child(even){
  flex-direction:column;
}
.digital-tranform  .step-visual{width:100%;min-height:300px;}
.digital-tranform  .step-content{padding:30px;}
.digital-tranform  .process-step:not(:last-child)::after{
  left:50px;bottom:-15px;height:15px;width:2px;
}
}

@media(max-width:768px){
.digital-tranform  .section-header h2{font-size:2.2rem;}
.digital-tranform  .step-content h3{font-size:1.5rem;}
.digital-tranform  .step-icon{width:60px;height:60px;font-size:1.5rem;}
}

@media(max-width:576px){
.digital-tranform {padding:60px 0;}
.digital-tranform  .section-header h2{font-size:1.8rem;}
.digital-tranform  .step-benefits{flex-direction:column;gap:10px;}
}