.elementor-5289 .elementor-element.elementor-element-0d62b74{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c97c9a1 *//* --- Devyom Brand Colors --- */
:root {
  --devyom-navy: #1C457D;
  --devyom-blue: #3A8ECA;
  --devyom-gold: #F6B128;
  --devyom-bg: #F8FAFC;
  --devyom-text: #334155;
  --devyom-white: #ffffff;
  --devyom-gray: #e2e8f0;
}

.devyom-it-wrapper {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: var(--devyom-bg);
  color: var(--devyom-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- 1. Hero Banner with Slider --- */
.devyom-hero-slider {
  position: relative; 
  height: 60vh; 
  min-height: 450px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  overflow: hidden; 
  padding: 0 5%;
}

.hero-slide {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-size: cover; 
  background-position: center; 
  opacity: 0; 
  animation: bgFade 15s infinite; 
  z-index: 1;
}

/* Replace these URLs with your IT/Networking background images */
.slide-1 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/01/it-consulting-market-surges-key-trends-and-insights.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/08/so5-scaled.png'); animation-delay: 5s; }
.slide-3 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/08/sof1-scaled.png'); animation-delay: 10s; }

@keyframes bgFade {
  0% { opacity: 0; transform: scale(1); }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

.devyom-hero-slider::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(135deg, rgba(28, 69, 125, 0.9) 0%, rgba(17, 42, 79, 0.8) 100%); 
  z-index: 2;
}

.devyom-hero-slider::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  height: 5px; 
  background: var(--devyom-blue); 
  z-index: 3;
}

.it-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.it-badge {
  display: inline-block;
  background-color: rgba(58, 142, 202, 0.15);
  color: var(--devyom-blue);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(58, 142, 202, 0.4);
}

.devyom-hero-slider h1 {
  color: var(--devyom-white);
  font-size: 46px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.devyom-hero-slider p {
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.6;
}

/* --- 2. Tech Stack Slider --- */
.it-tech-stack {
  background: var(--devyom-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--devyom-gray);
}
.tech-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tech-slide-track {
  display: flex;
  width: calc(200px * 12); /* Width of slide * total slides */
  animation: scroll 20s linear infinite;
}
.tech-slide {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #94a3b8;
  gap: 10px;
}
.tech-slide i {
  font-size: 28px;
  color: var(--devyom-blue);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 6)); }
}

/* --- 3. Impact Stats --- */
.it-stats-section {
  background: rgba(58, 142, 202, 0.05);
  padding: 60px 5%;
}
.it-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.it-stat-box .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--devyom-navy);
  margin-bottom: 5px;
}
.it-stat-box .stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--devyom-gold);
  text-transform: uppercase;
}

/* --- Global Section Headers --- */
.it-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.it-section-header h2 {
  color: var(--devyom-navy);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.it-section-header p {
  font-size: 18px;
  color: var(--devyom-text);
  margin-bottom: 20px;
}
.header-underline {
  width: 60px;
  height: 4px;
  background-color: var(--devyom-blue);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- 4. Services Grid --- */
.it-services-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.it-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.it-service-card {
  background-color: var(--devyom-white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}
.it-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(28, 69, 125, 0.1);
  border-top: 4px solid var(--devyom-blue);
}
.it-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(28, 69, 125, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.it-icon-wrapper i {
  font-size: 28px;
  color: var(--devyom-gold);
  transition: all 0.3s ease;
}
.it-service-card:hover .it-icon-wrapper { background: var(--devyom-navy); }
.it-service-card:hover .it-icon-wrapper i { color: var(--devyom-gold); transform: scale(1.1); }
.it-service-card h3 { color: var(--devyom-navy); font-size: 22px; font-weight: 700; margin: 0 0 20px 0; }
.it-service-list { list-style: none; padding: 0; margin: 0; }
.it-service-list li { font-size: 15px; margin-bottom: 15px; display: flex; align-items: flex-start; }
.it-service-list li i { color: var(--devyom-blue); font-size: 14px; margin-top: 4px; margin-right: 12px; }

/* --- 5. How We Work (Process) --- */
.it-process-section {
  background: var(--devyom-white);
  padding: 80px 5%;
}
.it-process-row {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  gap: 50px;
}
.it-process-row.reverse {
  flex-direction: row-reverse;
}
.it-process-text {
  flex: 1;
}
.it-process-image {
  flex: 1;
}
.it-process-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.process-step {
  color: var(--devyom-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.it-process-text h3 {
  color: var(--devyom-navy);
  font-size: 28px;
  margin: 0 0 15px 0;
}

/* --- 6. Comparison Table --- */
.it-comparison-section {
  padding: 80px 5%;
  max-width: 1000px;
  margin: 0 auto;
}
.table-responsive {
  overflow-x: auto;
}
.it-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--devyom-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.it-table th, .it-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--devyom-gray);
}
.it-table th {
  background: var(--devyom-navy);
  color: var(--devyom-white);
  font-size: 18px;
}
.it-table th.highlight-col {
  background: var(--devyom-blue);
}
.it-table td.highlight-col {
  background: rgba(58, 142, 202, 0.05);
  font-weight: 600;
  color: var(--devyom-navy);
}
.text-green { color: #10b981; margin-right: 8px; }

/* --- 7. Final CTA --- */
.it-cta-section {
  background: var(--devyom-navy);
  padding: 80px 5%;
  text-align: center;
  color: var(--devyom-white);
}
.it-cta-section h2 {
  font-size: 36px;
  margin: 0 0 20px 0;
  color: var(--devyom-white);
}
.it-cta-section p {
  font-size: 18px;
  margin: 0 auto 30px auto;
  max-width: 600px;
  color: #cbd5e1;
}
.it-btn-gold {
  display: inline-block;
  background: var(--devyom-gold);
  color: var(--devyom-navy);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.it-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(246, 177, 40, 0.4);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .devyom-hero-slider h1 { font-size: 32px; }
  .it-section-header h2 { font-size: 28px; }
  .it-process-row, .it-process-row.reverse { flex-direction: column; text-align: center; }
  .it-stat-box { margin-bottom: 20px; }
  .it-table th, .it-table td { padding: 15px 10px; font-size: 14px; }
}/* End custom CSS */