/* Modern Professional Styling for CT WebDev Agency */
/* Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --darker: #1b2d3f;
  --dark: #1f3247;
  --primary: #0aadac;
  --primary-dark: #077978;
  --primary-darker: #055756;
  --light: #3bbdbd;
  --lighter: #85d6d6;
  --grey: #5f6979;
  --secondary: #90B981;
  --white: #ffffff;
  --very-light: #b6e6e6;
  --text-light: #f8fafc;
  --shadow: rgba(20, 34, 47, 0.1);
  --shadow-hover: rgba(20, 34, 47, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--light));
  --gradient-hero: linear-gradient(135deg, var(--dark), var(--darker));
}

/* Typography */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--light);
  background: var(--darker);
  overflow-x: hidden;
}

/* QUILL EDITOR */
.ql-toolbar.ql-snow {
  background-color: var(--very-light);
}

.ql-editor {
  min-height: 200px;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 1.6rem;
  border: .5px solid var(--very-light);
}

/* placeholder color */
.ql-editor.ql-blank::before {
  color: var(--very-light);
}

/* Layout Components */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

/* Enhanced Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(34, 56, 79, 0.95);
  background: var(--dark);
  backdrop-filter: blur(20px);
  border-bottom: .5px solid rgba(133, 214, 214, 0.1);
  transition: all 0.3s ease;
}

.nav_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  max-width: 120rem;
  margin: 0 auto;
}

.nav_wrapper_logo_brand {
  display: block;
  width: 6rem;
  height: 6rem;
  transition: transform 0.3s ease;
}

.nav_wrapper_logo_brand:hover {
  transform: scale(1.05);
}

.nav_wrapper_logo_brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav_wrapper_ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav_wrapper_ul_li_a {
  color: var(--lighter);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav_wrapper_ul_li_a:hover {
  color: var(--lighter);
  background: rgba(133, 214, 214, 0.1);
  transform: translateY(-2px);
}

.nav_wrapper_ul_li_a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lighter);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav_wrapper_ul_li_a:hover::before {
  width: 80%;
}

.language-links {
  display: flex;
  gap: 0.5rem;
}

.lang-link {
  color: var(--primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.lang-link:hover,
.lang-link.active {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 173, 172, 0.3);
}

.nav_wrapper_toggle {
  display: none;
  cursor: pointer;
  background: var(--primary);
  border: none;
  border-radius: 0.5rem;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.nav_wrapper_toggle:hover {
  cursor: pointer;
  background: var(--light);
  transform: scale(1.05);
}

.nav_wrapper_toggle:hover {
  background: var(--lighter);
  transform: scale(1.05);
}

.nav_wrapper_toggle i {
  color: var(--dark);
  font-size: 2rem;
}

/* Hero Section */
.header {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
}

.header_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.header_data_contents {
  flex: 1;
  max-width: 60rem;
}

.header_data_contents_top {
  color: var(--lighter);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  /* text-transform: uppercase;
  letter-spacing: 3px; */
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.header_data_contents_heading {
  color: var(--lighter);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.header_data_contents_bottom {
  color: var(--lighter);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.header_data_contents_links {
  display: flex;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-dark {
  background: var(--very-light);
  color: var(--darker);
  border: 2px solid var(--very-light);
}

.btn-dark:hover {
  background: var(--lighter);
  border-color: var(--lighter);
  transform: translateY(-2px);
}

.btn-default {
  background: transparent;
  color: var(--very-light);
  border-color: var(--very-light);
}

.btn-default:hover {
  background: var(--very-light);
  color: var(--darker);
  transform: translateY(-2px);
}

.header_img {
  flex: 1;
  max-width: 50rem;
  opacity: 0;
  animation: fadeInRight 1s ease 0.5s forwards;
}

.header_img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(20, 34, 47, 0.3));
}

/* About Section */
.about {
  background: var(--darker);
  padding: 10rem 4rem;
  position: relative;
}


.heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--lighter);
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.heading::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about_info {
  max-width: 60rem;
}

.about_info_msg {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--lighter);
  margin-bottom: 4rem;
  text-align: justify;
}

.about_info_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(133, 214, 214, 0.2);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.about_info_block:hover {
  background: rgba(133, 214, 214, 0.05);
  padding-left: 1rem;
  border-radius: 0.5rem;
}

.about_info_block_left {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about_info_block_right {
  font-size: 1.6rem;
  color: var(--light);
}

.about_info_block_right a {
  color: var(--lighter);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about_info_block_right a:hover {
  color: var(--light);
}

.about_info_socials {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  justify-content: center;
}

.about_info_socials_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: rgba(10, 173, 172, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about_info_socials_circle:hover {
  background: var(--lighter);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(10, 173, 172, 0.3);
}

.about_info_socials_circle i {
  font-size: 2.5rem;
  color: var(--light);
  transition: color 0.3s ease;
}

.about_info_socials_circle:hover i {
  color: var(--dark);
}

/* Tech Stack */
.header_tech {
  max-width: 40rem;
}

.heading2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--lighter);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: capitalize;
}

.header_tech_icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 4rem;
}

.header_tech_icons i,
.header_tech_icons img {
  font-size: 4rem;
  width: 4rem;
  height: 4rem;
  color: var(--light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header_tech_icons img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(17%) saturate(1520%) hue-rotate(130deg) brightness(86%) contrast(85%);
}

.header_tech_icons i:hover,
.header_tech_icons img:hover {
  color: var(--lighter);
  transform: scale(1.2) translateY(-5px);
}

/* Features Section */
.features {
  background: var(--dark);
  padding: 10rem 4rem;
  position: relative;
}


.features_col {
  text-align: center;
  padding: 4rem 2rem;
  margin: 2rem;
  background: rgba(133, 214, 214, 0.05);
  border-radius: 1.5rem;
  border: 1px solid rgba(133, 214, 214, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features_col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features_col:hover::before {
  transform: scaleX(1);
}

.features_col:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(20, 34, 47, 0.3);
  background: rgba(133, 214, 214, 0.1);
}

.features_col i {
  font-size: 4rem;
  color: var(--light);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.features_col:hover i {
  color: var(--lighter);
  transform: scale(1.1);
}

.features_col h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--lighter);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.features_col p {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--light);
  /* text-align: justify; */
}

/* Services Section */
.services {
  background: var(--darker);
  padding: 10rem 4rem;
  position: relative;
}


.services_col {
  background: var(--dark);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  margin: 1.5rem auto;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  box-shadow: 0 4px 10px rgba(10, 173, 172, 0.2);
  max-width: 32rem;
}


.services_col:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(10, 173, 172, 0.3);
}

.services_col_icon {
  margin-bottom: 2rem;
}

.services_col_icon i {
  font-size: 4rem;
  color: var(--lighter);
  transition: all 0.3s ease;
}

.services_col:hover .services_col_icon i {
  transform: scale(1.05);
}

.services_col_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--lighter);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.services_col_p {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--light);
  /* text-align: justify; */
}

.services_col_price {
  color: var(--very-light);
  margin-top: 3rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.services_col_stack {
  font-size: 1.2rem;
  color: var(--lighter);
  margin: 0 auto;
}

/* Products Section */
.products {
  background: var(--dark);
  padding: 10rem 4rem;
  position: relative;
}

.products_description {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--light);
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.products_card {
  background: var(--darker);
  border-radius: 1.5rem;
  padding: 0;
  margin: 2rem auto;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(133, 214, 214, 0.1);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(20, 34, 47, 0.2);
  max-width: 35rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.products_card:hover::before {
  transform: scaleX(1);
}

.products_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 173, 172, 0.2);
  border-color: rgba(133, 214, 214, 0.3);
}

.products_card_image {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}

.products_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.products_card:hover .products_card_image img {
  transform: scale(1.05);
}

.products_card_content {
  padding: 1rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products_card_title {
  margin-bottom: .5rem;
}

.products_card_title a {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--lighter);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
}

.products_card_title a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light);
  transition: width 0.3s ease;
}

.products_card_title a:hover {
  color: var(--light);
  transform: translateX(5px);
}

.products_card_title a:hover::after {
  width: 100%;
}

.products_card_text {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--light);
  margin: 0;
}

/* Testimonials */
.testimonials {
  background: var(--gradient-hero);
  padding: 10rem 4rem;
}

.testimonial_card {
  background: var(--dark);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin: 2rem;
  text-align: center;
  border: 1px solid rgba(133, 214, 214, 0.1);
  transition: all 0.3s ease;
}

.testimonial_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(20, 34, 47, 0.3);
}

.testimonial_card img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.testimonial_card p {
  font-size: 1.6rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.testimonial_card h4 {
  color: var(--lighter);
  font-size: 1.6rem;
  font-weight: 600;
}

/* Why Us */
.why-us {
  background: var(--darker);
  padding: 10rem 4rem;
}

.why-us-text {
  max-width: 80rem;
  margin: 0 auto 5rem;
  text-align: center;
  font-size: 1.8rem;
  color: var(--light);
}

.why-us-stat {
  text-align: center;
}

.why-us-stat span {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--lighter);
}

.why-us-stat p {
  font-size: 1.6rem;
  color: var(--light);
}

/* CTA */
.cta-section {
  background: var(--dark);
  padding: 8rem 4rem;
}

.cta-section p {
  font-size: 1.8rem;
  color: var(--light);
  max-width: 70rem;
  margin: 0 auto 3rem;
}


/* BLOGS SECTION */

.latest-blogs {
  background: var(--darker);
  padding: 10rem 4rem;
  position: relative;
}

.latest-blogs p {
  text-align: center;
  color: var(--lighter);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 173, 172, 0.1);
  width: 350px;
  margin: 0 auto;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* border-color: var(--primary); */
}

.post-image {
  width: 100%;
  height: 220px;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.post-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--light));
}

.post-content {
  padding: 2rem;
}

.post-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.post-title a {
  color: var(--lighter);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:link,
.post-title a:visited,
.post-title a:active {
  outline: none;
}

.post-title a:hover {
  color: var(--very-light);
}

.post-title:focus:not(:focus-visible) {
  outline: none;
}

.post-meta {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-left {
  text-align: left;
}

.space-around {
  justify-content: space-around;
}

.post-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--lighter);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--lighter);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(4px);
}

/* Footer Section */
.footer {
  background: var(--dark);
  padding: 8rem 0;
  position: relative;
}


.footer_image {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 3rem;
  position: relative;
  border: 2px solid var(--light);
  border-radius: 50%;
  padding: 1rem;
  background: var(--darker);
}

.footer_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.footer_copyright {
  color: var(--light);
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
}

.footer_copyright-name {
  color: var(--lighter);
  font-weight: 600;
}

/* Contact Form */
.form {
  background: var(--darker);
  width: 100%;
  padding: 2rem;
}

.form_control {
  color: var(--primary);
  background: none;
  border: none;
  border-bottom: .1rem solid var(--primary);
  outline: none;
  width: 100%;
  padding: 1rem .5rem;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.form_control:focus {
  outline: none;
  border-bottom-color: var(--lighter);
  color: var(--lighter);
}

.form_control::placeholder {
  color: var(--primary);
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
}

.form_error {
  color: #ef4444;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Scroll to Top Button */
.topBtnContainer {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
}

#topBtn {
  width: 5rem;
  height: 5rem;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(10, 173, 172, 0.3);
}

#topBtn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(10, 173, 172, 0.4);
}

#topBtn i {
  font-size: 3rem;
  color: var(--lighter);
}

/* Utility Classes */
.hidden {
  display: none;
}

.space-around {
  justify-content: space-around;
}

.items-center {
  align-items: center;
}

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

.lowercase {
  text-transform: lowercase;
}

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

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

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

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

/* Grid System */
@media (min-width: 1200px) {
  .col-xlg-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-xlg-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-xlg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xlg-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-xlg-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-xlg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xlg-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-xlg-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-xlg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xlg-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-xlg-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }

  .col-xlg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .col-lg-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {

  .header_data {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .header_data_contents_heading {
    font-size: 4.5rem;
  }

  .header_tech_icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .header_img {
    max-width: 35rem;
    margin: 0 auto;
  }

  .header_data_contents {
    text-align: center;
  }

  .col-md-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 .5rem;
  }

  .col-md-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-md-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .nav_wrapper {
    padding: 1rem 2rem;
  }

  .nav_wrapper_toggle {
    display: flex;
    cursor: pointer;
  }

  .nav_wrapper_ul {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav_active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav_wrapper_ul_li_a {
    padding: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(133, 214, 214, 0.1);
  }

  .header {
    padding-top: 8rem;
  }

  /* Force form container to full width */
  .footer .col-xlg-7.order1,
  .footer .col-lg-7.order1,
  .footer .col-md-7.order1 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .header_data_contents_heading {
    font-size: 3.5rem;
  }

  .header_data_contents_top {
    font-size: 1.6rem;
  }

  .header_data_contents_bottom {
    font-size: 1.6rem;
  }

  .header_data_contents_links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
  }

  .heading {
    font-size: 3rem;
  }

  .heading2 {
    font-size: 2.2rem;
  }

  .header_tech_icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .header_tech {
    margin-top: 6rem;
  }

  .about,
  .features,
  .services,
  .products,
  .testimonials,
  .why-us,
  .cta-section,
  .latest-blogs,
  .footer {
    padding: 6rem 2rem;
  }

  .header_tech {
    max-width: 100%;
    width: 100%;
    margin-top: 6rem;
  }

  .about_info_msg {
    line-height: 1.4;
  }

  .features_col,
  .services_col,
  .products_card {
    margin: 1.5rem auto;
    max-width: 90%;
  }

  .footer .row {
    flex-direction: column;
    gap: 4rem;
  }

  .footer .row .order1 {
    order: 1;
  }

  .footer .row .order2 {
    order: 2;
  }

  .form {
    padding: 3rem 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .form .row {
    width: 100% !important;
    margin: 0 !important;
    gap: 0;
  }

  .form .row .col-xlg-6,
  .form .row .col-lg-6,
  .form .row .col-md-12,
  .form .row .col-xlg-12,
  .form .row .col-lg-12 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 1rem;
  }

  .form_control {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
  }

  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }

  .col-sm-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-sm-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-sm-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  body {
    line-height: 1.4;
  }

  /*.nav_wrapper_select {
    display: none;
  }*/

  .header_data_contents_heading {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .header_data_contents_top {
    font-size: 1.4rem;
  }

  .header_data_contents_bottom {
    font-size: 1.4rem;
  }

  .header_img {
    max-width: 25rem;
  }

  .header_tech_icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .header_tech {
    margin-top: 5rem;
  }

  .services_col,
  .features_col,
  .products_card {
    padding: 2.5rem 1.5rem;
    margin: 1rem 0;
    max-width: 100%;
  }

  .products_card_content {
    padding: 1.2rem 1.5rem;
  }

  .products_description {
    font-size: 1.6rem;
    padding: 0 1rem;
  }

  .form {
    padding: 2rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .footer .col-xlg-7.order1,
  .footer .col-lg-7.order1,
  .footer .col-md-7.order1 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .form_control {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    margin-bottom: .5rem;
  }

  .about,
  .features,
  .services,
  .products,
  .testimonials,
  .why-us,
  .cta-section,
  .latest-blogs,
  .footer {
    padding: 6rem 1rem;
  }

  .about_info_socials {
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
  }

  .about_info_socials_circle {
    width: 4rem;
    height: 4rem;
  }

  .about_info_socials_circle i {
    font-size: 2rem;
  }

  .header_data_contents_links {
    gap: 1.5rem;
  }

  .btn {
    padding: .8rem 2rem;
    font-size: 1.6rem;
    /* flex: 1; */
    /* max-width: 45%; */
  }

  #topBtn {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2rem;
  }

  .col-xsm-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }

  .col-xsm-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }

  .col-xsm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xsm-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .col-xsm-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }

  .col-xsm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xsm-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }

  .col-xsm-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }

  .col-xsm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xsm-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }

  .col-xsm-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }

  .col-xsm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .testimonial_card {
    padding: 1rem .5rem;
    margin: 1rem auto;
  }

  .why-us-text {
    margin: 1rem auto;
  }

  .why-us-stat {
    /* make element stretch */
    width: 100%;
    margin-bottom: 1rem;
  }

}

/* Additional Professional Touches */
.services_col:nth-child(even) {
  background: var(--light);
}

.features_col:nth-child(odd) {
  border-left: 4px solid var(--primary);
}

.features_col:nth-child(even) {
  border-left: 4px solid var(--light);
}

/* Smooth scrolling enhancements */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus {
  outline: 2px solid var(--lighter);
  outline-offset: 4px;
}