/* Contact form - stays fixed on screen */
.contact-form {
  position: fixed;
  top: 80px;
  right: 55px;
  z-index: 10000;
  display: none;
}

/* Form container with blue glow effect */
.form-container {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 450px;
  box-shadow: 
    0 0 0 1px rgba(0, 46, 138, 0.1), /* subtle inner border */
    0 5px 15px rgba(0, 46, 138, 0.1), /* close shadow */
    0 15px 35px rgba(0, 46, 138, 0.2); /* far shadow */
  border: 1px solid rgba(0, 46, 138, 0.15);
  transition: all 0.3s ease;
  position: relative;
  height: 470px;
  overflow-y: scroll;
}

/* Blue glow effect */
.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  /* box-shadow: 0 0 15px rgba(0, 46, 138, 0.3); */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.form-container:hover::before {
  opacity: 1;
}

/* Enhanced blue shadow element */
.form-container::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 5%;
  width: 90%;
  height: 20px;
  background: rgba(0, 46, 138, 0.15);
  border-radius: 50%;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.9;
}

/* Form header */
.form-header h2 {
  color: #002E8A;
  font-size: 1rem;
  margin: 0 0 25px 0;
  text-align: center;
  font-weight: 800;
  font-family: 'League Spartan', sans-serif;
  line-height: 1.3;
}

/* Form rows */
.form-row {
  margin-bottom: 20px;
 
}

/* Input fields */
.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 46, 138, 0.3);
  border-radius: 10px;
  font-size: 0.7rem;
  font-family: 'League Spartan', sans-serif;
  background: #002E8A;
  color: white;
  transition: all 0.3s ease;
}

/* Placeholder text */
.form-container input[type="text"]::placeholder,
.form-container input[type="tel"]::placeholder,
.form-container input[type="email"]::placeholder,
.form-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Focus states */
.form-container input[type="text"]:focus,
.form-container input[type="tel"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea:focus {
  outline: none;
  border-color: rgba(0, 46, 138, 0.6);
  background: #001f5e;
  box-shadow: 0 0 0 2px rgba(0, 46, 138, 0.2);
}

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

/* Form footer with buttons */
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Attach button */
.attach-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #002E8A;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'League Spartan', sans-serif;
  transition: all 0.3s;
  flex: 1;
}

.attach-button:hover {
  background: #0044b3;
  box-shadow: 0 5px 15px rgba(0, 46, 138, 0.3);
}

/* Submit button */
.form-footer button {
  background: #002E8A;
  color: white;
  border: none;
  padding: 12px 0;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'League Spartan', sans-serif;
  transition: all 0.3s;
  flex: 1;
}

.form-footer button:hover {
  background: #0044b3;
  box-shadow: 0 5px 15px rgba(0, 46, 138, 0.3);
}

.cancel-button {
    position: absolute;
    top: 10px; 
    right: 13px; 
    background: none; 
    border: none; 
    padding: 0; 
    cursor: pointer;
    z-index: 10;
    line-height: 1; 
    display: flex; 
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.cancel-button:hover {
    filter: brightness(1.2); /* Example: make the logo slightly brighter on hover */
      transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form {
    top: 80px;
    right: 15px;
    left: 15px;
    width: auto;
  }
  .form-container {
    width: auto;
    /* max-width: 100%; */
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
  .form-header h2 {
    font-size: 0.9rem;
  }
  .form-actions {
    flex-direction: column;
    gap: 2px;
  }
}

            :root {
    --logo-E-color: #0B4BB7;
    --logo-I-color: #C43235;
    --logo-T-color: #14176C;
}
            .blue-title,
.blue-title>span {
    font-weight: 700;
    /* font-family: Inter; */
    font-size: 35px;
    display: inline-block;
    line-height: 40px;

    @media (min-width:1250px) {
        font-size: 2.7vw !important;
        line-height: 4vw !important;
    }
}

.blue-title {
    margin: 20px 0px;
    padding-left: 15px;
    color: var(--logo-E-color);
}

.blue-title>span {
    color: var(--logo-T-color);
}
.s2digTransDesk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.737); /* Adjust 0.5 to make it lighter or darker */
  z-index: 0;
  pointer-events: none;
}

.s2digTransDesk {
  position: relative;
  z-index: 1;
}

.s2digTransDesk > * {
  position: relative;
  z-index: 1;
}

          .s2digTransDesk {
  background-image: url('/images/digital-transformation/background.webp');
  background-size: cover;

  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2vw;

        @media (max-width : 750px) {
            display:  none;
        }

h3 {
    font-size: 1.5vw;
    font-weight: bold;
    color: var(--logo-T-color);
    line-height: 2vw ;

}

h4.cent {text-align: center;}
h4.right {text-align: right;}

h4 {
    font-size: 0.95vw;
    font-weight: 500;
    color: var(--logo-T-color);
    line-height: 1.7vw ;
    margin-top: 0.5vw;
}

.centerImg{
    width: 40vw;
}

.bottomRow {
    display: flex;
    width: 100%;
   
}
.bottomSub {
    flex: 7;
}
.imgContainerdt{
    position: absolute;
    z-index: 5;
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    border: 5px solid #D9D9D9;
    background-color: white;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);

   background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
}
.stackText{
    position: absolute;
    width: 27vw;
}
          }


.s2digTransMob{
    padding: 25px;
    
        @media (min-width : 750px) {
            display:  none;
        }
        
    .s2dtdiv {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 30px 0;

        div{
            height:auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        img {
            width: 100px;
            height: 100px;
            margin: 0 20px;
        }
    }
    .s2dtdiv:nth-child(odd)  { flex-direction: row-reverse;
    div { text-align: right;}
    }

    h3 {
        font-size: 20px;
        font-weight: bold;
        color: var(--logo-T-color);
        line-height: 30px;
          @media (max-width : 550px) {
            font-size: 16px;
            line-height: 25px;
        }
    }

    h4 {
    font-size: 15px;
    font-weight: normal;
    color: var(--logo-T-color);
    line-height: 20px;
    @media (max-width : 550px) {
            font-size: 11px;
            line-height: 16px;
        }

    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Sora', sans-serif;
            line-height: 1.6;
            color: #1e3a8a;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Hero Section */
        .hero {
            margin-top: 60px;
           background: linear-gradient(135deg, var(--logo-T-color), var(--logo-E-color));
            color: white;
            padding: 4vw 2vw;
            text-align: center;
            position: relative;
            overflow: hidden;
            /* min-height: 90vh; */
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            animation: float 8s ease-in-out infinite;
        }

        .hero-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4vw;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(45deg, #ffffff, #e2e8f0, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient 4s ease infinite;
        }

        .hero .subtitle {
            font-size: 1.1vw;
            margin-bottom: 2rem;
            color: #e2e8f0;
            /* max-width: 1200px; */
            margin-left: auto;
            margin-right: auto;
        }

        .hero-image {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 300px;
            border-radius: 20px;
            object-fit: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            color: #1e3a8a;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section {
            padding: 6vw 2vw;
            position: relative;
            overflow: hidden;
        }

        .section-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #1e3a8a;
            text-align: center;
        }

        .section h3 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #1e3a8a;
        }
        
        /* Services Section - Card Grid Layout */
        .services-section {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

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

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
            border: 1px solid rgba(30, 58, 138, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1e3a8a;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin: 1rem 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #64748b;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1e3a8a;
            font-weight: bold;
        }

        /* About Section - Zigzag Layout */
        .about-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
        }

        .about-section h2 {
            color: white;
        }

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

        .about-content {
            z-index: 2;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

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

        .about-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .about-feature h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #e2e8f0;
        }

        /* Technologies Section - Horizontal Scroll */
        .tech-section {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            padding: 6rem 0;
        }

        .tech-scroll {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 2rem;
            margin: 2rem 0;
        }

        .tech-card {
            min-width: 300px;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
        }

        .tech-image {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        /* Contact Section - Split Layout */
        .contact-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin: 3rem 0;
        }

        .contact-form {
            /* background: white; */
            padding: 3rem;
            border-radius: 20px;
            /* box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1); */
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e3a8a;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .contact-info-card {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .contact-image {
            position: absolute;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;
            opacity: 0.1;
            z-index: 0;
        }
        /* Detailed Services Section */
        .detailed-services-section {
            background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
            padding: 0vw 2vw;
        }

        .service-detail {
            margin: 3vw 0;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.08);
            transition: all 0.4s ease;
        }

        .hover-image-container {
            position: relative;
        }

        .hover-reveal-image {
            position: absolute;
            top: 50%;
            right: -300px;
            transform: translateY(-50%);
            width: 400px;
            height: 300px;
            border-radius: 20px;
            object-fit: cover;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
        }

        .service-detail:hover .hover-reveal-image {
            opacity: 0.9;
            right: 50px;
            transform: translateY(-50%) scale(1.05);
        }

        .service-detail-content {
            padding: 4vw;
            
            /* position: relative; */
            z-index: 3;
         
        }

        .service-detail h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--logo-T-color);
            margin-bottom: 1rem;
        }

        .service-tagline {
            font-size: 1.3rem;
            color: var(--logo-E-color);
            font-weight: 600;
            margin-bottom: 3rem;
            font-style: italic;
        }

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

        .highlight-item {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 58, 138, 0.02));
            padding: 2rem;
            font-size: 0.98vw !important;
            border-radius: 15px;
            border-left: 4px solid #3b82f6;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
        }

        .highlight-item h4 {
            color: var(--logo-T-color);
            margin-bottom: 0.8rem;
          font-size: 1vw !important;
        }
        .highlight-item p{
            color: var(--logo-E-color);
        }

        .process-section {
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, var(--logo-T-color), var(--logo-E-color));
            border-radius: 20px;
            color: white;
        }

        .process-section h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border-left: 3px solid #60a5fa;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        /* Marketing Service Styles */
        .marketing-service {
           /* background: linear-gradient(135deg, #cfdef8 0%, #ffffff 100%); */
           background: white;
        }

        .marketing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 3rem 0;
        }

        .marketing-section h4 {
            color: var(--logo-T-color);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--logo-T-color);
            padding-bottom: 0.5rem;
        }

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

        .service-list li {
            padding: 0.3rem 0;
            text-align: justify;
            border-bottom: 1px solid #e2e8f0;
            color: var(--logo-E-color);
            transition: color 0.3s ease;
        }
        .service-type p{
        font-size: 0.98vw !important;
          color: var(--logo-E-color);
        }
        .service-list li:hover {
            color: var(--logo-E-color);
            padding-left: 1rem;
        }

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

        .service-type {
            /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(255, 255, 255, 0.5)); */
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border-top: 3px solid #3b82f6;
        }

        .service-type h5 {
            color: var(--logo-T-color);
            margin-bottom: 1rem;
           font-size: 1vw !important;
        }
       .analytics-features {
  display: grid;
  grid-template-columns: 1fr auto; /* Left: content, Right: image */
  align-items: start;
  gap: 2vw;
  margin: 3vw 0;
}
       .feature-item {
  font-size: 0.98vw !important;
  display: flex;
  align-items: center;
  gap: 1vw;
  width: 50vw;
  padding: 2vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(255, 255, 255, 0.8));
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
  margin-bottom: 1.5vw; /* add spacing */
}

.feature-item:last-child {
  margin-bottom: 0;
}
        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.1);
        }

        .feature-icon {
            font-size: 1.5rem;
            min-width: 40px;
        }

        .analytics-desc {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
            text-align: center;
            font-weight: 500;
        }

        /* Branding Service Styles */
        .branding-service {
            background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
        }

        .branding-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .branding-item {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            color: #1e3a8a;
            font-weight: 500;
        }

        .branding-item:hover {
            border-color: #3b82f6;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
        }

        .branding-tagline {
            text-align: center;
            font-size: 1.2rem;
            color: var(--logo-E-color);
            font-weight: 600;
            margin-top: 2rem;
            font-style: italic;
        }

        .automation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.automation {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  flex: 1 1 calc(25% - 1rem);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e2e8f0;
  color: var(--logo-E-color);
  font-size: 0.98vw !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.automation:hover {
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
}

.automation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4vw;
  margin-top: 3vw;
}

.automation-item {
  /* background: linear-gradient(135deg, #cfdef8 0%, #ffffff 100%); */
  padding: 2vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 0.98vw !important;
  /* height: 15vw; */
  text-align: center;
  border-radius: 15px;
  border-left: 4px solid #1b5096;
  display: flex;
  align-items:center;
  justify-content: center;
  gap: 1vw;
  transition: all 0.3s ease;
}

.automation-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(4, 81, 168, 0.438);
}

.automation-icon {
  font-size: 1.5rem;
  min-width: 40px;
  color: #22c55e;
}
        .crm-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin: 3rem 0;
        }

        .crm-section {
 /* background: linear-gradient(135deg, #cfdef8 0%, #ffffff 100%); */
             padding: 3rem;
             box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border-top: 4px solid #1b5096;
        }

        .crm-section h4 {
            color: #1e3a8a;
            font-size: 1.4vw;
            margin-bottom: 0.8rem;
            text-align: center;
        }

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

        .crm-list li {
            padding: 1rem 0;
            color:var(--logo-E-color);
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.98vw !important;
            padding-left: 1.5rem;
        }

        .crm-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--logo-T-color);
            font-weight: bold;
        }

        .crm-list li:hover {
            color: #1e3a8a;
            padding-left: 2rem;
        }

        .crm-footer {
               background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 3rem;
            font-weight: 500;
        }

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

        .security-item {
           background: linear-gradient(135deg, #cfdef8 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #1b5096;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .security-item:hover {
            border-color: #122568;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.1);
        }

        .security-icon {
            font-size: 2rem;
            color: #ef4444;
        }

        .security-desc {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
            text-align: center;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .section h2 {
                font-size: 2.2rem;
            }

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

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-image,
            .contact-image {
                display: none;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tech-scroll {
                padding: 1rem;
            }

            .tech-card {
                min-width: 250px;
            }

            /* Responsive styles for detailed services */
            .service-detail-content {
                padding: 2vw;

            }
            .dgimge{
                display: none;
            }

            .service-detail h3 {
                font-size: 2rem;
            }

            .service-highlights {
                grid-template-columns: 1fr;
            }

            .marketing-grid,
            .crm-sections {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
           .automation-features{
            margin-top: 3.5rem;
           }
            .automation-features,
            .branding-services,
            .security-services {
                grid-template-columns: 1fr;
            }

            .service-types {
                grid-template-columns: 1fr;
            }

            .hover-reveal-image {
                display: none;
            }

            .service-detail:hover .hover-reveal-image {
                display: none;
            }
        }

        /* Scroll animations trigger */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .scroll-animate.active {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 735px) {
                .glassdiv{
                    display: none !important;
                }
                .ourmis{
                        font-size: 12px !important;
                    }
                .tohelp{
                        font-size: 10px !important;
                    }
                .highlight-item h4 {
                    font-size: 14px !important;
                }

                .highlight-item p {
                    font-size: 12px !important;
                }

                .service-type h5 {
                    font-size: 12px !important;
                }

                .service-type p {
                    font-size: 12px !important;
                }

                .crm-section h4 {
                    font-size: 13px !important;
                }

                .crm-list li {
                    font-size: 12px !important;
                }
                .automation{
                    font-size: 12px !important;
                }
                .automation-item{
                    justify-content: start;
                    font-size: 12px !important;
                }
                .feature-item{
                    font-size: 12px !important;
                    width: 100% !important;
                }
            }
            .glassdiv{
                background-color:#ffffff15;;
                width: 70vw;
             
                height: 13vw;
                margin-left: 13vw;
                line-height: 2;
                padding: 3vw;
                border-radius: 10px;
            }
            .ourmis{
                font-size: 1.7vw;
                font-weight: 800;
                color: rgb(236, 236, 196);
                text-align: center;
            }
            .tohelp{
                font-size: 1vw;
                text-align: center;
            }
            /* WHATSAPP */
.whatsapp_1 {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 9999;
}
/* faq all pages css start */

.faq-container-div {
    width: 75%;
    height: auto;
    background-color: white;
    display: flex;
    padding: 3vw;
}

.faq-div2 {
    width: 100%;
}
@media(max-width:768px){
    .faq{
        max-width: 100% !important;
        padding-bottom:1.5rem;
    }
    .faqimg{

        display: none !important;
    }
   .mob-faq-pad{
    width: 100% !important;
    
   }
  
   .answer-p {
    width:80vw !important ;
        font-size:12px !important;
    }
     .faq-div2 {
        width: 100%;
    }

    .faq-question {
        font-size: 4vw !important;
    }

    .up-arrow-rotate {
        width: 6% !important;
    }

    .answer-p {
        font-size: 3vw;
    }

    .faq-container-div {
        height: auto;
        width:100%;
    }

    .mob-faq-pad {
        padding-bottom: 11% !important;
        height: auto;
    }

    .answer-li-2 {
        margin-left: 5vw;
        font-size: 3vw !important;
    }
    .faq-section{
    padding: 60px 0px;
}
}
.faq-section{
    
    padding: 60px 0px;
}
.faqimg img{
    position: absolute;
    margin-left: 66vw;
    width: 25% !important;
    margin-top: -20vw !important;
}
.faq-question {
    color: #14176C !important;
    font-weight: 600 !important;
    font-size: 1.1vw;
    margin-left: 0vw;
    margin-bottom: 0%;
}
.faq {
    max-width: 93%;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #DBDACE;
    cursor: pointer;
    margin-top: 0%;
    z-index: 2;
}

.question {
    font-size: 13px !important;
    font-weight: 100px !important;
    display: flex;
    color: var(--logo-T-color) !important;
    justify-content: space-between;
    align-items: center;

}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.answer-p {
    font-size: 13px !important;
    color: #133AA5 !important;
    margin-left: 1vw;
    margin-top: 13px;
}

.faq.active .answer {
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.faq.active .up-arrow-rotate {
    transform: rotate(180deg);
}

.up-arrow-rotate {
    transition: transform 0.5s ease-in;
    width: 30px;
    margin-top: 2%;
    margin-right: 1%;
}

.answer-li-2 {
    margin-left: 2.3vw;
    font-size: 1vw;
}

/* faq all pages css end */

.connect-button {
    height: 40px;
    width:180px;
    font-size: 18px;
    padding-top: 1px;
    border: none;
    margin-top: -180vw;
    border-radius: 8px;
    background-color: var(--logo-E-color);
    color: white;
    font-family: 'League Spartan', sans-serif !important;
    
   img {
        width: 25px;
        height: 25px;
        margin-bottom: -6px;
    }
}


.readmore-container {
    text-align: center;      /* centers the button */
    margin-top: 20px;        /* space above */
    margin-bottom: 20px;     /* space below */
}

.connect-button1 {
    height: 40px;
    width: 180px;
    font-size: 18px;
    padding: 4px 10px;
    border: none;
    border-radius: 8px;
    background-color: var(--logo-E-color);
    color: white;
    font-family: 'League Spartan', sans-serif !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.connect-button1 img {
    width: 22px;
    height: 22px;
    margin-bottom: -3px;
}
.dgimge {
  height: 21vw;
  position: sticky;
 top: 20vw;
  left: 48vw;
   border-radius: 1vw;
  cursor: pointer;
  border-radius: 1vw;
 z-index: 9999;
}
.brTopBottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

    .hide1 {
        @media (min-width:1050px) {
            color: transparent;
             gap: 30px;
        }
    }

    .hide2 {
        @media (max-width:1050px) {
           display: none;
        }
    }

    
    div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;

    }

    p {
        font-size: 15px;
      
        text-align: center;
           font-weight: bold;
    color: var(--logo-T-color);
    height: 75px;
    display: flex;
  justify-content: center;
  align-items: center; 
    }

    img {
        /* flex: 1; */
        gap: 15px;
        width: 170px;
    }
}
.brTopBottom p {
    height: auto !important; /* remove fixed height */
    margin-bottom: 6px !important; /* reduce space below heading */
    margin-top: 6px !important; /* reduce space above image */
}
.brTopBottom img {
    margin-top: 4px !important; /* tighten gap further */
}
/* ✅ Force one image per line on mobile & tablet */
@media (max-width: 900px) {
  .brTopBottom {
    flex-direction: column !important;
    align-items: center !important;
  }

  .brTopBottom div {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }

  .brTopBottom img {
    width: 70% !important;
    max-width: 250px;
  }
}
 @media(max-width:768px)
    {
     .gridimg{
      display: none;
     }
    }
     :root {
    --logo-E-color: #0B4BB7;
    --logo-I-color: #C43235;
    --logo-T-color: #14176C;
}
            .blue-title,
.blue-title>span {
    font-weight: 700;
    /* font-family: Inter; */
    font-size: 35px;
    display: inline-block;
    line-height: 40px;

    @media (min-width:1250px) {
        font-size: 2.7vw !important;
        line-height: 4vw !important;
    }
}

.blue-title {
    margin: 20px 0px;
    padding-left: 15px;
    color: var(--logo-E-color);
}

.blue-title>span {
    color: var(--logo-T-color);
}
.s2digTransDesk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.737); /* Adjust 0.5 to make it lighter or darker */
  z-index: 0;
  pointer-events: none;
}

.s2digTransDesk {
  position: relative;
  z-index: 1;
}

.s2digTransDesk > * {
  position: relative;
  z-index: 1;
}

          .s2digTransDesk {
  background-image: url('/images/digital-transformation/background.webp');
  background-size: cover;

  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 70vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2vw;

        @media (max-width : 750px) {
            display:  none;
        }

h3 {
    font-size: 1.5vw;
    font-weight: bold;
    color: var(--logo-T-color);
    line-height: 2vw ;

}

h4.cent {text-align: center;}
h4.right {text-align: right;}

h4 {
    font-size: 0.95vw;
    font-weight: 500;
    color: var(--logo-T-color);
    line-height: 1.7vw ;
    margin-top: 0.5vw;
}

.centerImg{
    width: 40vw;
}

.bottomRow {
    display: flex;
    width: 100%;
   
}
.bottomSub {
    flex: 7;
}
.imgContainerdt{
    position: absolute;
    z-index: 5;
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    border: 5px solid #D9D9D9;
    background-color: white;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);

   background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
}
.stackText{
    position: absolute;
    width: 27vw;
}
          }


.s2digTransMob{
    padding: 25px;
    
        @media (min-width : 750px) {
            display:  none;
        }
        
    .s2dtdiv {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 30px 0;

        div{
            height:auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        img {
            width: 100px;
            height: 100px;
            margin: 0 20px;
        }
    }
    .s2dtdiv:nth-child(odd)  { flex-direction: row-reverse;
    div { text-align: right;}
    }

    h3 {
        font-size: 20px;
        font-weight: bold;
        color: var(--logo-T-color);
        line-height: 30px;
          @media (max-width : 550px) {
            font-size: 16px;
            line-height: 25px;
        }
    }

    h4 {
    font-size: 15px;
    font-weight: normal;
    color: var(--logo-T-color);
    line-height: 20px;
    @media (max-width : 550px) {
            font-size: 11px;
            line-height: 16px;
        }

    }
}