/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* Header Section Code Here */
/* Reset and base styles */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Reset links */
/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7vh;
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

/* Logo */
.logo img {
  width: 55px;
  height: auto;
}

/* Menu Toggle (Checkbox hidden) */
#menu-toggle {
  display: none;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #009943;
  cursor: pointer;
}

/* Navigation Menu */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  position: relative;
  margin: 0 20px;
}

nav ul li a {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  color: #333;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: #009943;
}

/* Submenu Styles */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 999;
}

nav ul li:hover .submenu {
  display: flex;
}

.submenu li {
  border-bottom: 1px solid #eee;
}
.submenu li a {
  padding: 12px 16px;
  display: block;
  font-size: 16px;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .logo img {
  width:30px;
  height: auto;
}
  header {
    flex-wrap: wrap;
    height: auto;
  }

  .logo {
    width: 50%;
  }

  .menu-icon {
    display: block;
    width: 50%;
    text-align: right;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    animation: slideDown 0.3s ease forwards;
  }

  #menu-toggle:checked + .menu-icon + nav ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
  }

  nav ul li a {
    padding: 12px 20px;
    width: 100%;
    display: block;
  }

  /* Submenu inside responsive menu */
  .submenu {
    position: relative;
    background: #f9f9f9;
    box-shadow: none;
  }

  nav ul li:hover .submenu {
    display: flex;
  }
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* Home Page Code Here... */
/* Theme Color */
:root {
  --green: #00c853;
  --dark: #0d0d0d;
  --light: #f9f9f9;
}

/* Hero Section */
.hero-alt {
  background-color: var(--light);
  padding: 80px 20px;
}

.hero-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.Main_Img {
  width: 450px;
}

.hero-text {
  flex: 1;
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
}

.hero-text h1 {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  text-align: center;
  padding: 20px;
  animation: fadeInRight 1s ease-in-out;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  mix-blend-mode: multiply;
}

.btn-cta {
  background-color: var(--green);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #009943;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-text, .hero-image {
    flex: 100%;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-cta {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .btn-cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-container {
    padding: 10px;
  }
}


/* Root Color Overrides */
:root {
  --green: #00c853;
  --dark: #0d0d0d;
  --light: #f9f9f9;
}

.custom-card-section {
  padding: 30px 20px;
  background: var(--light);
  text-align: center;
  margin: 25px 0px;
}

.custom-card-section h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 50px;
}

.custom-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card */
.custom-card {
  position: relative;
  width: 260px;
  height: 320px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  text-align: left;
}

.custom-card:hover {
  transform: translateY(-10px);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 0;
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--green);
  color: white;
  font-weight: bold;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Card Text */
.card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.card-content p {
  font-size: 15px;
  line-height: 1.4;
  color: #e0e0e0;
}

/* Background Images */
.card1 {
  background-image: url('./assts/Custom_Software.avif');
}

.card2 {
  background-image: url('./assts/Android_Dev.avif');
}

.card3 {
  background-image: url('./assts/Cloud_Solution.webp');
}

.card4 {
  background-image: url('./assts/Web_Development.webp');
}

.card5 {
  background-image: url('./assts/Dedicated_Team.webp');
}

/* Responsive */
@media (max-width: 768px) {
  .custom-card {
    width: 100%;
    max-width: 90%;
  }
}

/* About Section */
/* xxxxxxxxxxxxx */

.about-modern {
  background-color: #f9f9f9;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  background-color: #fdfdfd;
  /* Fallback */
}

.about-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 60px 0px 30px 0px;
}

.about-modern h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-modern h2 span {
  color: #00c853;
}

.about-intro {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Mission & Vision Boxes */
.about-mv-boxes {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.mv-box {
  background-color: #f4f4f4;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-box img {
  width: 60px;
  margin-bottom: 15px;
}

.mv-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00c853;
}

/* Highlights Grid */
.about-highlights h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #00c853;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.highlight-card {
  background-color: #eafcf2;
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
  width: 40px;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* Button */
.btn-about {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #00c853;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-about:hover {
  background-color: #009846;
}


/* Client Logos (optional section styling) */

.about-alt {
  background: linear-gradient(to right, #f9f9f9, #e0f7ed);
  padding: 60px 20px;
  text-align: center;
}

.about-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark);
  font-weight: 600;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}


/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/*  Service Page Style code Here */
.services-colored {
  background: linear-gradient(to bottom, #f9f9f9, #edf7f5);
  padding: 80px 20px;
  text-align: center;
}

.services-colored h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #00c853;
}

.services-colored p {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #444;
}

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

.service-color-card {
  width: 280px;
  padding: 40px 20px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-color-card:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  font-size: 28px;
  background-color: #e0f7ec;
  color: #00c853;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-color-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.service-color-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Optional background shades */
.service-color-card.blue .icon-circle {
  background: #e3f2fd;
  color: #2196f3;
}

.service-color-card.green .icon-circle {
  background: #e0f7fa;
  color: #009688;
}

.service-color-card.orange .icon-circle {
  background: #fff3e0;
  color: #ff9800;
}

.service-color-card.teal .icon-circle {
  background: #e0f2f1;
  color: #00796b;
}

.service-color-card.purple .icon-circle {
  background: #ede7f6;
  color: #673ab7;
}

.service-color-card.gray .icon-circle {
  background: #f5f5f5;
  color: #616161;
}

/*  XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/*  Contact Us Page Style code Here */

/* Reset and base styles */
/* * {
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
      margin: 0;
      background: #f0f7f1;
      color: #2a3a24;
    } */

.contact-container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.Contact_head {
  text-align: center;
  margin-top: 10px;
}

.contact-info,
.contact-form {
  flex: 1 1 400px;
  padding: 40px;
}

.contact-info {
  background: #c2eec6;
  /* Light green */
  color: #1b2e0b;
}

.contact-info h2 {
  margin-top: 0;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.info-item svg {
  fill: #1b2e0b;
  width: 24px;
  height: 24px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #29ad34;
  /* darker green */
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 2px solid #a7dca5;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #389f41;
  outline: none;
  background: #ecf5d8;
}

.contact-form button {
  background: #499f38;
  color: white;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 700;
}

.contact-form button:hover {
  background: #2f8b3b;
}

@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* .....Footer Section Style..... */

.footerpage {
  background-color: var(--light);
  color: #0a0909;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-container > div {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-about h3 {
  color: #00c853;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #00c853;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #2b2727;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00c853;
}

.footer-contact p,
.footer-about p {
  font-size: 15px;
  color: #1a1818;
  line-height: 1.5;
}

/* Social Icons */
.footer-social {
  display: flex;
  
  align-items: center;
  flex-direction: column;
}

.footer-social a {
  color: #807e7e;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-block;
}

.footer-social a:hover {
  color: #00c853;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-social {
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-social h4 {
    width: 100%;
  }

  .footer-social a {
    font-size: 22px;
  }
}


/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* blog page */

  /* :root {
            --green: #00c853;
            --dark: #0d0d0d;
            --light: #f9f9f9;
        } */
/* 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        #blogPage {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }

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

        .blog-header {
            background-color: var(--light);
            color: var(--dark);
            padding: 2rem 0;
            text-align: center;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .categories {
            background-color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .categories h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--dark);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 2px solid transparent;
            transition: all 0.5s ease;
            cursor: pointer;
            border-color: var(--green);
        }

        .category-card:hover {
            background-color: rgb(216, 206, 206);
            transform: translateY(-2px);
        }

        .category-card h3 {
            color: var(--green);
            margin-bottom: 0.5rem;
        }

        .articles-section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: var(--dark);
        }

        .article {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            background-color: #f9f9f9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .article:hover {
            transform: translateY(-5px);
        }

        .article:nth-child(even) {
            flex-direction: row-reverse;
        }

        .article-image1,
        .article-image2,
        .article-image3,
        .article-image4 {
            flex: 1;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .article-image {
            flex: 1;
            height: 250px;

        }

        .article-content {
            flex: 1;
            padding: 2rem;
        }

        .article-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
            line-height: 1.3;
        }

        .article-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            background-color: var(--green);
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .read-more:hover {
            background-color: #00a844;
        }

        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #888;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        @media (max-width: 768px) {
            .article {
                flex-direction: column !important;
            }

            .article-image {
                height: 200px;
            }

            .article-content {
                padding: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }
        }