/* Fix deprecated API warning */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px; 
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

.home-title,
.about-title,
.services-title,
.section-title,
.why-title {
    font-size: 2.2rem; 
    font-weight: 800;
    line-height: 1.2;
}


html {
    -webkit-text-size-adjust: 100%; 
}
 
.padding-top{
  padding-top: 80px;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar{
  height: 100%;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 2rem;
}

.navbar .logo a{
  font-size: 30px;
  color: black;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.menu-icon{
  cursor: pointer;
  font-size: 25px;
  color: #333;
  display: none;
}

nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}

nav .navbar .links{
  display: flex;
}

nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: black;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav .navbar .links li a:hover{
  color: #007bff;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
}

nav .navbar .links li .arrow{
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: black;
  transition: all 0.3s ease;
  cursor: pointer;
}

nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  min-width: 200px;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}

.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar .links li .sub-menu a{
  color: black;
  font-size: 15px;
  font-weight: 500;
  display: block;
  line-height: 40px;
}

.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}

.navbar .search-box{
  display: none;
}

.navbar .nav-links .sidebar-logo{
  display: none;
}

/* Mobile Styles */
@media (max-width: 920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 2rem;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  
  nav .navbar .links li a{
    font-size: 15px;
  }
}

@media (max-width: 800px){
  .menu-icon{
    display: block;
  }
  
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 280px;
    height: 100vh;
    background: white;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .sidebar-logo .logo-name{
    font-size: 22px;
    font-weight: 600;
    height: 20px;
    width: auto;
    object-fit: contain;
  }
  
  .sidebar-logo .close-icon{
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }
  
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  
  nav .navbar .links li{
    display: block;
    margin: 10px 0;
  }
  
  nav .navbar .links li .arrow{
    line-height: 40px;
    position: absolute;
    right: 0;
  }
  
  nav .navbar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
 
    background: #f9f9f9;
    border-radius: 5px;
    padding: 0 10px;
    width: 245px;
  }
  
  .navbar .links li .sub-menu li{
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  
  .navbar .links li .sub-menu li:last-child{
    border-bottom: none;
  }
  
  .navbar .links li .sub-menu a{
    padding: 0 10px;
  }
  
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
    position: relative;
    left: 0;
  }
  
  .navbar .links li .sub-menu .more-sub-menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow{
    transform: rotate(0deg);
  }
  
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  
  .navbar .links li .sub-menu .more span{
    display: flex;
    align-items: center;
  }
  
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
  
  .sub-menu.active {
    display: block !important;
  }
  
  .arrow.rotate {
    transform: rotate(180deg) !important;
  }
  
 
}
/* Mobile dropdown styles */
@media screen and (max-width: 800px) {
  .sub-menu,
  .services-submenu,
  .htmlCss-sub-menu {
    display: none;
    width: 100%;
    position: static;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 0;
    padding-left: 20px;
  }
  
  .sub-menu.active,
  .services-submenu.active,
  .htmlCss-sub-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .htmlcss-arrow.rotate,
  .show-services.rotate,
  .arrow.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .sub-menu li a,
  .services-submenu li a,
  .htmlCss-sub-menu li a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}
@media screen and (min-width: 801px) {
  .navbar .bx-menu {
    display: none !important;
  }
}

/* For tablet and mobile view (800px and below) - show menu icon */
@media screen and (max-width: 800px) {
  .navbar .bx-menu {
    display: block !important;
  }
}
@media (max-width: 370px){
  nav .navbar .nav-links{
    width: 100%;
  }
}
/* Prevent scrollbar flash on page load */
html {
  scrollbar-gutter: stable;
}

/* Optional: Add a subtle scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff9c00;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-20px) translateX(-50%);}
  60% {transform: translateY(-10px) translateX(-50%);}
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

/* Home Section Styles */
.home {
  padding: 8rem 0 6rem;
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
}

.home-text {
  order: 1;
  text-align: center;
  z-index: 2;
  max-width: 600px;
}

.home-subtitle {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.home-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.home-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-description {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.home-img {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}
.home-img img{
  width: 500px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1)); */
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* About Section Styles */
.about {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0 2rem;
}

.about-content {
  order: 1;
  width: 100%;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-subtitle {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.about-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-description:last-of-type {
  margin-bottom: 0;
}

.about-image {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.about-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite 1s;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .home-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  
  .home-text {
    order: 1;
    text-align: left;
    flex: 1;
    max-width: none;
  }
  
  .home-subtitle::after {
    left: 0;
    transform: none;
  }
  
 
  
  .home-description {
    font-size: 1.2rem;
  }
  
  .home-img {
    order: 2;
    flex: 1;
  }
  
  .hero-image {
    max-width: 90%;
  }
  
  .about-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
  }
  
  .about-content {
    order: 1;
    text-align: left;
    flex: 1;
    max-width: none;
  }
  
  .about-text {
    text-align: left;
    margin: 0;
  }
  
  .about-subtitle::after {
    left: 0;
    transform: none;
  }
  
  .about-image {
    order: 2;
    flex: 1;
  }
  
   
}

@media (min-width: 1024px) {
 
 
  
  .hero-image,
  .about-img {
    max-width: 85%;
  }
}

@media (min-width: 1200px) {
 
  
 
  
  .home-description,
  .about-description {
    font-size: 1.3rem;
  }
  
  .home-container,
  .about-container {
    gap: 6rem;
  }
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .home,
  .about {
    padding: 4rem 0 4rem;
  }
  .home-container{
    
  margin-top: 4rem;
  }
  .home-container,
  .about-container {
    padding: 0 1.5rem;
    gap: 2.5rem;
  }
  
  .home-title,
  .about-title {
    font-size: 2rem;
  }
  
  .home-subtitle,
  .about-subtitle {
    font-size: 1rem;
  }
  
  .home-description,
  .about-description {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

 

/* About Section - Enhanced Version */
.svj-about-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.svj-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.svj-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.svj-about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
}

.svj-about-row:last-child {
    margin-bottom: 0;
}

.svj-about-textblock {
    flex: 1;
    width: 100%;
    padding: 2rem;
    position: relative;
}

.svj-about-content {
  
}

.svj-about-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
}

.svj-about-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 2px;
}

.svj-block-vision .svj-about-heading::after {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.svj-block-mission .svj-about-heading::after {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.svj-about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.svj-about-text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

.svj-about-imageblock {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.svj-image-container {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.svj-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.svj-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.svj-image-container:hover::before {
    opacity: 1;
}

.svj-about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.svj-image-container:hover .svj-about-image {
    transform: scale(1.05);
}

/* Work Flow Section - Enhanced */
.work-flow {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.work-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.work-flow-head {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.work-flow-head h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b00;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-flow-head h2 {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.work-flow-container {
 width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  
  position: relative;
}

.work-flow-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    z-index: 1;
}

.work-flows {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    z-index: 2;
}

.work-flows::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.work-flows:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-flows:hover::before {
    transform: scaleX(1);
}

.work-flows h1 {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.5);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.work-flows:hover h1 {
    color:#ff9c00;
    transform: scale(1.1);
}

.work-flows h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.work-flows:hover h3 {
    color: #ff6b00;
}

.work-flows p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .svj-about-row {
        flex-direction: row;
        gap: 4rem;
    }
    
    .svj-reverse-row {
        flex-direction: row-reverse;
    }
    
    .svj-about-textblock {
        padding: 3rem 2rem;
    }
    
    
    
    .work-flows {
        min-width: 200px;
    }
}

/* Medium devices (tablets, 768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    
     
    
    .svj-about-heading {
        font-size: 2rem;
    }
    
    .work-flow-head h1 {
        font-size: 2.2rem;
    }
    
    .work-flows {
        min-width: calc(50% - 2rem);
    }
    
    .work-flow-container::before {
        display: none;
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .svj-about-section,
    .work-flow {
        padding: 4rem 0;
    }
    
    .svj-about-row {
        margin-bottom: 4rem;
    }
    
    .svj-about-heading {
        font-size: 1.8rem;
    }
    
    .work-flow-head h1 {
        font-size: 2rem;
    }
    
    .work-flows {
        min-width: 100%;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
     
    
   
   
    
    .svj-about-row {
        margin-bottom: 3rem;
        gap: 2rem;
    }
    
    .svj-about-textblock {
        padding: 1.5rem 1rem;
    }
    
    .svj-about-heading {
        font-size: 1.6rem;
    }
    
    .svj-about-text {
        font-size: 1rem;
    }
    
    .work-flow-head {
        margin-bottom: 3rem;
    }
    
    .work-flow-head h1 {
        font-size: 1.8rem;
    }
    
    .work-flows {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .work-flows h1 {
        font-size: 2.5rem;
    }
    
    .work-flows h3 {
        font-size: 1.2rem;
    }
}

 

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .svj-image-container {
        border: 0.5px solid rgba(255, 107, 0, 0.1);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .svj-image-container,
    .svj-about-image,
    .work-flows,
    .work-flows h1 {
        transition: none;
    }
    
    .svj-image-container:hover,
    .work-flows:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .svj-about-section,
    .work-flow {
        padding: 2rem 0;
    }
    
    .svj-image-container:hover,
    .work-flows:hover {
        transform: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}

/* Tools Section Styles */
.tools-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-subtitle {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  color: #64748b;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 auto;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tech-tab {
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
}

.tech-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.tech-tab:hover {
  border-color: #ff6b00;
  color: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.tech-tab.active {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  border-color: #ff6b00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.tech-tab.active::before {
  left: 0;
}

.tech-content {
  display: none;
  animation: fadeInUp 0.6s ease;
  width: 100%;
}

.tech-content.active {
  display: flex;
  justify-content: center;
}

.tech-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.tech-item {
  background: white;
  border-radius: 16px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
}

.tech-item:hover::before {
  transform: scaleX(1);
}

.tech-item:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2);
}

.tech-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  filter: grayscale(0%);
}

.tech-name {
  font-weight: 600;
  color: #2d3748;
  text-align: center;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.tech-item:hover .tech-name {
  color: #ff6b00;
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {
  .tech-item {
    width: calc(50% - 2rem);
    max-width: 200px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .tools-section {
    padding: 4rem 0;
  }
  
  .tech-item {
    width: calc(33.333% - 2rem);
    max-width: 220px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .tech-tab {
    font-size: 1.1rem;
     padding: 0.5rem 1rem;
  }
  
  .tech-flex {
    gap: 2.5rem;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .tech-item {
    width: calc(25% - 2.5rem);
    max-width: 240px;
    padding: 2rem 1rem;
  }
  
  .tech-flex {
    gap: 2.5rem;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
  
  .tech-name {
    font-size: 1.2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .tech-item {
    width: calc(20% - 3rem);
    max-width: 250px;
  }
  
  .tech-flex {
    gap: 3rem;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .tools-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .tech-container {
    padding: 0 1rem;
  }
  
  .tech-tabs {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .tech-tab {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .tech-flex {
    gap: 1.5rem;
  }
  
  .tech-item {
    width: calc(50% - 1.5rem);
    padding: 1rem 0.5rem;
    max-width: 160px;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .tech-name {
    font-size: 1rem;
  }
}

/* Ultra-wide screens */
 

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .tech-item {
    border: 0.5px solid rgba(255, 107, 0, 0.1);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .tech-tab,
  .tech-item,
  .tech-icon,
  .tech-item::before {
    transition: none;
  }
  
  .tech-tab:hover,
  .tech-item:hover {
    transform: none;
  }
  
  .tech-content {
    animation: none;
  }
}

/* Why Choose Us Section */
.why-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; 
  gap: 4rem;
  padding: 0 2rem;
}

.why-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-subtitle {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.why-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-description {
  color: #64748b;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.why-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 ease;
}

.why-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

.why-btn:hover::before {
  left: 100%;
}

.why-btn:active {
  transform: translateY(-1px);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-elevated {
  transform: translateY(0);
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  border: 2px solid rgba(255, 107, 0, 0.2);
}

.why-card-elevated:hover {
  transform: translateY(-8px);
  background: white;
  border-color: rgba(255, 107, 0, 0.4);
}

.why-card-content {
  position: relative;
  z-index: 2;
}

.why-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.why-card-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.why-card:hover .why-card-content h3::after {
  width: 60px;
}

.why-card-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Icon decoration for cards */
.why-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.why-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .why-container {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 4rem;
  }
  
  .why-text {
    text-align: left;
    flex: 1;
    max-width: none;
    padding-right: 2rem;
  }
  
  .why-subtitle::after {
    left: 0;
    transform: none;
  }
  
  .why-cards {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .why-title {
    font-size: 2.5rem;
  }
  
  .why-card-elevated {
    transform: translateY(20px);
  }
  
  .why-card-elevated:hover {
    transform: translateY(12px);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .why-section {
    padding: 4rem 0;
  }
  
 
  
  .why-title {
    font-size: 2.5rem;
  }
  
 
  
  .why-card-content h3 {
    font-size: 1.3rem;
  }
  
  
  
  .why-card-elevated {
    transform: translateY(30px);
  }
  
  .why-card-elevated:hover {
    transform: translateY(22px);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .why-title {
    font-size: 2.5rem;
  }
 
  
  .why-cards {
    gap: 2.5rem;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .why-section {
    padding: 4rem 0;
  }
  
  .why-container {
    padding: 0 1.5rem;
    flex-direction: column;
    gap: 3rem;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .why-subtitle {
    font-size: 1rem;
  }
  
  .why-description {
    font-size: 1.1rem;
  }
  
  .why-btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
  
  
  
  .why-card-content h3 {
    font-size: 1.2rem;
  }
  
  .why-card-content p {
    font-size: 1rem;
  }
}

 

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .why-card {
    border: 0.5px solid rgba(255, 107, 0, 0.1);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-btn,
  .why-card::before,
  .why-card::after,
  .why-card-content h3::after {
    transition: none;
  }
  
  .why-card:hover,
  .why-btn:hover,
  .why-card-elevated,
  .why-card-elevated:hover {
    transform: none;
  }
  
  .why-btn:hover::before {
    display: none;
  }
}

 

/* Contact Page Styles */
/* Contact Page Styles */
.contact-section {
    padding-top: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

 

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); */
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 0;
    color: white;
}

.contact-info {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.info-card:hover::before {
    left: 100%;
}

.info-icon {
    font-size: 1.5rem;
    color: #ffffff;
    background: #ff6b00;
    margin-right: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.info-content h3 {
    margin: 0 0 1rem 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-content p, 
.info-content a {
    margin: 0.5rem 0;
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #ff6b00;
}

.info-content i {
    margin-right: 0.8rem;
    font-size: 0.9rem;
    color: #ff6b00;
    min-width: 16px;
}

/* Main Contact Container */
.contact-main-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    padding: 2rem 0;
}

.contact-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-intro-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b00;
}

.highlight-item i {
    color: #ff6b00;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #2d3748;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
}

.contact-form-container h2 {
    font-size: 2rem; 
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-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 ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Map Section */
.map-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-container h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    z-index: 1;
}

.map-wrapper iframe {
    display: block;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main-container {
        gap: 3rem;
    }
    
    .contact-intro-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        margin: 3rem auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .map-container {
        padding: 0 1.5rem;
        margin: 3rem auto;
    }
    
    .map-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
     
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-info-container {
        padding: 3rem 0;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro-content p {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .map-container h2 {
        font-size: 1.6rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card,
.contact-form-container,
.map-wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .info-card,
    .submit-btn,
    .info-card::before,
    .submit-btn::before {
        transition: none;
        animation: none;
    }
    
    .info-card:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .info-card {
        border: 0.5px solid rgba(255, 107, 0, 0.2);
    }
}

/* Form validation styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e53e3e;
    background: #fed7d7;
}

.form-group input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #38a169;
    background: #f0fff4;
}

/* Loading state for submit button */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Services Section Styles */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.services-subtitle {
  color: #ff6b00;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.services-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-intro {
  color: #64748b;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
}

.card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  /* filter: brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(1231%) hue-rotate(360deg) brightness(101%) contrast(101%); */
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.card-btn::after {
  /* content: '→'; */
  transition: transform 0.3s ease;
}

.card-btn:hover {
  color: #e65c00;
  gap: 0.8rem;
}

.card-btn:hover::after {
  transform: translateX(3px);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .services {
    padding: 4rem 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
  }
  
 
  
  .services-intro {
    font-size: 1.3rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
  }
  
 
  
  .service-card {
    padding:2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .services-grid {
    gap: 3rem;
    padding: 0;
  }
  
  .service-card {
    padding: 2rem;
  }
  
 
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .services {
    padding: 4rem 0;
  }
  
  .services-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
 
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .services-intro {
    font-size: 1.1rem;
  }
  
  .services-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .card-icon {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
  
  .card-icon img {
    width: 45px;
    height: 45px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .services-grid {
    max-width: 1300px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card {
    border: 0.5px solid #f1f5f9;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .card-icon,
  .card-btn,
  .service-card::before {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .card-btn:hover::after {
    transform: none;
  }
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
  .services {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }
  
  .service-card {
    background: #334155;
    border-color: #475569;
  }
  
  .services-title,
  .card-title {
    color: #f1f5f9;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .services-intro,
  .card-description {
    color: #cbd5e1;
  }
} */

/* Clients Section */
.clients-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

/* Section Header */
.section-headers {
  text-align: center; 
  animation: fadeInDown 0.8s ease-out;
}

.section-subtitle {
  color: #ff6b00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00 0%, #ff8c00 100%);
  border-radius: 2px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Clients Carousel Container */
.clients-container-carousel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

/* Carousel Logo Items */
.carousel-logo {
  padding: 2.5rem;
  margin: 0 15px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex !important;
  align-items: center;
  justify-content: center; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.carousel-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-logo:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 0, 0.2);
}

.carousel-logo:hover::before {
  transform: scaleX(1);
}

.carousel-logo:hover::after {
  opacity: 1;
}

.carousel-logo img {
  max-width: 140px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.15);
}

/* Slick Slider Custom Styles */
.clients-container-carousel .slick-slide {
  padding: 0 15px;
  transition: opacity 0.5s ease;
}

.clients-container-carousel .slick-list {
  padding: 40px 0 !important;
  margin: 0 -15px;
  overflow: visible;
}

.clients-container-carousel .slick-track {
  display: flex;
  align-items: center;
}

/* Dots Styling */
.clients-container-carousel .slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.clients-container-carousel .slick-dots li {
  margin: 0;
  width: 12px;
  height: 12px;
}

.clients-container-carousel .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.clients-container-carousel .slick-dots li button:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.clients-container-carousel .slick-dots li button:before {
  display: none;
}

.clients-container-carousel .slick-dots li.slick-active button {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scale(1.3);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

 /* Clients section specific carousel controls removal */
section.clients-section .slick-prev,
section.clients-section .slick-next,
section.clients-section .slick-dots {
    display: none !important;
}

 

 

 

 
 

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

 

 

 

@media (max-width: 768px) {
  .clients-section {
    padding: 4rem 0;
  }
  
  .carousel-logo {
    height: 150px;
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .carousel-logo img {
    max-width: 90px;
    height: 100px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

 

  .clients-container-carousel {
    padding: 0 2rem;
  }
}

@media (max-width: 576px) {
  .clients-container-carousel {
    padding: 0 1rem;
  }
  
  .carousel-logo {
    height: 130px;
    margin: 0 8px;
    padding: 1.2rem;
    border-radius: 18px;
  }
  
  .carousel-logo img {
    max-width: 80px;
    height: 100px;
  }
  
  .clients-container-carousel .slick-list {
    padding: 30px 0 !important;
    margin: 0 -8px;
  }
  
  .clients-container-carousel .slick-slide {
    padding: 0 8px;
  }

  .section-title {
    font-size: 26px;
  }

  .clients-section {
    padding: 3rem 0;
  }

  .section-headers {
    margin-bottom: 2.5rem;
  }

  .clients-container-carousel .slick-dots {
    bottom: -40px;
  }
}
 
/* service page */
/* Services Page - Unique Class Names */
.svj-services-page {

  background-color: #f8f9fa;
  min-height: 100vh;
}

.svj-services-wrapper {
  padding-top: 5rem;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 2rem 0;
}

.svj-service-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svj-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.svj-service-details {
  padding: 1.5rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svj-service-heading {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.svj-service-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #f59e0b;
}

.svj-service-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.svj-service-link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.svj-service-graphic {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.05);
}

.svj-service-visual {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.svj-service-item:hover .svj-service-visual {
  transform: scale(1.05);
}

/* Service-specific colors */
.svj-web-link,
.svj-app-link,
.svj-digital-link,
.svj-windows-link,
.svj-consult-link,
.svj-training-link {
  background-color: #f59e0b;
  color: white;
  border: 2px solid #f59e0b;
}

.svj-web-link:hover,
.svj-app-link:hover,
.svj-digital-link:hover,
.svj-windows-link:hover,
.svj-consult-link:hover,
.svj-training-link:hover {
  background-color: transparent;
  color: #f59e0b;
}

/* Small devices (phones, 480px and below) */
@media (max-width: 480px) {
  
  
  .svj-services-wrapper {
    gap: 2rem;
  }
  
  .svj-service-details {
    padding: 1rem;
  }
  
  .svj-service-heading {
    font-size: 1.3rem;
  }
  
  .svj-service-text {
    font-size: 0.9rem;
  }
  
  .svj-service-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .svj-service-graphic {
    padding: 1rem;
  }
  
  .svj-service-visual {
    max-width: 200px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
 
  
  .svj-service-item {
    flex-direction: row;
    align-items: center;
    min-height: 300px;
  }
  
  .svj-service-item:nth-child(even) .svj-service-details {
    order: 2;
  }
  
  .svj-service-item:nth-child(even) .svj-service-graphic {
    order: 1;
  }
  
  .svj-service-details {
    flex: 1;
    padding: 2rem;
  }
  
  .svj-service-graphic {
    flex: 1;
    padding: 2rem;
  }
  
  .svj-service-heading {
    font-size: 1.8rem;
  }
  
  .svj-service-text {
    font-size: 1.05rem;
  }
  
  .svj-service-visual {
    max-width: 320px;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  
  
  .svj-service-item {
    min-height: 350px;
  }
  
  .svj-service-heading {
    font-size: 2rem;
  }
  
  .svj-service-text {
    font-size: 1.1rem;
  }
  
  .svj-service-link {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  
  .svj-service-visual {
    max-width: 350px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .svj-services-wrapper {
 
  }
  
  .svj-service-details {
    padding: 2.5rem;
  }
  
  .svj-service-graphic {
    padding: 2.5rem;
  }
}

 
/* Additional alignment fixes */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.work-flow-head {
  text-align: center;
  margin: 2rem 0;
  padding: 0 2rem;
}

.work-flow-head h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b00;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-flow-head h2 {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.work-flows {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.work-flows::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.work-flows:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-flows:hover::before {
  transform: scaleX(1);
}

.work-flows h1 {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.5);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.work-flows:hover h1 {
  color: #ff6b00;
  transform: scale(1.1);
}

.work-flows h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.work-flows:hover h3 {
  color: #ff6b00;
}

.work-flows p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width:320px){
  .work-flows {
    flex: 0 0 calc(50% - 1rem);
    min-width: 250px;
    max-width: 300px;
  }
}

@media (min-width:600px){
  .work-flows {
    flex: 0 0 calc(33.33% - 1rem);
    min-width: 200px;
  }
}

@media (min-width:1024px){
  .work-flows {
    flex: 0 0 calc(19% - 1rem);
    min-width: 180px;
  }
}
/* Contact CTA Section - Fixed Contrast */
.contact-cta {
  padding: 4rem 1rem;
  width: 100%;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-content {
  padding: 3rem 2rem;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,156,0,0.1) 0%, rgba(255,255,255,1) 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-headline {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2d3748; /* Dark gray for better contrast */
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.cta-subhead {
  font-size: 1.8rem;
  font-weight: 500;
  color: #4a5568; /* Medium gray for better contrast */
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #d35400; /* Darker orange for better contrast */
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #d35400;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Ensure sufficient contrast */
  background-color: #e67e22; /* Even better orange with good contrast */
  border-color: #e67e22;
}

.cta-button:hover {
  background-color: transparent;
  color: #e67e22; /* Maintain good contrast on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-cta {
    padding: 3rem 1rem;
  }
  
  .cta-content {
    padding: 2rem 1.5rem;
  }
  
  .cta-headline {
    font-size: 1.8rem;
  }
  
  .cta-subhead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .cta-headline {
    font-size: 1.6rem;
  }
  
  .cta-subhead {
    font-size: 1.3rem;
  }
  
  .cta-button {
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
  }
}

/* side-icon */
.digital-marketing-hero {
  height: 50vh;
  display: flex;
align-items: center;
justify-content: center;
  margin-top: 70px;
  color: #fff;
}
.hero-content {
 padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size:2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 1rem auto;
}


/* footer */
.footer{
  background: #0000000a;
  padding-top: 40px;


}
.footer-container{
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.footer-container h2{
  color: #000;
  
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer-container a{
      color: #000;
      
      font-size: 16px;
      font-style: normal;
      line-height: normal;
 
}

.footer-content1 img{
  width: 200px;
  height: auto;
  object-fit: contain;
}
.footer-content1 p{
  color: black;
  padding: 10px 0;
  text-align: justify;
  line-height: 21px;
  font-size: 16px;
}
.footer-content1 .footer-icons{
  margin: 10px 0;
  

}
.footer-content1 a{
  margin: 0 5px;
  color: black;
  font-size: 25px;


}
.footer-content2{
  

  
}
.footer-content2 h2{


}
.footer-content2 .help{
    padding: 10px 10px;

    
}
.footer-content2 a{
  font-size: 16px!important;
  display: block;
  text-decoration: none;
  color: black;
  margin: 10px 0;
  transition: all 500ms ease-in-out;

  
}
.footer-content2 a i{
  padding-right: 10px;
}
.footer-content2 a:hover{
  color:#ff9c00;
  transform: translateX(10px);

  
}
.footer-content2 a:hover i{
  color: black;
}
.footer-content3{

  

  
}
.footer-content3 h2{


}
.footer-content3 .quick-links{
    padding: 10px 10px;

    
}
.footer-content3 a{
  font-size: 16px!important;
  display: block;
  text-decoration: none;
  color: black;
  margin: 10px 0;
  transition: all 500ms ease-in-out;

  
}
.footer-content3 a i{
  padding-right: 10px;
}
.footer-content3 a:hover{
  color:#ff9c00;
  transform: translateX(10px);

  
}
.footer-content3 a:hover i{
  color: black;
}
.footer-content4{

  

  
}
.footer-content4 h2{


}
.footer-content3 .quick-links{
    padding: 10px 10px;

    
}
.footer-content4 a{
  font-size: 16px!important;
  display: block;
  text-decoration: none;
  color: black;
  margin: 10px 0;
  transition: all 500ms ease-in-out;

  
}
.footer-content4 a i{
  padding-right: 10px;
}
.footer-content4 a:hover{
  color:#ff9c00;
  transform: translateX(10px);

  
}
.footer-content3 a:hover i{
  color: black;
}

.footer-copyright{
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
  padding: 20px 2rem;
}
.footer-copyright-content{
  display: flex;
  align-items: center;
  justify-content: space-between;


}
.footer-copyright-content a{
  text-decoration: none;
  color: black;


}
.footer-copyright-content a:hover{
  color: black;


}

@media (min-width:320px){
  .footer-content1 ,.footer-content2 , .footer-content3,.footer-content4 {
      width: 100%;
      padding: 1rem 0;
  }
  .footer-content2  ,.footer-content3{
      padding-left: 0;
  }
  .footer-copyright{
      padding: 20px 1rem;
  }
  .footer-copyright-content{
    flex-direction: column;
    gap: 1rem;
    text-align: center;
   }
  
}
@media (min-width:600px){
  .footer-content1 ,.footer-content2 , .footer-content3,.footer-content4 {
      width: 50%;
      padding: 1rem 0;
  }
  .footer-copyright{
      padding: 20px 2rem;
  }
  .footer-content2  ,.footer-content3{
    padding-left: 0;
  }
  .footer-copyright-content{
    flex-direction: row;
    justify-content: space-between;
   }

}
@media (min-width:1024px){
  .footer-content1 ,.footer-content2 , .footer-content3,.footer-content4 {
      width: 25%;
      padding: 1rem 0;
  }
  .footer-copyright{
      padding: 20px 2rem;
  }
  .footer-content2 ,.footer-content3 {
    padding-left: 50px;
  }
  .footer-copyright-content{
   flex-direction: row;
   justify-content: space-between;
  }
}