/* Base styles and variables */
:root {
  --accent-color: #03346c;
  --accent-color-light: #006eff;
  --text-dark: #222;
  --text-light: #666;
  --text-white: #fff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
}



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


h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn i {
  margin-left: 8px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text-white);
  box-shadow: 0 5px 15px rgba(0, 110, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 110, 255, 0.4);
}

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

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--text-white);
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f5f9ff 0%, #ffffff 100%);
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container {
  width: 100%;
  height: 450px;
  background: url('https://images.unsplash.com/photo-1581090464777-f3220bbe1b8b?auto=format&fit=crop&q=80&w=800') no-repeat center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(3, 52, 108, 0.7), rgba(0, 110, 255, 0.5));
  z-index: 1;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.floating-icons i {
  position: absolute;
  color: white;
  font-size: 2rem;
  opacity: 0.8;
  animation: float 6s infinite ease-in-out;
}

.floating-icons i:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
  top: 60%;
  left: 30%;
  animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
  top: 70%;
  left: 60%;
  animation-delay: 3s;
}

.floating-icons i:nth-child(5) {
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

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

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L80,144C160,160,320,192,480,192C640,192,800,160,960,154.7C1120,149,1280,171,1360,181.3L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #fff;
}

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

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color-light);
}

.icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-container i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.service-card p {
  color: var(--text-light);
}

/* AI Innovation Section */
.ai-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.ai-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ai-image {
  flex: 1;
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1534723328310-e82dad3ee43f?auto=format&fit=crop&q=80&w=800') no-repeat center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(3, 52, 108, 0.8), rgba(0, 110, 255, 0.6));
}

.ai-features {
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-right: 20px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Industries Section */
.industries {
  padding: 100px 0;
  background: #fff;
}

.industry-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry-card {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-color);
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: var(--gradient);
}

.industry-card:hover i,
.industry-card:hover h3 {
  color: white;
}

.industry-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.industry-card h3 {
  font-size: 1.1rem;
  transition: var(--transition);
}

/* Technologies Section */
.technologies {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.tech-category {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.tech-category h3 {
  display: flex;
  align-items: center;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.tech-category h3 i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  padding: 8px 15px;
  background: linear-gradient(135deg, #e9f1ff 0%, #d1e3ff 100%);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.tech-tags span:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-us {
  padding: 100px 0;
  background: #fff;
}

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

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  background: white;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color-light);
}

.benefit-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.benefit-card p {
  color: var(--text-light);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-info {
  margin-top: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 15px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}

.contact-form button {
  width: 100%;
}
