.elementor-66 .elementor-element.elementor-element-11ceed7{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-fc3763f *//* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', Arial, sans-serif;
}

body{
  background:#fafafa;
  color:#333;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HERO ================= */
.hero{
  background:linear-gradient(-45deg,#000,#5a0000,#b30000,#000);
  background-size:400% 400%;
  animation:heroGradient 14s ease infinite;
  padding:90px 0;
  text-align:center;
  color:#fff;
}

@keyframes heroGradient{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.hero h1{
  color:#fff;
  font-size:38px;
  text-shadow:0 4px 15px rgba(0,0,0,0.6);
}

.hero p{
  color:#fff;
  opacity:0.9;
}

.hero-box span{
  display:inline-block;
  margin:10px 6px 0;
  padding:10px 18px;
  background:rgba(255,255,255,0.18);
  border-radius:30px;
  font-size:14px;
  transition:0.3s ease;
}

.hero-box span:hover{
  background:rgba(255,255,255,0.35);
}

/* ================= SECTIONS ================= */
.section{
  padding:80px 0;
}

.bg-light{
  background:#f3f3f3;
}

/* subtle animated background (alive feel) */
.motion-bg{
  background:linear-gradient(-45deg,#ffffff,#f5f5f5,#ffffff);
  background-size:300% 300%;
  animation:softBg 18s ease infinite;
}

@keyframes softBg{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

h2{
  text-align:center;
  margin-bottom:40px;
  color:#b30000;
  font-size:28px;
}

.hindi{
  margin-top:15px;
  font-size:16px;
}

/* ================= MODULE LIST (MAIN STAR) ================= */
.list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

/* module item */
.list li{
  position:relative;
  background:#fff;
  padding:28px 22px;
  border-radius:18px;
  box-shadow:0 14px 35px rgba(0,0,0,0.14);
  transition:0.35s ease;
  overflow:hidden;
}

/* floating light animation */
.list li::after{
  content:'';
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at center,
    rgba(255,215,0,0.12),
    transparent 60%);
  opacity:0;
  transition:0.4s;
}

/* icon bubble */
.list li::before{
  content:"💻";
  position:absolute;
  top:-15px;
  left:20px;
  width:34px;
  height:34px;
  background:#b30000;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

/* hover effect */
.list li:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 45px rgba(0,0,0,0.22);
}

.list li:hover::after{
  opacity:1;
}

/* ================= MODULE-WISE ICON VARIATION ================= */
.section:nth-of-type(3) .list li::before{ content:"💻"; }   /* Computer */
.section:nth-of-type(4) .list li::before{ content:"📝"; }   /* Word */
.section:nth-of-type(5) .list li::before{ content:"📊"; }   /* PPT */
.section:nth-of-type(6) .list li::before{ content:"📈"; }   /* Excel */
.section:nth-of-type(7) .list li::before{ content:"🌐"; }   /* Internet */

/* ================= JOB SCOPE ================= */
.module-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.module-box{
  position:relative;
  background:#fff;
  width:180px;
  height:180px;
  margin:auto;
  border-radius:50%;
  text-align:center;
  padding-top:45px;
  box-shadow:0 16px 38px rgba(0,0,0,0.18);
  transition:0.4s ease;
}

/* slow edge animation (not irritating) */
.module-box::before{
  content:'';
  position:absolute;
  inset:-7px;
  border-radius:50%;
  border:3px dashed #ffd700;
  animation:slowSpin 18s linear infinite;
}

@keyframes slowSpin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.module-box i{
  font-size:34px;
  color:#b30000;
  margin-bottom:10px;
}

.module-box p{
  font-size:14px;
  font-weight:600;
}

.module-box:hover{
  background:#b30000;
  transform:translateY(-8px);
}

.module-box:hover i,
.module-box:hover p{
  color:#fff;
}
/* FIX: ICON CUT ISSUE */
.list li{
  overflow: visible !important;
}/* End custom CSS */