/* ============================= */
/*         Root Variables        */
/* ============================= */
:root {
  --primary-color: #eb4d14;
  --secondary-color: #031070;
  --dark-color: #031070;
  --light-color: #f8f9fa;
  --text-color: #080808;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --transition-speed: 0.3s;
  --header-height: 80px;
  --mobile-breakpoint: 768px;
}

/* ============================= */
/*         Global Reset          */
/* ============================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: var(--text-color);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/*           Typography          */
/* ============================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--dark-color);
}

p {
  margin-bottom: 15px;
  color: rgba(0,0,0,0.7);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ============================= */
/*            Buttons            */
/* ============================= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  /* box-shadow: 0 4px 15px rgba(247, 183, 51, 1); */
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  /* box-shadow: 0 6px 20px rgba(247, 183, 51, 1); */
}

/* ============================= */
/*          Header/Nav           */
/* ============================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 50px;
  width: auto;
  transition: all var(--transition-speed) ease;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding: 5px 0;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 200px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  transition: all var(--transition-speed) ease;
}

.dropdown-content a:hover,
.dropdown-content a.active {
  background: rgba(0, 210, 255, 0.1);
  color: var(--primary-color);
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-color);
  transition: all var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: left var(--transition-speed) ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}

/* Responsive Utilities */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  .container { padding: 0 15px; }
}


  /* ============================= */
  /* CV Hero                        */
  /* ============================= */
  .cv-hero {
    background: linear-gradient(135deg, #f4f4f4 0%, #2a5298 50%, #1e3c72 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .cv-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .cv-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: cvTitleAppear 1s ease-out forwards;
  }
  
  .cv-title span {
    color: var(--primary-color);
    position: relative;
  }
  
  .cv-title span::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    animation: cvUnderlineExpand 1.5s 0.5s forwards;
  }
  
  .cv-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    opacity: 0;
    animation: cvSubtitleAppear 1s 0.3s forwards;
  }
  
  .cv-cta {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    animation: cvButtonPulse 2s infinite;
    opacity: 0;
    animation: cvButtonPulse 2s 0.6s infinite, cvSubtitleAppear 1s 0.6s forwards;
  }
  
  .cv-visual {
    position: relative;
    width: 500px;
    height: 400px;
  }
  
  .eye-animation {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, #fff 0%, var(--primary-color) 100%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: eyePulse 4s infinite alternate;
    box-shadow: 0 0 50px rgba(0, 210, 255,0.5);
  }
  
  .eye-animation::before {
    content: '';
    position: absolute;
    width: 50px; height: 50px;
    background: var(--dark-color);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .eye-animation::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 30%; left: 30%;
    animation: eyeMove 8s infinite;
  }
  
  .vision-grid {
    position: absolute;
    width: 100%; height: 100%;
    background-image:
      linear-gradient(rgba(0,210,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,210,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
  }
  
  /* ============================= */
  /* Capabilities Section           */
  /* ============================= */
  .cv-capabilities {
    padding: 100px 0;
    background: var(--light-color);
  }
  
  .cv-capabilities .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .cv-capabilities .section-header h2 {
    color: var(--dark-color);
  }
  
  .cv-capabilities .section-header h2 span {
    color: var(--primary-color);
  }
  
  .cv-capabilities .section-header p {
    color: rgba(0,0,0,0.7);
  }
  
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 30px;
  }
  
  .capability-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,2);
  }
  
  .capability-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .capability-card:hover .capability-icon {
    transform: rotateY(180deg);
  }
  
  .cv-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .capability-card:hover .cv-wave {
    transform: scaleX(1);
  }
  
  /* ============================= */
  /* Process Timeline               */
  /* ============================= */
  .cv-process {
    padding: 100px 0;
    background: var(--dark-color);
    color: #fff;
  }
  
  .cv-process .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .cv-process .section-header h2 {
    color: #fff;
  }
  
  .cv-process .section-header h2 span {
    color: var(--primary-color);
  }
  .cv-process .section-header p{
    color: var(--white);
  }
  
  .process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .process-timeline .timeline-content{
    background-color: var(--primary-color);
    box-shadow: var(--primary-color);
  }

  .process-timeline .timeline-content h3{
    color: var(--white);
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50px;
    width: 3px; height: 100%;
    background: rgba(255,255,255,0.1);
  }
  
  .timeline-item {
    display: flex;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineAppear 0.8s forwards;
  }
  
  .timeline-item:nth-child(1) { animation-delay: 0.2s; }
  .timeline-item:nth-child(2) { animation-delay: 0.4s; }
  .timeline-item:nth-child(3) { animation-delay: 0.6s; }
  .timeline-item:nth-child(4) { animation-delay: 0.8s; }
  .timeline-item:nth-child(5) { animation-delay: 1s; }
  
  .timeline-marker {
    width: 100px;
    flex-shrink: 0;
    position: relative;
  }
  
  .marker-circle {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 5px solid var(--dark-color);
    box-shadow: 0 0 0 3px var(--primary-color);
  }
  
  .marker-line {
    width: 3px; height: calc(100% + 50px);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    margin: 10px auto;
  }
  
  .timeline-item:last-child .marker-line {
    display: none;
  }
  
  .timeline-content {
    flex: 1;
    padding: 20px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover .timeline-content {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
  }
  
  .timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .timeline-content p {
    color: rgba(255,255,255,0.8);
  }
  
  /* ============================= */
  /* Showcase Section               */
  /* ============================= */
  .cv-showcase {
    padding: 100px 0;
    background: #fff;
  }
  
  .showcase-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .showcase-header h2 {
    color: var(--dark-color);
  }
  
  .showcase-header h2 span {
    color: var(--primary-color);
  }
  
  .showcase-header p {
    color: rgba(0,0,0,0.7);
  }
  
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
  }
  
  .showcase-card {
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    background-color: var(--secondary-color);
    color: var(--white);
  }

  .showcase-overlay h3{
    color: var(--primary-color);
  }

  .showcase-overlay p{
    color: var(--white);
  }
  
  .showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .showcase-card.retail {
    background-image: url('../images/retail.jpg');
  }
  
  .showcase-card.manufacturing {
    background-image: url('../images/menufacture.jpg');
  }
  
  .showcase-card.healthcare {
    background-image: url('../images/healthcare.jpg');
  }
  
  .showcase-card.security {
    background-image: url('../images/security.jpg');
  }
  
  .showcase-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; padding: 30px;
    background: linear-gradient(to top, rgba(15,12,41,0.9), transparent);
    color: #fff;
    transform: translateY(100px);
    transition: all 0.5s ease;
  }
  
  .showcase-card:hover .showcase-overlay {
    transform: translateY(0);
  }
  
  /* ============================= */
  /* CTA Section                    */
  /* ============================= */
  .cv-cta {
    padding: 80px 0;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
  }
  
  .cv-cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
  }
  
  .cv-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
  }
  
  /* ============================= */
  /* Footer                         */
  /* ============================= */
  .footer {
    background: #292929;
    color: #fff;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--primary-color);
  }
  
  .footer-col p,
  .footer-col li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li:hover {
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    margin-top: 15px;
  }
  
  .social-links a {
    width: 35px; height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #fff;
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
  }
.footer-bottom p{
  color: var(--white);
}


  
  /* ============================= */
  /* Animations                     */
  /* ============================= */
  @keyframes cvTitleAppear {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cvUnderlineExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  @keyframes cvSubtitleAppear {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cvButtonPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,210,255,0.4); }
    70%     { box-shadow: 0 0 0 15px rgba(0,210,255,0); }
  }
  @keyframes eyePulse {
    from { transform: translate(-50%,-50%) scale(0.9); }
    to   { transform: translate(-50%,-50%) scale(1.1); }
  }
  @keyframes eyeMove {
    0%,100% { top:30%; left:30%; }
    25%     { top:30%; left:60%; }
    50%     { top:60%; left:60%; }
    75%     { top:60%; left:30%; }
  }
  @keyframes gridMove {
    from { background-position: 0 0; }
    to   { background-position: 600px 600px; }
  }
  @keyframes timelineAppear {
    to { opacity: 1; transform: translateY(0); }
  }