.elementor-64 .elementor-element.elementor-element-2c56aa7{--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-5413739 *//* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body{
  background:#f9f9f9;
  color:#333;
  line-height:1.6;
}

.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{
  font-size:42px;
  margin-bottom:10px;
  text-shadow:0 4px 15px rgba(0,0,0,0.6);
}

.hero p{
  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;
}

/* ================= SECTIONS ================= */
.section{
  padding:80px 0;
}

.bg-light{
  background:#f3f3f3;
}

.motion-bg{
  background:linear-gradient(-45deg,#ffffff,#f5f5f5,#ffffff);
  background-size:300% 300%;
  animation:softBg 16s 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;
}

/* ================= MODULE LIST → UI BLOCKS ================= */
/* ================= MODULE CARDS NEW UI ================= */

.list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  list-style:none;
  max-width:1100px;
  margin:auto;
}

/* NEW CARD STYLE */
.list li{
  position:relative;
  padding:28px 22px;
  border-radius:18px;
  background:linear-gradient(145deg,#ffffff,#f4f4f4);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  font-size:15px;
  font-weight:500;
  overflow:hidden;
  transition:0.4s ease;
}

/* moving animated border (tumhari preferred style) */
.list li::before{
  content:'';
  position:absolute;
  inset:-2px;
  border-radius:18px;
  background:linear-gradient(120deg,#ffd700,#b30000,#ffd700);
  z-index:-1;
  animation:moveBorder 6s linear infinite;
}

@keyframes moveBorder{
  0%{filter:hue-rotate(0deg);}
  100%{filter:hue-rotate(360deg);}
}

/* inner glow layer */
.list li::after{
  content:'';
  position:absolute;
  inset:2px;
  border-radius:16px;
  background:#fff;
  z-index:-1;
}

/* hover effect */
.list li:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* icon tick */
.list li span{
  color:#b30000;
  font-weight:600;
}


/* ================= JOB SCOPE (ALREADY ICON BASED) ================= */
.module-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.module-box{
  position:relative;
  background:#fff;
  padding:40px 20px;
  border-radius:50%;
  width:180px;
  height:180px;
  margin:auto;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  transition:0.35s ease;
}

.module-box i{
  font-size:34px;
  color:#b30000;
  margin-bottom:10px;
}

.module-box p{
  font-size:14px;
  font-weight:600;
}

/* animated edge (graphic designing style) */
.module-box::before{
  content:'';
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border:3px dashed #ffd700;
  animation:rotateEdge 10s linear infinite;
}

@keyframes rotateEdge{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.module-box:hover{
  background:#b30000;
  color:#fff;
  transform:translateY(-6px);
}

.module-box:hover i{
  color:#ffd700;
}
.hero h1{
  color:#fff !important;
  text-shadow:0 4px 15px rgba(0,0,0,0.6);
}
/* icon styling inside module cards */
.list li i{
  width:34px;
  height:34px;
  background:#b30000;
  color:#fff;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  font-size:14px;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  transition:0.3s;
}

/* hover effect */
.list li:hover i{
  background:#ffd700;
  color:#000;
}
/* ================= PREMIUM ICON TIMELINE STYLE ================= */

.list li{
  position:relative;
  padding:22px 20px 22px 70px; /* left space for icon */
  border-radius:16px;
  background:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  overflow:hidden;
}

/* LEFT VERTICAL TIMELINE LINE */
.list li::before{
  content:'';
  position:absolute;
  left:28px;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(#b30000,#ffd700,#b30000);
  animation:lineGlow 6s linear infinite;
}

@keyframes lineGlow{
  0%{filter:hue-rotate(0deg);}
  100%{filter:hue-rotate(360deg);}
}

/* ICON BOX */
.list li i{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  background:#b30000;
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  z-index:2;
  box-shadow:0 10px 20px rgba(0,0,0,0.25);
  transition:0.4s;
}

/* MOVING EDGE AROUND ICON */
.list li i::after{
  content:'';
  position:absolute;
  inset:-3px;
  border-radius:14px;
  border:2px dashed #ffd700;
  animation:rotateEdge 8s linear infinite;
}

@keyframes rotateEdge{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* GLOW EFFECT ON HOVER */
.list li:hover i{
  background:#ffd700;
  color:#000;
  box-shadow:0 0 18px rgba(255,215,0,0.9);
}

.list li:hover{
  transform:translateX(6px);
  transition:0.3s;
}/* End custom CSS */