@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/segoe-ui-variable-static-display');


body
{
  font-family: 'DM Sans', sans-serif;
}
h1,h2,h3,h4,h5,h6
{
  font-family: 'Segoe UI Variable Static Display', sans-serif;
  letter-spacing: 0.5px;
}

:root {
  --digitab-primary: #00ffbc;
  --digitab-secondary: #0b82e6;
  --digitab-dark: #1a2a4a;
  --digitab-light: #f8f9fa;
  --text-gradient: linear-gradient(90deg, #0b82e6, #1a2a4a);
  --btn-gradient: linear-gradient(135deg, #00ffbc, #0b82e6);
}

p, .blog-body li
{
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 1px;
  line-height: 1.3;
}

a
{
  text-decoration: none;
}

.container
{
  max-width: 1450px;
}

strong
{
  color: var(--digitab-dark);
  text-transform: capitalize;
  font-size: 1.1rem;
}

/*Loader CSS Start*/

/*Loader CSS End*/

/*Header CSS Start*/

/* Top Bar Styles */
.digitab-topbar {
  background: linear-gradient(135deg, #0b82e6 0%, #00a3ff 100%);
  color: white;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.digitab-contact-info .contact-item {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
}

.digitab-contact-info .contact-item i {
  color: var(--digitab-primary);
  margin-right: 8px;
  font-size: 13px;
}

.digitab-contact-info .contact-item span {
  transition: all 0.3s ease;
}

.digitab-contact-info .contact-item:hover span {
  color: var(--digitab-primary);
}

/* Main Header Styles */
.digitab-header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.digitab-nav .navbar-nav .nav-link {
  color: var(--digitab-dark);
  font-weight: 600;
  padding: 8px 15px;
  position: relative;
  transition: all 0.3s ease;
}
.digitab-header .navbar-brand img
{
  height: 55px; 
  width: auto;
}

/* Remove default Bootstrap caret */
.digitab-nav .dropdown-toggle::after {
  display: none;
}

/* Base link styles */
.digitab-nav .navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
}

/* Hover/active states */
.digitab-nav .navbar-nav .nav-link:hover,
.digitab-nav .navbar-nav .nav-link:focus,
.digitab-nav .navbar-nav .nav-link.active {
  color: var(--digitab-secondary);
}

/* Underline animation */
.digitab-nav .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--digitab-primary);
  bottom: 0;
  left: 15px;
  transition: width 0.3s ease;
}

.digitab-nav .navbar-nav .nav-link:hover:after,
.digitab-nav .navbar-nav .nav-link:focus:after,
.digitab-nav .navbar-nav .nav-link.active:after {
  width: calc(100% - 30px);
}

/* Dropdown menu styling */
.digitab-nav .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 250px;
}

.digitab-nav .dropdown-menu.dropdown-submenu
{
  width: 300px;
}



.dropdown-menu.dropdown-submenu
{
  position: absolute;
  margin-top: -1px;
  left: 100%;
  top: 0;
}

/* Desktop hover dropdowns */
@media (min-width: 992px) {
  .digitab-nav li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Second level (submenu) only on hover of its own parent li.dropdown-submenu */
  .digitab-nav li.dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  /* Initially hide nested submenus */
  .digitab-nav .dropdown-menu .dropdown-menu {
    display: none;
  }

}

.digitab-cta-btn {
  background: linear-gradient(135deg, var(--digitab-primary), var(--digitab-secondary));
  color: white !important;
  border-radius: 8px;
  padding: 12px 20px !important;
  margin-left: 15px;
  font-weight: 600 !important;
  border: none;
  transition: all 0.3s ease;
}
.digitab-cta-btn i{
  transition: all 0.3s ease;
}

.digitab-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 130, 230, 0.4);
}

.digitab-cta-btn:hover i{
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 17px;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--digitab-dark);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
  top: 0;
}

.navbar-toggler-icon:after {
  bottom: 0;
}

.navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
  bottom: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}

@media (max-width: 991.98px) {
  .digitab-nav .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .digitab-nav .navbar-nav {
    gap: 10px;
  }

  .digitab-nav .navbar-nav .nav-link {
    padding: 10px 15px;
  }

  .digitab-cta-btn {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px !important;
    font-size: 14px;
  }
}

/*Header CSS End*/

/*Banner CSS Start*/

.digitab-light-banner {
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #f0f9ff 100%);
  padding: 50px 0 50px;
  overflow: hidden;
  color: #2a2a2a;
}

/* Animated Background Elements */
.banner-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: #00ffbc;
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  width: 600px;
  height: 600px;
  background: #0b82e6;
  bottom: -200px;
  right: -200px;
  animation: float 18s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: #7b2ff7;
  top: 50%;
  right: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

/* Content Styling */
.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.8rem;

  background: var(--text-gradient);
  -webkit-text-fill-color: #fff0;
  background-clip: text;
}

.title-word {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.title-word:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffbc;
}

.title-word:nth-child(2):before {
  background: #0b82e6;
}

.title-word:nth-child(3):before {
  background: #ff4d7d;
}

.banner-text, .banner-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 90%;
  color: #555;
}

.text-highlight {
  background: linear-gradient(120deg, #00ffbc 0%, #0b82e6 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
  font-weight: 600;
  padding: 0 3px;
  color: #2a2a2a;
}

/* Client Highlight */
.client-highlight {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.03);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ffbc 0%, #0b82e6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1rem;
}

.counter {
  font-weight: 700;
  color: #0b82e6;
  font-size: 1.4em;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cta-main {
  background: linear-gradient(135deg, #00ffbc 0%, #0b82e6 100%);
  color: white !important;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(11, 130, 230, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 130, 230, 0.4);
}

.cta-main i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-main:hover i {
  transform: translateX(5px);
}

.cta-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #0b82e6;
  color: #0b82e6;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(11, 130, 230, 0.1);
  border-color: #0b82e6;
}

/* Image Container */

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  border: 8px solid white;
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.feature-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover .feature-image {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  font-weight: 600;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.image-badge i {
  color: #ffc107;
  margin-right: 8px;
  font-size: 18px;
}

/* Bottom Wave */
.banner-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.banner-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .digitab-light-banner {
    padding: 40px 0 40px;
    text-align: center;
  }

  .banner-text, .banner-content p{
    max-width: 100%;
  }

  .client-highlight {
    margin: 10px auto;
  }

  .cta-group {
    justify-content: center;
  }

  .image-frame {
    max-width: 80%;
    margin: 40px auto 0;
  }

  .image-badge {
    right: 10%;
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .banner-title {
    font-size: 2rem;
  }

  .title-word {
    display: inline-block;
    margin-right: 15px;
  }

  .title-word:last-child {
    margin-right: 0;
  }

  .image-frame {
    max-width: 100%;
  }

  .cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .cta-main,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  .client-highlight
  {
    padding: 5px 15px;
  }
  .counter-container span
  {
    font-size: 0.9rem;
  }
  .counter
  {
    font-size: 1.1rem;
  }
}
@media (max-width: 400px) {
  .counter-container .first
  {
    display: none;
  }
  .highlight-icon
  {
    height: 30px;
    width: 30px;
    font-size: 16px;
  }
}

/* Banner Image Slider CSS Start */
/* Image Slider Container */
.banner-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  z-index: 2;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

/* Slides */
.image-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.image-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image Frame */
.image-slider .image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slider .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Image Badge */
.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.image-badge i {
  color: gold;
}
/* Banner Image Slider CSS End */



/* Existing Banner Styles (keep these) */
.digitab-light-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.banner-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: #00ffbc;
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  width: 600px;
  height: 600px;
  background: #0b82e6;
  bottom: -200px;
  right: -200px;
  animation: float 18s ease-in-out infinite reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: #7b2ff7;
  top: 50%;
  right: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

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

/*Banner CSS end*/

/*About Us CSS Start*/


.about-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f9fcff 0%, #f0f7ff 100%);
}

/* Content Styles */


.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;  
  background: var(--text-gradient);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 6px;
}

.title-highlight {
  background: var(--text-gradient);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 8px;
}


.about-text-wrapper {
  position: relative;
  margin-bottom: 1rem;
}


.about-text, .about-text-wrapper p {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #555;
}

/* Features Grid */
.features-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(11, 130, 230, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--digitab-primary);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 130, 230, 0.15);
}

.feature-icon {
  color: #0b82e6;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
}

/* CTA Button */
.about-cta {
  background: linear-gradient(135deg, #0b82e6 0%, #00ffbc 100%);
  color: white !important;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  box-shadow: 0 5px 20px rgba(11, 130, 230, 0.3);
  transition: all 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 130, 230, 0.4);
}

.about-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-cta:hover i {
  transform: translateX(3px);
}

/* Image Styles */
.about-image-wrapper {
  position: relative;
  padding-right: 50px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
  position: relative;
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 130, 230, 0.1), rgba(0, 255, 188, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-frame:hover .image-overlay {
  opacity: 1;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: -20px;
  right: 0;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b82e6;
  line-height: 1;
}

.badge-text {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Tech Logos */
.tech-logos {
  position: absolute;
  bottom: -30px;
  right: 0;
  display: flex;
  gap: 15px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo img {
  max-width: 100%;
  max-height: 100%;
  transition: filter 0.3s ease;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-section {
    padding: 20px 0;
  }

  .about-content {
    padding-right: 0;
    margin-top: 1px;
  }

  .about-image-wrapper {
    padding-right: 0;
    margin-top: 20px;
  }

  .features-grid
  {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .tech-logos {
    right: 50%;
    transform: translateX(50%);
    bottom: -25px;
  }
}


/*About Us CSS End*/


/*Our Process CSS start*/

.image-process {
  padding: 20px 0;
  background: #f9fbfe;
  text-align: center;
}


.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  align-content: center;
  justify-content: space-around;
}

.step {
  width: 160px;
  position: relative;
}

.step-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(11, 130, 230, 0.15);
  border: 3px solid white;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 100%;
}

.step-circle:hover .step-image {
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--btn-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 1.9rem;
  background: var(--text-gradient);
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 700;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-arrow {
  width: 65px;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .process-steps {
    gap: 1px;
  }

  .step-arrow {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .step {
    width: 140px;
  }

  .step-circle {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .step {
    width: 180px;
  }

  .step-circle {
    width: 120px;
    height: 120px;
  }
}

/*Our Process CSS end*/

/*Footer CSS Start*/

.site-footer {
  background-color: var(--digitab-dark);
  color: #fff;
  padding: 70px 0 0;
  position: relative;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #00ffbc, #0b82e6);
}

/* Footer Logo & About */
.footer-logo img {
  max-height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Useful Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00ffbc;
  transform: translateX(5px);
}

/* Contact Details */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  margin-right: 10px;
  color: #00ffbc;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #00ffbc;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.footer-social.social-sidebar
{
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--digitab-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social.social-sidebar a
{
  background: var(--digitab-secondary);
}
.contact-details .social-title
{
  color: var(--digitab-dark);
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}
.social-contact-page a
{
 background: var(--digitab-secondary);
}

.footer-social a:hover {
  background: var(--btn-gradient);
  transform: translateY(-3px);
}

/* Newsletter */
.footer-newsletter h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom a
{
  color: #fff;
  text-decoration: none;
}

.copyright-text p {
  color: #ffffff;
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-legal-links a:hover {
  color: #00ffbc;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 20px 0 0;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-bottom .row > div {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
  }
}

/*Footer CSS End*/

/*About Us Page CSS Start*/

.about-digitab {
  padding: 20px 0;
  background-color: var(--digitab-light);
}

.about-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--digitab-dark);
  line-height: 1.2;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: capitalize;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-item i {
  font-size: 1.5rem;
  color: var(--item-color);
}

.expertise-item span {
  font-weight: 600;
  color: var(--digitab-dark);
}

.about-image {
  flex: 1;
  position: relative;
}

.image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  border: 8px solid white;
}
.image-wrapper:hover
{
  transform: perspective(1000px) rotateY(0deg);
}


.feature-image {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 1px;
  }
  
  .about-image {
    order: -1;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
  }
  
  .about-title {
    font-size: 1.5rem;
  }

}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}


.about-choose-section {
  padding: 20px 0;
  background-color: var(--digitab-light);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
}


.title-line {
  height: 4px;
  width: 100px;
  margin: 0 auto;
  border-radius: 2px;
}

.content-wrapper {
  display: flex;
  gap: 40px;
}

.who-we-are {
  flex: 1;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--digitab-dark);
  margin-bottom: 30px;
}

.image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.why-choose-us {
  flex: 1;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.reason-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  font-size: 1.2rem;
}

.reason-title {
  font-size: 1.2rem;
  color: var(--digitab-dark);
  margin-bottom: 10px;
}

.reason-text {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

.key-features {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.features-title {
  font-size: 1.3rem;
  color: var(--digitab-dark);
  margin-bottom: 20px;
  text-align: center;
}

.key-features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-tag {
  padding: 8px 15px;
  border-radius: 20px;
  border: 2px solid;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--digitab-dark);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}



/*Testimonial CSS*/
.testimonial-section {
  padding: 20px 0;
  background-color: var(--digitab-light);
}


.title-line {
  height: 4px;
  width: 100px;
  margin: 0 auto;
  border-radius: 2px;
}

.testimonial-slider {
  position: relative;
  margin: 0 auto;
}

.testimonial-slides {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.client-image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--digitab-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-icon {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--digitab-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.client-meta {
  margin-top: 20px;
}

.client-name {
  font-size: 1.2rem;
  color: var(--digitab-dark);
  margin-bottom: 5px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-position {
  font-size: 0.9rem;
  color: var(--digitab-secondary);
  font-weight: 500;
}

.slider-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--digitab-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--btn-gradient);
  color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(11, 130, 230, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--digitab-secondary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  .section-header
  {
    margin-bottom: 0px;
  }
}

@media (max-width: 576px) {


  .testimonial-text {
    font-size: 0.9rem;
  }
}


/*About Us Page CSS End*/

/*Our Service Page CSS Start*/

/* Service Title Section CSS */
.service-title-section {
  background-color: var(--digitab-light);
  padding: 20px 0;
}

.service-title-section .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-title-section .header-content {
  flex: 1;
  padding-right: 30px;
}

.service-title-section .image-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  border: 8px solid white;    
}
.service-title-section .image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.service-title-section .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-title-section .image-container:hover img {
  transform: scale(1.03);
}

.service-title-section h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  font-weight: 700;
}

.service-title-section .tagline {
  background-color: var(--digitab-secondary);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 25px 0;
}

.service-title-section .highlight-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--digitab-primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.service-title-section .highlight-box::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: var(--digitab-primary);
  opacity: 0.1;
  border-radius: 50%;
}

.service-title-section .description {
  color: var(--digitab-dark);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
}

@media (max-width: 992px) {
  .service-title-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .service-title-section .header-content {
    padding: 0 10px;
  }

  .service-title-section .image-container {
    order: -1;
    max-width: 600px;
    width: 100%;
  }

  .service-title-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .service-title-section {
    padding: 20px 0;
  }

  .service-title-section h1 {
    font-size: 1.5rem;
    text-align: left;
  }

  .service-title-section .tagline {
    font-size: 0.8rem;
    padding: 10px 20px;
    margin: 20px 0;
  }

  .service-title-section .highlight-box {
    padding: 20px;
  }

  .service-title-section .description {
    font-size: 0.9rem;
    text-align: left;
  }

}
/* Service Title Section CSS */


.services-section {
  padding: 20px 0;
  background-color: white;
  text-align: center;
}

.services-section .section-title
{
  margin-bottom: 40px;
}

.services-section .btn
{
  margin-top: 20px;
}


.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

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

.service-content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-content h3 {
  color: var(--digitab-secondary);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.btn {
  background: linear-gradient(135deg, var(--digitab-primary), var(--digitab-secondary));
  color: white !important;
  border-radius: 8px;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  border: none;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(11, 130, 230, 0.3);
  color: #fff;
}
.btn i{
  transition: all 0.3s ease;

}

.btn:hover i{
  transform: translateX(5px);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .service-row, 
  .service-row.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }

  .service-content, 
  .service-image {
    width: 100%;
  }


  .service-content h3 {
    font-size: 1.5rem;
  }
}

/*Our Service Page CSS End*/


/*Service Detail Page CSS Start*/
/* Service Detail Section - Auto-adjusts when no image */
.service-detail-section {
  padding: 20px 0;
  background-color: white;
}
  
.service-detail-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-detail-content {
  flex: 1;
}

.service-detail-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

/* When no image exists - makes content full width */
.service-detail-container.no-image .service-detail-content {
  flex: 0 0 100%;
  margin: 0 auto;
}

.service-detail-container.no-image .service-detail-image {
  display: none;
}

.service-detail-title {
  color: var(--digitab-secondary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.service-detail-description {
  color: var(--digitab-dark);
  font-size: 1.15rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .service-detail-container {
    flex-direction: column;
    gap: 40px;
  }

  .service-detail-content {
    order: 1;
  }

  .service-detail-image {
    order: 2;
    max-width: 600px;
    width: 100%;
  }

  .service-detail-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 10px 10px;
  }

  .service-detail-title {
    font-size: 1.4rem;
  }

  .service-detail-description {
    font-size: 1rem;
  }
}

.detail-service-feature {
  padding: 80px 0;
  background-color: var(--digitab-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
@media(max-width: 390px)
{
  .services-grid
  {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-icon {
  height: 50px;
  width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 30px 0;
  font-size: 40px;
  color: var(--digitab-secondary);
  background: aliceblue;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-content {
  padding: 20px 30px 30px;
  flex-grow: 1;
}


.service-content p {
  color: var(--digitab-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .detail-service-feature {
    padding: 60px 0;
  }
  
  .service-icon {
    margin: 20px 20px 0;
    font-size: 30px;
  }
  
  .service-content {
    padding: 15px 10px 25px;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
}
/*Service Detail Page CSS End*/


/*CTA Section CSS Start*/

.cta-section {
  padding: 20px 0;
  background: var(--digitab-light);
  position: relative;
  overflow: hidden;
}

.cta-container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.cta-content {
  flex: 1;
  position: relative;
}

.cta-title {
  font-size: 2rem;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}


.cta-text {
  margin-bottom: 35px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

.primary-btn {
  background: var(--btn-gradient);
  color: white;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.primary-btn:hover::before {
  opacity: 1;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(11, 130, 230, 0.3);
}

.secondary-btn {
  background: white;
  color: var(--digitab-secondary);
  border: 2px solid var(--digitab-secondary);
}

.secondary-btn:hover {
  background: var(--digitab-secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(11, 130, 230, 0.2);
}

.cta-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(26, 42, 74, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
  border: 8px solid white;
}

.cta-image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 30px 60px rgba(26, 42, 74, 0.2);
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.cta-image:hover img {
  transform: scale(1.05);
}

/* Background decoration */
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--digitab-primary) 0%, rgba(0,255,188,0.05) 70%);
  border-radius: 50%;
  top: -300px;
  right: -300px;
  opacity: 0.3;
  z-index: 1;
}

@media (max-width: 1200px) {
  .cta-container {
    gap: 60px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  
  .cta-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .cta-image {
    order: -1;
    max-width: 600px;
    transform: perspective(1000px) rotateX(-5deg);
  }
  
  .cta-image:hover {
    transform: perspective(1000px) rotateX(0deg);
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 30px 0;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-text {
    font-size: 0.9rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .cta-section::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
  }
}

/*CTA Section CSS End*/

/*Contac Us Page CSS start*/

.contact-section {
  padding: 20px 0;
  background-color: var(--digitab-light);
}



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


.section-description {
  color: var(--digitab-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.contact-image:hover img {
  transform: scale(1.03);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.detail-icon svg {
  width: 24px;
  height: 24px;
}

.detail-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.detail-content p {
  color: var(--digitab-dark);
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(26, 42, 74, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--digitab-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--digitab-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 188, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--btn-gradient);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 188, 0.3);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 20px 0;
  }
  
  .services-section .section-title
  {
    margin-bottom: 10px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .detail-item {
    flex-direction: column;
  }
  
  .detail-icon {
    margin-bottom: 15px;
  }
  .contact-details
  {
    padding: 0 10px;
  }
}

/*Contac Us Page CSS end*/

/*home why choose section CSS Start*/

.home-why-choose-us {
  padding: 20px 0;
  background: #f9fbfe;
}


.home-why-choose-us .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.description {
  color: var(--digitab-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px 30px;
  box-shadow: 0 10px 30px rgba(26, 42, 74, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 130, 230, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-title {
  color: var(--digitab-secondary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 10px;
}

.feature-text {
  margin: 0;
}

@media (max-width: 768px) {
  .home-why-choose-us {
    padding: 20px 0;
  }
  
  
  .home-features-grid {
    grid-template-columns: 1fr;
  }
}

/*home why choose section CSS End*/


/*Leadership Team Page CSS Start*/

.leadership-team
{
  padding: 20px 0;
}
/* Team Section */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 1rem 0;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.member-image {
  position: relative;
  height: 300px;
  background: var(--digitab-light);
}

.image-placeholder {
  width: 100%;
  height: 100%;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: auto;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--digitab-primary);
  color: var(--digitab-secondary);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--digitab-secondary);
  color: white;
  transform: translateY(-3px);
}

.member-info {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.member-info h3 {
  margin: 0 0 0.5rem 0;
  color: var(--digitab-dark);
  font-size: 1.5rem;
  font-weight: 600;
}


.bio {
  color: var(--digitab-dark);
  opacity: 0.8;
  margin: 0;
}

/* Advisory Board Section */


/* Leadership Showcase Section */


.team-showcase {
  padding: 20px 0;
  background-color: var(--digitab-light);
}


.team-member {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.member-photo {
  flex: 0 0 40%;
  position: relative;
  width: 100%;
}

.photo-container {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}



.member-info {
  flex: 1;
}

.team-showcase .member-info h3 {
  font-size: 2rem;
  color: var(--digitab-dark);
  margin-bottom: 0.5rem;
}

.position {
  color: var(--digitab-secondary);
  font-weight: 600;
  font-size: 1rem;
}

.info-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.info-divider .dot {
  width: 8px;
  height: 8px;
  background: var(--digitab-primary);
  border-radius: 50%;
}

.info-divider .line {
  width: 60px;
  height: 2px;
  background: var(--digitab-primary);
  margin: 0 15px;
  opacity: 0.5;
}

.member-about p {
  line-height: 1.3;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .team-member {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }
  
  .photo-container {
    height: 350px;
    width: 100%;
  }
  
}

@media (max-width: 768px) {


  .photo-container {
    height: 300px;
  }
}


/* Responsive Design */
@media (max-width: 768px) {


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

  .advisor-image-container {
    height: 300px;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/*Leadership Team Page CSS End*/

/*Mission And Vision Page CSS Start*/



/* Mission & Vision Shared Styles */
.mission-section, .vision-section {
  padding: 20px 0;
}

.mv-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.mv-grid.reverse {
  flex-direction: row-reverse;
}

.mv-content {
  flex: 1;
}

.mv-image {
  flex: 1;
  position: relative;
  width: 100%;
}

.image-wrapper {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}


.section-tag {
  color: var(--digitab-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}


/* Mission Specific */
.mission-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mission-points li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #555;
}

.mission-points i {
  color: var(--digitab-secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}


/* Values Section */
.values-section {
  background: var(--digitab-light);
  padding: 20px 0;
}


.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.05);
  transition: transform 0.3s ease;
}

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

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 188, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--digitab-secondary);
  font-size: 1.5rem;
}

.value-card h3 {
  color: var(--digitab-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .mv-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .mv-grid.reverse {
    flex-direction: column;
  }

  .image-wrapper {
    height: 300px;
    width: 100%;
  }    

}

@media (max-width: 768px) {

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mission-section, .vision-section {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

}

/*Mission And Vision Page CSS End*/

/*Career Page CSS Start*/


/* Benefits Section */
.benefits-section {
  padding: 0 0 40px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--digitab-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 188, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--digitab-secondary);
  font-size: 1.5rem;
}

.benefit-card h3 {
  color: var(--digitab-secondary);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
}


/* Job Openings Section */
.openings-section {
  padding: 20px 0 0 0;
  background: white;
}


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

.job-card {
  background: var(--digitab-light);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--digitab-primary);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.job-header {
  margin-bottom: 1rem;
}

.job-header h3 {
  color: var(--digitab-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}


.job-location {
  color: var(--digitab-dark);
}

.job-description {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.job-footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.apply-btn {
  padding: 8px 20px;
  background: var(--btn-gradient);
  color: white;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 255, 188, 0.2);
}



/* Responsive Design */
@media (max-width: 1024px) {

  .image-placeholder {
    height: 300px;
  }
}


@media (max-width: 480px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/*Career Page CSS End*/

/*Partnership & Certificate Page CSS Start*/

/* Partnerships Section */
.partnerships-section {
  padding: 20px 0;
  background-color: var(--digitab-light);
}

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

.partner-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 42, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 42, 74, 0.15);
}

.partner-logo-container {
  position: relative;
  text-align: center;
}


.partner-logo img {
  height: 250px;
  transition: filter 0.3s ease;
}

.partner-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: rgb(0 255 188 / 10%);
  color: var(--digitab-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.partner-content {
  padding: 1rem;
  text-align: center;
}

.partner-content h3 {
  color: var(--digitab-secondary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Certifications Section */
.certifications-section {
  padding: 20px 0;
  background: white;
}

.cert-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.cert-category {
  background: var(--digitab-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.05);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--digitab-secondary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 255, 188, 0.2);
  font-weight: 600;
}

.category-title i {
  color: var(--digitab-secondary);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cert-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(26, 42, 74, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.cert-image {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.cert-image img {
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cert-card:hover .cert-image img {
  transform: scale(1.05);
}


.cert-details {
  padding: 1rem;
}

.cert-details h4 {
  color: var(--digitab-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.cert-details p {   
  margin-bottom: 1rem;
}

.cert-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.cert-date {
  color: var(--digitab-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .partners-grid,
  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .partnerships-section,
  .certifications-section {
    padding: 20px 0;
  }

  .partner-logo-container {
    height: 150px;
  }

  .cert-image {
    height: 180px;
  }
  .partner-logo-container, .partner-logo img
  {
    height: auto;
  }
}

@media (max-width: 480px) {
  .partners-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid
  {
    margin-top: 1rem;
  }

  .cert-category {
    padding: 1.5rem;
  }
}

/*Partnership & Certificate Page CSS End*/

/*Awards & Recognition Page CSS Start*/

/* Awards Showcase */
.awards-showcase {
  padding: 20px 0;
  background: white;
  position: relative;
}


.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.award-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(26, 42, 74, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 42, 74, 0.15);
}

.award-media {
  position: relative;
}

.award-image {
  width: 100%;
  height: 100%;
  background: var(--digitab-light);
}

.award-image img {
  width: 100%;
  height: 220px;
  transition: transform 0.5s ease;
}

.award-card:hover .award-image img {
  transform: scale(1.05);
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 42, 74, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-card:hover .award-overlay {
  opacity: 1;
}


.award-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: rgb(0 255 188 / 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  font-size: 24px;
}

.award-badge i {
  color: var(--digitab-secondary);
}

.award-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.award-year {
  color: var(--digitab-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.award-content h3 {
  color: var(--digitab-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.award-organization {
  color: var(--digitab-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.award-description {    
  margin-bottom: 1.5rem;  
  flex-grow: 1;
}

/* Press Recognition */
/* Press Section - News Article Style */
.press-section {
  padding: 20px 0;
  background: var(--digitab-light);
}

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

.press-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(26, 42, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 42, 74, 0.15);
}

.press-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.press-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.press-card:hover .press-featured-image {
  transform: scale(1.05);
}



.press-content {
  padding: 1rem;
  flex-grow: 1;
}

.press-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.press-date {
  color: var(--digitab-secondary);
  font-weight: 500;
}


.press-title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.press-title-link:hover {
  color: var(--digitab-primary);
}

.press-title {
  color: var(--digitab-dark);
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  font-weight: 600;
}

.byline {
  font-style: italic;
}

.press-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  border-top: 1px solid rgba(26, 42, 74, 0.1);
}

.press-link {
  color: var(--digitab-secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.press-link:hover {
  color: var(--digitab-secondary);
  gap: 0.8rem;
}

.press-link svg {
  width: 14px;
  height: 14px;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .press-section {
    padding: 20px 0;
  }

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

  .press-image-container {
    height: 180px;
  }

}
/* Responsive Design */
@media (max-width: 1024px) {
  .awards-grid,
  .press-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .awards-showcase,
  .press-section {
    padding: 20px 0;
  }

  .awards-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

}

/*Awards & Recognition Page CSS End*/


/*Cloud Service Page CSS Start*/



/* Premium Services Section */
.premium-services {
  padding: 20px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}


/* Content Grid Layout */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Featured Image Styles */
.featured-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.featured-image {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.featured-image-container:hover .featured-image {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 42, 74, 0.7) 0%, transparent 40%);
}


/* Service Features Styles */
.service-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-feature {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  box-shadow: 0 16px 32px -8px rgba(11, 130, 230, 0.2);
}

.service-feature:hover {
  transform: translateY(-5px);
  border-left-color: var(--digitab-primary);
  box-shadow: 0 16px 32px -8px rgba(11, 130, 230, 0.2);
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--digitab-primary);
  margin-top: 0.25rem;
  background: aliceblue;
  border-radius: 100%;
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--digitab-dark);
}


.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

.feature-benefits i {
  color: var(--digitab-secondary);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-image-container {
    min-height: 400px;
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {


  .service-feature {
    flex-direction: column;
    gap: 1px;
    padding: 1.5rem;
  }
  
  .feature-icon {
    align-self: center;
  }
  .feature-icon
  {
    margin-bottom: 5px;
  }
}

/*Cloud Service Page CSS End*/


/*Data & Analytics Service Page CSS Start*/

/* Diagonal Section Styles */
.bi-diagonal-section {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}



.bi-content-wrapper {
  display: flex;
  gap: 4rem;
  align-items: center;
}

/* Text Content Styles */
.bi-text-content {
  flex: 1;
}


/* Features Styles */
.bi-features-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.bi-feature {
  display: flex;
  gap: 1.5rem;
}

.feature-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--digitab-primary);
  line-height: 1;
}

.feature-content h3 {
  color: var(--digitab-secondary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-content p {
  margin-bottom: 1rem;
}

.feature-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-tech li {
  background: rgba(11, 130, 230, 0.1);
  color: var(--digitab-secondary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Image Card Styles */
.bi-image-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(11, 130, 230, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.bi-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--digitab-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.image-card-badge i {
  color: var(--digitab-primary);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .bi-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .bi-image-card {
    max-width: 600px;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 768px) {

  .bi-feature {
    flex-direction: column;
  }
  
  .feature-number {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  .stats-overlay {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}

/*Data & Analytics Service Page CSS End*/

/*Application Development Services Page CSS Start*/

.custom-hero {
  background-color: var(--digitab-light);
  padding: 20px 0;
}


.hero-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image
{
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(11, 130, 230, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover
{
  transform: perspective(1000px) rotateY(0deg);
}
.hero-image img {
  width: 100%;
}


.application-service-details {
  padding: 20px 0;
  background-color: var(--digitab-light);
}

.details-container {
  margin: 0 auto;
}

.details-header {
  text-align: center;
  margin-bottom: 10px;
}


.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--digitab-primary);
}

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

.application-detail-icon {
  width: 50px;
  height: 50px;
  background: var(--btn-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.detail-card h3 {
  color: var(--digitab-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    order: 2;
    text-align: center;
  }

  .hero-image {
    order: 1;
  }    

}

/*Application Development Services Page CSS End*/


/*Blog Page CSS Start*/

.blog-list-container {
  margin: 0 auto;
  padding: 20px 0;
}


/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 40px;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

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

.blog-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.blog-category {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  color: var(--digitab-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: max-content;
  bottom: 0;
  right: 10px;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
  font-weight: 700;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: auto;
  border-top: 1px solid rgb(0 0 0 / 10%);
  padding-top: 10px;
}

.blog-date {
  color: var(--digitab-secondary);
  font-size: 16px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.read-more {
  color: var(--digitab-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.read-more:hover
{
  color: var(--digitab-secondary);
  transition: all 0.3s ease;
}



/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

/*Blog Page CSS End*/

/*Blog Detail Page CSS Start*/

.detail-blog-container {
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.5rem;
}

/* Main Content */

.detail-blog-meta {
  position: relative;
  margin-bottom: 20px;
}

.blog-meta-content
{
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
}

@media(max-width: 425px)
{
  .blog-meta-content
  {
    flex-direction: column;
    gap: 5px;
  }
}

.detail-blog-category {
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  color: var(--digitab-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: max-content;
/*  position: absolute;
  bottom: 10px;
  left: 10px;*/
}

.detail-blog-date
{
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  color: var(--digitab-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: max-content;
/*  position: absolute;
  bottom: 10px;
  right: 10px;*/
}


.detail-blog-image 
{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-body p {
  font-size: 1.05rem;
}

.blog-body h2 {
  color: var(--digitab-secondary);
  margin: 2.5rem 0 1.5rem;
  font-size: 1.6rem;
}

.blog-body blockquote {
  border-left: 4px solid var(--digitab-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--digitab-dark);
  opacity: 0.9;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--digitab-primary);
  color: var(--digitab-dark);
  font-weight: 600;
}

/* Latest Articles Widget */
.latest-article {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.latest-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.latest-article img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.latest-article h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  letter-spacing: 1px;
}

.latest-article a {
  color: var(--digitab-secondary);
  text-decoration: none;
}

.latest-article a:hover {
  color: var(--digitab-secondary);
}

.latest-article-date {
  font-size: 0.8rem;
  color: var(--digitab-dark);
  display: flex;
  align-items: center;
  gap:5px;
}
.latest-article-date i
{
  margin-top: 4px;
}

/* Services Widget */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-list a {
  color: var(--digitab-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.service-list a:hover {
  color: var(--digitab-secondary);
}


/* Contact Widget */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-info li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--digitab-primary);
  font-size: 1.2rem;
}

.contact-text {
  flex: 1;
}

.contact-text a {
  color: var(--digitab-secondary);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .detail-blog-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .detail-blog-container {
    padding: 1.5rem;
  }



  .blog-image {
    height: 250px;
  }
}

/*Blog Detail Page CSS End*/

/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ffbc 0%, #0b82e6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(11, 130, 230, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 130, 230, 0.4);
}

/* Responsive Adjustment */

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .description {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .digitab-topbar
  {
    display: none;
  }
  .digitab-header .navbar-brand img
  {
    height: 40px;
  }
  .process-steps {
    align-items: center;
  }
  .banner-image-container
  {
    height: 300px;
  }
  .contact-header
  {
    margin-bottom: 20px;
  }
  .privacy-policy-details
  {
    padding: 0 15px;
  }
  .digitab-light-banner
  {
    padding: 10px;
  }
  .about-digitab
  {
    padding: 20px 0;
  }
  .about-choose-section
  {
    padding: 20px 10px;
  }
  .about-container
  {
    padding: 0 10px;
  }
  .about-content
  {
    padding: 10px 10px;
  }
  .team-grid
  {
    margin: 1rem 0;
    gap: 1rem;
  }
  .member-info
  {
    padding: 1rem;
  }
  .leadership-showcase
  {
    padding: 20px 0;
  }
  .values-section, .openings-section
  {
    padding: 20px 0;
  }
  .value-card h3
  {
    font-size: 20px;
  }
  .jobs-grid
  {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .benefits-section
  {
    padding: 0 0 20px 0;
  }
  .digitab-nav .dropdown-menu.dropdown-submenu
  {
    position: relative;
    top: 0;
    left: 20px;
    width: 230px;
  }
  .btn
  {
    padding: 10px 20px !important;
    font-size: 14px;
  }
  .feature-card, .feature-item
  {
    padding: 20px 20px;
  }
  .banner-text, .banner-content p, p
  {
    font-size: 0.9rem;
  }
  .about-text, .about-text-wrapper p, .about-description p, .reason-text, .footer-about-text p, .service-content p, .blog-body p, .blog-body li
  {
    font-size: 0.9rem;
  }
  .banner-content
  {
    padding: 0;
  }
  .detail-blog-image
  {
    height: auto;
  }
  .sidebar-widget
  {
    padding: 1rem;
  }
  .footer-top
  {
    padding-bottom: 0;
  }
  .team-showcase .member-info h3
  {
    font-size: 1.5rem;
  }
  .feature-content h3, .detail-card h3, .feature-content h3
  {
    font-size: 1.3rem;
  }
}