			/* ===== PROCESS POPUP OVERLAY ===== */
.process-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== POPUP BOX ===== */
.process-content {
  background: #ffffff;
  width: 420px;
  max-width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popupFade 0.3s ease;
}

/* ===== TITLE ===== */
.process-content h2 {
  margin-bottom: 15px;
  color: #1a237e;
  font-size: 24px;
}

/* ===== LIST ===== */
.process-content ul {
  padding-left: 20px;
}

.process-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

/* ===== CLOSE BUTTON ===== */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: red;
}

/* ===== BUTTON ===== */
.process-btn {
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.process-btn:hover {
  background: #333;
}

/* ===== ANIMATION ===== */
@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .process-content {
    width: 90%;
    padding: 20px;
  }
}


.process-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;

  align-items: center;
  justify-content: center;
}









.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}



.pro-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;   /* 🔥 important */
  display: block;
}






















/* ===== CARD FIX ===== */
.service-icon-inner {
  background: #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;

  height: 200px;              /* 🔥 SAME HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* CENTER CONTENT */
  align-items: center;
}

/* ===== IMAGE FIX ===== */
.service-icon-inner img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ===== TEXT FIX ===== */
.service-icon-inner h3 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  min-height: 40px;   /* 🔥 TEXT HEIGHT SAME */
}








/* ===== PORTFOLIO SECTION FIX ===== */
#portfolio {
  height: auto !important;
  min-height: 100vh;
  padding: 40px 20px;
}

/* ===== GRID LAYOUT ===== */
.projects-col.new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* ===== IMAGE CARD ===== */
.pro-img {
  overflow: hidden;
  border-radius: 12px;
}

/* ===== IMAGE FIX ===== */
.pro-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.pro-img img:hover {
  transform: scale(1.05);
}

/* ===== REMOVE EXTRA SPACE ===== */
.projects.fullpage-section {
  align-items: flex-start !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-col.new {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-col.new {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-img img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .projects-col.new {
    grid-template-columns: repeat(1, 1fr);
  }
}



































/* ===== SECTION STYLE ===== */
#portfolio {
  padding: 60px 40px;
  background: #f5f7fb;
}

/* ===== TITLE STYLE ===== */
#portfolio h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 30px;
}

/* ===== GRID ===== */
.projects-col.new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.pro-img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* ===== IMAGE ===== */
.pro-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.4s ease;
}

/* ===== HOVER EFFECT ===== */
.pro-img:hover img {
  transform: scale(1.1);
}

/* ===== OVERLAY EFFECT ===== */
.pro-img::after {
  content: "View Project";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,0.6);
  padding: 8px 15px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.3s;
}

.pro-img:hover::after {
  opacity: 1;
}

/* ===== CARD HOVER LIFT ===== */
.pro-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ===== FIX LAST ROW CENTER ===== */
.projects-col.new {
  justify-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .projects-col.new {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .projects-col.new {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-col.new {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-img img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .projects-col.new {
    grid-template-columns: repeat(1, 1fr);
  }
}









































/* ===== SLIDER CONTAINER ===== */
.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== EACH SLIDE ===== */
.custom-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.custom-slide.active {
  display: flex;
}

/* ===== IMAGE ===== */
.slide-image {
  width: 50%;
}

.slide-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== CONTENT ===== */
.slide-content {
  width: 50%;
  padding: 20px;
}

.slide-content p {
  font-size: 20px;
  color: #444;
}

.slide-content h2 {
  font-size: 40px;
  font-weight: 700;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .custom-slide {
    flex-direction: column;
  }

  .slide-image,
  .slide-content {
    width: 100%;
  }

  .slide-image img {
    height: 250px;
  }
}






.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
}

.custom-slide.active {
  display: flex;
}

.slide-image {
  width: 50%;
}

.slide-image img {
  width: 100%;
  border-radius: 12px;
}

.slide-content {
  width: 50%;
}

.slide-content h2 {
  font-size: 40px;
  font-weight: 700;
}

.slide-content p {
  font-size: 18px;
  color: #555;
}



















































/* ===== SECTION ===== */
#why {
  padding: 80px 100px;
}












/* ===== MAIN SLIDER ===== */
.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== SLIDE LAYOUT ===== */
.custom-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 80px;
  width: 100%;
}

.custom-slide.active {
  display: flex;
}

/* ===== IMAGE SECTION ===== */
.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slide-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ===== CONTENT SECTION ===== */
.slide-content {
  flex: 1;
  max-width: 520px;
}

.slide-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.slide-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

/* ===== BUTTONS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #000;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* ===== DOTS ===== */
.slider-dots {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  margin: 8px 0;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .custom-slide {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-image img {
    max-width: 100%;
  }

  .slider-dots {
    right: 10px;
  }
}






























































.process-flow{
    display:flex !important;
    flex-direction:column !important;
    gap:30px !important;
    width:100% !important;
}

.process-step{
    display:flex !important;
    align-items:center !important;
    position:relative !important;
    width:100% !important;
}

.step-number{
    width:40px;
    min-width:40px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:#ff9800;
}

.step-icon{
    width:70px;
    min-width:70px;
    height:70px;
    display:flex !important;
    justify-content:center;
    align-items:center;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.step-icon img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.step-content{
    flex:1 !important;
    width:auto !important;
    margin-left:20px !important;
    display:block !important;
    overflow:visible !important;
}

.step-content h3{
    display:block !important;
    font-size:22px;
    color:#0a2c7d;
    margin:0 0 8px;
}

.step-content p{
    display:block !important;
    font-size:15px;
    color:#555;
    margin:0;
    line-height:1.6;
}





/* =========================
   ABOUT SECTION OVERRIDE
========================= */

#about .about-wrapper{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:60px !important;
    width:100% !important;
}

#about .about-image-section{
    width:30% !important;
    text-align:center !important;
    flex:0 0 30% !important;
}

#about .about-content-section{
    width:70% !important;
    flex:0 0 70% !important;
}

#about .owner-image{
    width:100% !important;
    max-width:340px !important;
    height:auto !important;
    display:block !important;
    margin:0 auto !important;
    border-radius:12px !important;
    object-fit:cover !important;
    box-shadow:0 15px 35px rgba(0,0,0,.18) !important;
}

#about .about-style{
    margin-top:20px !important;
    font-size:20px !important;
    font-weight:700 !important;
    font-style:italic !important;
    color:#0b2c82 !important;
    line-height:1.5 !important;
    text-align:center !important;
}

#about .about-content-section h4{
    color:#d07a00 !important;
    font-size:22px !important;
    text-transform:uppercase !important;
    margin-bottom:10px !important;
}

#about .about-content-section h2{
    color:#0b2c82 !important;
    font-size:46px !important;
    line-height:1.2 !important;
    margin-bottom:25px !important;
}

#about .about-content-section p{
    font-size:18px !important;
    line-height:1.9 !important;
    color:#555 !important;
    margin-bottom:20px !important;
    text-align:justify !important;
}

/* Tablet */

@media (max-width:991px){

#about .about-wrapper{
    flex-direction:column !important;
    gap:40px !important;
}

#about .about-image-section,
#about .about-content-section{
    width:100% !important;
    flex:100% !important;
}

#about .owner-image{
    max-width:280px !important;
}

#about .about-content-section h4,
#about .about-content-section h2{
    text-align:center !important;
}

#about .about-content-section h2{
    font-size:34px !important;
}

}

/* Mobile */

@media (max-width:767px){

#about{
    padding:70px 0 !important;
}

#about .about-wrapper{
    gap:30px !important;
}

#about .owner-image{
    max-width:220px !important;
}

#about .about-style{
    font-size:16px !important;
}

#about .about-content-section h2{
    font-size:28px !important;
}

#about .about-content-section p{
    font-size:16px !important;
    line-height:1.7 !important;
    text-align:left !important;
}

}






/* =========================================
   ABOUT SECTION FINAL OVERRIDE
========================================= */

#about .founder-block{
    display:flex !important;
    align-items:flex-start !important;
    justify-content:space-between !important;
    gap:45px !important;
    width:100% !important;
    margin-top:40px !important;
}

#about .founder-left{
    width:30% !important;
    flex:0 0 30% !important;
    text-align:center !important;
}

#about .founder-right{
    width:70% !important;
    flex:0 0 70% !important;
}

#about .owner-image{
    width:100% !important;
    max-width:300px !important;
    display:block !important;
    margin:0 auto !important;
    border-radius:10px !important;
    object-fit:cover !important;
    box-shadow:0 10px 25px rgba(0,0,0,.15) !important;
}

#about .about-style{
    margin-top:20px !important;
    text-align:center !important;
    font-size:20px !important;
    font-style:italic !important;
    font-weight:700 !important;
    line-height:1.6 !important;
    color:#0b2c82 !important;
}

#about .founder-right p{
    display:block !important;
    width:100% !important;
    margin:0 0 22px !important;
    font-size:18px !important;
    line-height:1.9 !important;
    color:#555 !important;
    text-align:justify !important;
    float:none !important;
    clear:both !important;
}

/* Remove old styles */

#about .owner-content,
#about .about-wrapper,
#about .about-image-section,
#about .about-content-section{
    display:unset !important;
    width:auto !important;
    float:none !important;
    padding:0 !important;
    margin:0 !important;
}

/* Responsive */

@media only screen and (max-width:991px){

#about .founder-block{
    flex-direction:column !important;
    gap:30px !important;
}

#about .founder-left,
#about .founder-right{
    width:100% !important;
    flex:0 0 100% !important;
}

#about .owner-image{
    max-width:260px !important;
}

#about .about-style{
    margin-bottom:20px !important;
}

}

@media only screen and (max-width:767px){

#about .owner-image{
    max-width:220px !important;
}

#about .about-style{
    font-size:17px !important;
}

#about .founder-right p{
    font-size:16px !important;
}

}



/* ========= ABOUT LAYOUT ========= */

#about .founder-block{
    display:grid !important;
    grid-template-columns:300px 1fr;
    gap:45px;
    align-items:start;
    margin-top:35px;
}

#about .founder-left{
    width:100%;
}

#about .owner-image{
    width:100%;
    display:block;
    border-radius:10px;
}

#about .about-style{
    margin-top:18px;
    text-align:center;
    font-size:22px;
    font-style:italic;
    font-weight:bold;
    color:#0b2c82;
    line-height:1.5;
}

#about .founder-right{
    width:100%;
}

#about .founder-right p{
    margin:0 0 22px;
    text-align:justify;
    line-height:1.9;
}

/* remove old widths */

#about .founder-left,
#about .founder-right{
    float:none !important;
}

/* mobile */

@media(max-width:768px){

#about .founder-block{
    grid-template-columns:1fr;
}

#about .founder-left{
    max-width:260px;
    margin:auto;
}

}



/* ============================
   FINAL ABOUT SECTION
=============================*/

#about .container{
    max-width:1200px !important;
}

#about .about-col{
    width:100% !important;
    float:none !important;
    padding:0 !important;
}

#about .founder-block{
    display:grid !important;
    grid-template-columns:320px 1fr !important;
    gap:50px !important;
    align-items:start !important;
    margin-top:40px !important;
    width:100% !important;
}

#about .founder-left{
    width:320px !important;
}

#about .founder-right{
    width:auto !important;
}

#about .owner-image{
    width:100% !important;
    height:auto !important;
    display:block !important;
    border-radius:8px !important;
}

#about .about-style{
    margin-top:20px !important;
    text-align:center !important;
    font-size:22px !important;
    font-weight:700 !important;
    font-style:italic !important;
    line-height:1.5 !important;
}

#about .founder-right p{
    display:block !important;
    margin:0 0 25px !important;
    line-height:1.9 !important;
    text-align:justify !important;
    float:none !important;
    width:auto !important;
    clear:none !important;
}

@media(max-width:768px){

#about .founder-block{
    display:block !important;
}

#about .founder-left{
    width:260px !important;
    margin:0 auto 30px !important;
}

}




/* ===== ABOUT FIX ===== */

#about .founder-block{
    display:flex !important;
    align-items:flex-start !important;
    gap:50px !important;
    width:100% !important;
}

#about .founder-left{
    flex:0 0 300px !important;
    max-width:300px !important;
}

#about .founder-right{
    flex:1 !important;
    width:auto !important;
}

#about .about-text{
    display:block !important;
}

#about .about-text p{
    display:block !important;
    float:none !important;
    width:100% !important;
    margin:0 0 22px !important;
    line-height:1.9 !important;
    text-align:justify !important;
}

#about .owner-image{
    width:100% !important;
    display:block !important;
}

#about .about-style{
    text-align:center !important;
    margin-top:18px !important;
    font-size:22px !important;
    font-style:italic !important;
    font-weight:700 !important;
}

@media(max-width:768px){

#about .founder-block{
    display:block !important;
}

#about .founder-left{
    margin:0 auto 30px !important;
}

}



.owner-image{

}

.about-col{
padding: 0px !important;
}


