 

        body {
            background: #f8f9fa;
            font-family: Arial, sans-serif;
        }

        .section-title h2 {
            font-size: 40px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        .about_comp_data {
            font-size: 27px;
            text-align: center;
            margin-bottom: 40px;
        }

        .our_context h2 {
            font-size: 22px;
            color: #0099cc;
        }

        .our_context p {
            font-size: 14px;
        }

        .no-pad {
            padding: 0;
        }

        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .fadeInLeft {
            animation-name: fadeInLeft;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translate3d(-100%, 0, 0);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        img {
            border-radius: 10px;
            max-width: 100%;
            height: auto;
        }

        .communication-block {
            text-align: center;
        }

        .communication-block img {
            width: 50px;
            margin-bottom: 10px;
        }

        .communication-block h2 {
            font-size: 22px;
            color: #0099cc;
        }

        .communication-block p {
            font-size: 14px;
        }

         

        .story-area {
   padding: 60px 0;
}

.modern-box {
   background: #fff;
   border-radius: 15px;
   padding: 30px 20px;
   text-align: center;
   box-shadow: 0 8px 20px rgba(0,0,0,0.1);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
   border: 1px solid #eaeaea;
   position: relative;
}

.story-icon img {
   width: 70px;
   height: 70px;
   background: #fff;
   padding: 10px;
   border-radius: 50%;
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   margin-bottom: 20px;
}

.modern-box h3 {
   font-size: 20px;
   font-weight: 600;
   margin-bottom: 15px;
   color: #222;
}

.modern-box p {
   font-size: 15px;
   color: #555;
   line-height: 1.7;
}

.modern-box:hover {
   transform: translateY(-12px) scale(1.03);
   box-shadow: 0 15px 35px rgba(0,0,0,0.15);
   background: linear-gradient(135deg, #fdfdfd, #f1f1f1);
}

@media(max-width:768px) {
   .modern-box {
      padding: 20px 15px;
   }
   .story-icon img {
      width: 60px;
      height: 60px;
   }
}

.th-team.team-box {
    background: #fff;
    border-radius: 12px; 
     
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.th-team.team-box:hover {
    transform: translateY(-10px);
    
}

.team-img img {
    width: 120px;         
    height: 120px;            
    object-fit: contain;      
    border-radius: 8px;    
   
    padding: 8px;
    background: #fff;
    display: block;
    margin: 0 auto;
}

.breadcumb-wrapper {
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat;
    padding: 150px 0;  
}

.breadcumb-wrapper {
    background-size:100% auto;  
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;  
}

 
.card.custom-border {
   border:30px solid #007399;
   border-radius: 20px;
}
.card.custom-border img {
   border-top-left-radius:50px;
   border-top-right-radius:50px;
}

 /* web-development.css */

.unic-services {
  position: relative;
  overflow: hidden;
}

.unic-services .unic-service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
}

.unic-services .unic-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.unic-services .service-img img {
  height: 80px;
  transition: all 0.3s ease;
}

.unic-services .unic-service-card:hover .service-img img {
  transform: scale(1.1);
}

.unic-services .service-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.unic-services .service-content p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.unic-services .unic-read-more {
  background: linear-gradient(90deg, #3498db, #9b59b6);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.unic-services .unic-read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
  color: white;
}

/* Scoped image styles */
.unic-services .img-fluid {
  max-height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .unic-services .img-fluid {
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .unic-services .img-fluid {
    margin-bottom: 2rem;
  }
}
 
    /* software development */
      * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
       
        .products-section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
       
        .products-heading {
            font-size: 32px;
            margin-bottom: 40px;
            color: #333;
        }
       
        .products-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
       
        .product-item {
            width: calc(16.666% - 20px);
            min-width: 120px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
       
        .product-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #f0f0f0;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid #ddd;
        }
       
        .product-image img {
            width: 60%;
            height: auto;
            object-fit: contain;
        }
       
        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: #444;
            text-align: center;
        }
       
        @media (max-width: 1024px) {
            .product-item {
                width: calc(25% - 20px);
            }
        }
       
        @media (max-width: 768px) {
            .product-item {
                width: calc(33.333% - 20px);
            }
        }
       
        @media (max-width: 480px) {
            .product-item {
                width: calc(50% - 20px);
            }
           
            .products-heading {
                font-size: 24px;
                margin-bottom: 30px;
            }
        }

         body {
        background-color: #f8f9fa;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        margin: 0;
        padding: 0;
    }

    .service-header {
        padding: 80px 0 30px;
        text-align: center;
    }

    .service-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #007399;
        margin-bottom: 15px;
    }

    .service-header p {
        font-size: 18px;
        color: #666;
        max-width: 750px;
        margin: auto;
    }

    .service-card {
        border-radius: 20px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease-in-out;
    }

    .service-card:hover img {
        transform: scale(1.1); /* Zoom in image */
    }

    .service-card-content {
        padding: 25px;
        flex: 1;
    }

    .service-card-content h5 a {
        color: #007399;
        font-weight: bold;
        font-size: 22px;
        text-decoration: none;
    }

    .service-card-content h5 a:hover {
        text-decoration: underline;
    }

    .service-card-content p {
        color: #555;
        font-size: 15px;
        margin: 10px 0;
    }

    .service-card-content ul {
        padding-left: 18px;
        margin: 0;
    }

    .service-card-content ul li {
        font-size: 15px;
        margin-bottom: 6px;
    }

    @media (max-width: 767px) {
        .service-header h2 {
            font-size: 32px;
        }

        .service-header p {
            font-size: 16px;
        }
    }

         h4 span {
         color: #007399;
      }
      .icon-box {
         background: #fff;
         padding: 20px;
         border-radius: 15px;
         box-shadow: 0 4px 10px rgba(0,0,0,0.1);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .icon-box:hover {
         transform: translateY(-10px);
         box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      }


      /* ui ux design */
         .ui-ux-section {
        background-color: #f8f9fa;
    }
   
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
   
    .section-description {
        font-size: 1.1rem;
        color: #495057;
        line-height: 1.6;
    }
   
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
       
        .section-description {
            font-size: 1rem;
        }
    }
 
    /* section 2 */
 
   /* Your existing CSS remains the same */
    .tech-stack-section {
        overflow: hidden;
    }
   
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        animation: fadeIn 1s ease-out;
    }
   
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        animation: fadeIn 1s ease-out 0.2s forwards;
        opacity: 0;
    }
   
    .tech-card {
        background: white;
        transition: all 0.4s ease;
        border: 1px solid rgba(0,0,0,0.1);
        animation: cardEntrance 0.6s ease-out forwards;
        opacity: 0;
    }
   
    .tech-card:nth-child(1) {
        animation-delay: 0.4s;
    }
   
    .tech-card:nth-child(2) {
        animation-delay: 0.6s;
    }
   
    .tech-card:nth-child(3) {
        animation-delay: 0.8s;
    }
   
    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
   
    .icon-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #f8f9fa;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
   
    .tech-card:hover .icon-circle {
        transform: scale(1.1);
    }
   
    .html-bg {
        background-color: #e34f26;
    }
   
    .bootstrap-bg {
        background-color: #7952b3;
    }
   
    .jquery-bg {
        background-color: #0769ad;
    }
   
    .tech-title {
        color: #2c3e50;
        font-size: 1.5rem;
    }
   
    .tech-description {
        color: #6c757d;
        font-size: 0.95rem;
    }
   
    /* New button styles */
    .btn-get-started {
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
   
    .html-btn {
        background-color: #e34f26;
    }
   
    .bootstrap-btn {
        background-color: #7952b3;
    }
   
    .jquery-btn {
        background-color: #0769ad;
    }
   
    .btn-get-started:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        opacity: 0.9;
    }
   
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
   
    @keyframes cardEntrance {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
   
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.8rem;
        }
       
        .tech-card {
            margin-bottom: 20px;
        }
       
        .tech-card:nth-child(1),
        .tech-card:nth-child(2),
        .tech-card:nth-child(3) {
            animation-delay: 0.2s;
        }
       
        .btn-get-started {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
    }
 
    /* gap */
    .ui-ux-section {
    background: #f7f9fc;
}
 
.section-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
}
 
.ui-ux-section img {
    transition: transform 0.3s ease-in-out;
}
 
.ui-ux-section img:hover {
    transform: scale(1.05);
}
 
.ui-ux-section ul {
    padding-left: 0;
}
 
.ui-ux-section li i {
    font-size: 1rem;
}
 
/* codeigniter development */
.dev-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
 
.section-heading {
  margin-bottom: 50px;
}
 
.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}
 
.section-heading .underline {
  width: 80px;
  height: 3px;
  background: #3498db;
  margin: 15px auto 0;
}
 
.feature-img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
 
.feature-img:hover {
  transform: translateY(-5px);
}
 
.feature-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}
 
.details-text {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}
 
 
 
@media (max-width: 992px) {
  .feature-content, .details-text {
    text-align: center;
  }
}
 
 
 
/* new */
/* CodeIgniter page  */
 :root {
  /* --primary: #34c3f3; */
  --accent: #ff6b6b;
  --white: #ffffff;
  --light: #f5f7fa;
 
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
 
body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}
 
a {
  color: var(--primary);
  text-decoration: none;
}
 
header {
  /* background: linear-gradient(90deg, var(--primary), #6dd5fa); */
  /* padding: 20px 0; */
  text-align: center;
  color: white;
}
 
header h1 {
  font-size: 2.5rem;
}
 
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 5%;
  background: linear-gradient(to right, rgba(52,195,243,0.1), rgba(255,255,255,0.7)), url('https://thecanatech.com/public/assets/img/cd1.png') no-repeat right center;
  background-size: contain;
}
 
.hero-text {
  flex: 1;
  max-width: 600px;
}
 
.hero-text h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}
 
.hero-text h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  bottom: -10px;
  left: 0;
}
 
.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 15px;
}
 
.section-title {
  text-align: center;
  padding: 60px 0 30px;
}
 
.section-title h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
 
.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
 
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns */
  gap: 25px;
  padding: 0 5% 60px;
}
 
/* Responsive adjustments */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}
 
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}
 
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: 0.4s ease;
  text-align: center;
}
 
.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
 
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}
 
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  
}
 
.feature-card p {
  font-size: 0.95rem;
  color: #666;
}
 
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
 
.wave {
  /* margin-top: -50px; */
  padding: 10px;
}
 
 
    /* section 2 */
    .services-section {
      background: linear-gradient(135deg, #e0f7fa, #ffffff);
      padding: 60px 5%;
    }
 
    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }
 
    .service-column ul {
      list-style: none;
      padding: 0;
    }
 
    .service-column li {
      background: #fff;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      transition: 0.3s ease;
    }
 
    .service-column li i {
      margin-right: 10px;
      color: var(--primary);
      font-size: 1.2rem;
      width: 25px;
    }
 
    .service-column li:hover {
      transform: translateX(5px);
      background: linear-gradient(to right, #34c3f3, #6dd5fa, #ffffff);
      color: #003349;
      font-weight: 600;
    }
 
  .pdev{
    font-size:14px;
    font-family:Arial;
 
  }
 
    @media (max-width: 768px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
      }
      .hero-text h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

        /* angular js development */
 
    .angular-icons-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
 
.angular-icons-section h2 {
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 700;
}
 
.icon-row {
  display: flex;
  justify-content: center;
}
 
.icon-col {
  display: flex;
  justify-content: center;
}
 
.icon-wrapper {
  text-align: center;
  max-width: 200px;
}
 
.icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 50px;
}
 
.icon-wrapper h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}
 
@media (max-width: 768px) {
  .icon-circle {
    width: 90px;
    height: 90px;
    font-size: 40px;
  }
 
  .icon-col {
    margin-bottom: 30px;
  }
}
 
/* section 2 angjs */
.tech-logos-section {
  padding: 60px 0;
  background-color: #ffffff;
}
 
.tech-logo {
  padding: 0 30px;
  text-align: center;
}
 
.tech-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%) brightness(0.5); */
  transition: all 0.3s ease;
}
 
.tech-logo img:hover {
  filter: none;
  transform: scale(1.1);
}
 
@media (max-width: 768px) {
  .tech-logo {
    padding: 15px;
  }
  .tech-logo img {
    height: 60px;
  }
}
 
/* section 3 anjs */
.single-row-services {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1200px;
  justify-content: center;
}
 
.service-box {
  min-width: 200px;
  text-align: center;
  padding: 20px;
  margin: 0 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
 
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
 
.service-icon {
  width: 50px;
  height: 50px;
  background: #007399;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  font-weight: bold;
}
 
.service-box h4 {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
 
@media (max-width: 992px) {
  .single-row-services {
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-box {
    min-width: 160px;
    margin: 10px;
    flex: 1 0 calc(33% - 20px);
  }
}
 
@media (max-width: 768px) {
  .service-box {
    flex: 1 0 calc(50% - 20px);
  }
}
 
@media (max-width: 576px) {
  .service-box {
    flex: 1 0 100%;
    max-width: 280px;
  }
}



/* contact button */
   .readon.learn-more.submit {
    background-color: #007bff;      /* Customize your button color */
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.readon.learn-more.submit:hover {
    background-color: #0056b3;      /* Hover color */
}



/* Artificial Intelligence page*/

/* AI Banner */
.ai-banner {
  position: relative;
  background: url('../img/artificial/banner.png') no-repeat center center/cover;
  height:450px;
  display: flex;
  align-items: center;
  color: #fff;
}
.ai-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.ai-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 30px;
}
.ai-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.ai-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* Section 2 */
.ai-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 5%;
  background-color: #fff;
}
.ai-image {
  flex: 1 1 40%;
  max-width: 500px;
  position: relative;
}
.ai-image .corner-decor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ai-image .corner-decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:150px;
  height:15px;
  background: linear-gradient(to right, #00B4DB, #00FF72);
}
.ai-image .corner-decor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:15px;
  height:150px;
  background: linear-gradient(to bottom, #00B4DB, #00FF72);
}
.ai-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.ai-text {
  flex: 1 1 60%;
  padding-left: 40px;
}
.ai-text small {
  color: #f37021;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}
.ai-text h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}
.ai-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

/* Section Utility */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}
.section-padding {
  padding: 60px 20px;
}
.section-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0a0a0a;
}

/* Process & Benefits */
.ai-process, .ai-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.process-div, .benefits-div {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  text-align: center;
  width: 220px;
  transition: all 0.3s ease-in-out;
}
.process-div:hover, .benefits-div:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.process-content img, .benefits-content img {
  max-width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.process-div:hover img, .benefits-div:hover img {
  transform: scale(1.1);
}
.process-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-content p, .benefits-content p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .ai-content h1 {
    font-size: 36px;
  }
  .ai-content p {
    font-size: 16px;
  }
  .ai-section {
    flex-direction: column;
    text-align: center;
  }
  .ai-text {
    padding-left: 0;
    margin-top: 30px;
  }
}



 /* machine learning */
 
  .ai-node {
    width: 12px;
    height: 12px;
    background: #fc00ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
   .text-white {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
 
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }
 
 
  /* section 3 */
 .hover-effect {
    transition: all 0.3s ease;
  }
 
  .hover-effect:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }
 
  .card {
    border: 1px solid #e0e0e0 !important;
  }
 
  /* section 4 */
  .techni-card {
    background-color: #f5f5f5; /* Light grey background */
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px; /* Reduced padding */
    height: 100%;
    transition: all 0.3s ease;
  }
 
  .tech-title {
    color: #000; /* Black text */
    font-size:20px; /* Smaller font size */
    margin-bottom: 10px;
    font-weight: 600;
  }
 
  .tech-details {
    color: #333; /* Dark grey text */
    line-height: 1.5;
  }
 
  .tech-details p.small {
    font-size: 0.875rem; /* Smaller text size */
    margin-bottom: 0;
  }
 
  .techni-card:hover {
    background-color: #087da1;
    border-color: #087da1;
  }
 
  .techni-card:hover .tech-title,
  .techni-card:hover .tech-details,
  .techni-card:hover .tech-details p {
    color: white;
  }

          :root {
            --primary: #2a5ee8;
            --secondary: #1a1a2e;
            --accent: #e94560;
            --light: #f8f9fa;
            --dark: #16213e;
            --text: #333333;
            --text-light: #6c757d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }
        
        .service-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .service-section:nth-child(even) {
            background-color: var(--light);
        }
        
        .service-title {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .service-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
        }
        
        .service-img {
            border-radius: 12px;
/*            box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
            transition: transform 0.3s ease;
            height: 30%;
            object-fit: cover;
        }
        
        .service-img:hover {
            transform: translateY(-5px);
        }
        
        .service-description {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .service-features {
            list-style-type: none;
            padding-left: 0;
        }
        
        .service-features li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .service-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .img-container {
            height: 250px;
            overflow: hidden;
        }
        
        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .img-container img {
            transform: scale(1.05);
        }
        
        @media (max-width: 767.98px) {
            .service-section {
                padding: 50px 0;
            }
            
            .service-img {
                margin-bottom: 30px;
            }
        }


/*        softwear devlopment*/

       .info-box {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      height: 100%;
      transition: 0.3s ease;
      background-color: #f9f9f9;
    }
    .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .icon-box {
      font-size: 35px;
      margin-right: 15px;
      color: #0d6efd;
      min-width: 40px;
    }
    .text-box h5 {
      margin: 0 0 5px;
      font-weight: 600;
      font-size: 18px;
    }
    .text-box p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }
 
    /* section 4 */
     /* Card 1 */
    .cost-benefit-card {
      transition: 0.3s;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      height: 100%;
    }
 
    .cost-benefit-card:hover {
      background-color: #f3f6fa;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
 
    .cost-icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
 
    /* Card 2 */
    .features-card {
      transition: 0.3s;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      height: 100%;
    }
 
    .features-card:hover {
      background-color: #eefaf1;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
 
    .features-icon {
      font-size: 40px;
      color: #198754;
      margin-bottom: 15px;
    }
 
    /* Card 3 */
    .ownership-card {
      transition: 0.3s;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      height: 100%;
    }
 
    .ownership-card:hover {
      background-color: #fff6f0;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
 
    .ownership-icon {
      font-size: 40px;
      color: #fd7e14;
      margin-bottom: 15px;
    }
 
    /* Common text */
    .card-heading {
      font-weight: bold;
      margin-bottom: 10px;
    }
 
    .card-paragraph {
      font-size: 14px;
      color: #333;
    }

/*portfoio*/
.project-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.animate-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/*egovernce*/
 .banner-section {
    height:50vh;
  }

  @media (max-width: 767px) {
    .banner-section {
      height:20vh; 
    }


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

.bounce-img {
  animation: bounceUpDown 1s infinite ease-in-out;
}

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

    .bounce-img {
      animation: bounceUpDown 2s infinite ease-in-out;
    }
 

  }
   .gov-project-cards .border:hover,
    .what-sets-us-apart .bg-white:hover {
      transform: translateY(-5px);
      transition: all 0.3s ease-in-out;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    }
    .section-title {
      font-size: 26px;
      color: #f37d22;
    }


     /* Base Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
}

/* Heading Styles */
.heading-primary {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #212529;
}

.text-highlight, .highlight {
  color: #007bff;
  font-weight: 700;
}

/* Section Styles */
.page-container {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-in-out;
}

.section.reverse {
  flex-direction: row-reverse;
}

/* Text and Images */
.section img {
  width: 100%;
  max-width: 500px;
  flex: 1 1 45%;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.text-content {
  flex: 1 1 45%;
  padding: 1rem;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
}

/* Progress Bars */
.progress-bars {
  margin-top: 2rem;
}

.bar {
  margin-bottom: 1rem;
}

.bar span {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.progress {
  background-color: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
}

.progress1 > div {
  background-color: #007bff;
  height: 20px;
  color: white;
  text-align: right;
  padding-right: 5px;
  line-height: 20px;
  border-radius: 20px;
}

/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #343a40;
}

/* Process Section */
.process-section {
  background-color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.process-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.process-step {
  background-color: #007bff;
  color: white;
  width: 150px;
  padding: 1rem;
  border-radius: 10px;
  animation: popIn 0.5s ease forwards;
  opacity: 0;
}

.process-step .step-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.process-step .step-title {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }

  .text-content {
    padding: 0;
  }
}
 body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .section-title p {
      font-size: 1.1rem;
      color: #666;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .flip-box {
      background-color: transparent;
      width: 300px;
      height: 350px;
      perspective: 1000px;
    }

    .flip-box-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-inner {
      transform: rotateY(180deg);
    }

    .flip-box-front, .flip-box-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 20px;
      background: white;
    }

    .flip-box-front {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .flip-box-back {
      transform: rotateY(180deg);
      background-color: #003366;
      color: white;
    }

    .flip-box svg {
      width: 50px;
      height: 50px;
      margin-bottom: 20px;
      fill: #0073e6;
    }

    .flip-box h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .flip-box p {
      font-size: 0.95rem;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 15px;
    }

    .feature-list li::before {
      content: "✔ ";
      color: #00ffcc;
    }

    @media (max-width: 768px) {
      .services-grid {
        flex-direction: column;
        align-items: center;
      }
    }






    