*{
    margin: 0;
    padding: 0;
}
:root{
   --brand-color: hsl(220, 68%, 54%);
   --second-brand-color: rgb(255 0 0 / 42%);
   --text-color-white: #fff;
   --text-color-black: #000000;
   --text-colo-gray: #777;
   --background-color: #3ba39c09;
}
html,body{
      scroll-behavior: smooth;
      overflow-x: hidden;
}
/* ===== Custom Animated Scrollbar ===== */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6a5acd, #00bcd4);
  border-radius: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #836fff, #00e5ff);
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.7);
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #4b3cff, #00acc1);
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #6a5acd #f1f1f1;
}
/* hero section start  */
.hero_section{
  /* background: var(--background-color); */
  padding-top: 140px;
  padding-bottom: 50px;
  background: url(../images/bg.png);
  background-position: center;
  background-size: cover;
  background-position: center;

}
.hero_section .hero_section_row{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    row-gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding: 0px 20px;
}
.fast_line{
 font-size: 15px;
 font-weight: 100;
 font-family: poppins !important;
}
.name{
    color: var(--brand-color);
    font-size: 40px;
    font-family: font_english !important;
    font-weight: 400;
}
#hero_text .details{
    font-weight: 100;
    max-width: 600px;
    padding-top: 20px;
    font-family: poppins;
    font-size: 15px;
    text-align: justify;
    color: rgba(0,0,0,0.75);

}
.social_media_icon{
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    padding: 20px 15px;
}
.social-icon {
      width: 60px;
      height: 60px;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 24px;
      transition: 0.4s ease;
      cursor: pointer;
      position: relative;
      box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.social-icon:hover {
      transform: scale(1.2);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.social-icon.facebook {
      background: #1877f2;
}
.social-icon.instagram{
      background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}
.social-icon.youtube {
      background: #ff0000;
}
.social-icon.linkedin {
      background: #0077b5;
}
/* ===== BUTTON BASE ===== */
#buttons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    justify-content: center;
}

#btn-animated {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* ===== ICON ANIMATION ===== */
#btn-animated i {
    transition: transform .35s ease;
}

/* ===== SHINE EFFECT ===== */
#btn-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transition: left .6s ease;
}

/* ===== HOVER EFFECT ===== */
#btn-animated:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

#btn-animated:hover i {
    transform: translateX(4px);
}

#btn-animated:hover::before {
    left: 120%;
}

/* ===== CLICK FEEDBACK ===== */
#btn-animated:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
#buttons a:first-child {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
}

#buttons a:last-child {
    background: linear-gradient(135deg, #0f766e, #0d9488);
    color: #fff;
}
/* type write css start  */
#m {
    font-size:20px;
    font-weight: 600;
    font-family: poppins !important;
}
#m #t_w {
    color: var(--brand-color);
    position: relative;
    font-size: 20px;
    font-weight: 100;
    font-family: font_english !important;
}
#m #t_w::before {
    content: "";
    height: 30px;
    width: 2px;
    position: absolute;
    top: 50%;
    right: -8px;
    background: var(--second-brand-color);
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}
#m #t_w.stop-blinking::before {
    animation: none;
}
@keyframes blink {
    50% { opacity: 0 }
}
/* type write css end  */
@media(max-width: 1050px){
    /* hero section media start  */
    .hero_section_row{
        flex-wrap: wrap-reverse;
        justify-content: center !important;
        row-gap: 30px !important;
    }
    #hero_text .details{
        max-width: 100%;
    }
    #hero_image{
        width: 400px !important;
    }
    .buttons{
        row-gap: 30px;
    }
    /* hero section media end  */
}
@media(max-width:500px){
  .hero_section{
    zoom: 77%;
  }
}
/* hero section end  */
/* after hero section start  */
/* =================================================
   COUNTER SECTION – GRADIENT + MOUSE GLOW
   ================================================= */

.counter-section{
  background: url(../images/bg.png) center/cover no-repeat;
  padding: 30px 20px;
  position: relative;
}

.counter-container{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.counter-box{
  position: relative;
  overflow: hidden;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  padding: 35px 20px;
  border: 1px solid rgba(255,255,255,.25);

  box-shadow: 0 25px 60px rgba(0,0,0,.15);
  transition: transform .45s ease, box-shadow .45s ease;
  text-align: center;
}

.counter-box:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}

/* ================= MOUSE FOLLOW GLOW ================= */
.counter-box::after{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(13,166,157,.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.counter-box:hover::after{
  opacity: 1;
}

/* ================= ROW ================= */
.counter-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ================= ICON ================= */
.counter-icon{
  font-size: 28px;
  color: #0da69d;
  filter: drop-shadow(0 0 8px rgba(13,166,157,.6));
}

/* ================= NUMBER (GRADIENT ANIMATED) ================= */
.counter-box h2{
  font-size: 42px;
  font-weight: 800;
  line-height: 1;

  background: linear-gradient(
    270deg,
    #0da69d,
    #22d3ee,
    #6366f1,
    #0da69d
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* ================= SUFFIX ================= */
.counter-suffix{
  font-size: 16px;
  font-weight: 600;
  color: #0da69d;
}

/* ================= LABEL ================= */
.counter-box p{
  margin-top: 12px;
  font-size: 15px;
  color: #333;
  letter-spacing: .3px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px){
  .counter-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 500px){
.counter-section{
    zoom: 77%;
}
  .counter-container{
    grid-template-columns: 1fr 1fr;
  }

  .counter-box h2{
    font-size: 34px;
  }

  .counter-box:hover{
    transform: none;
  }
}

/* after hero section end  */
/* skill section start  */
.skill_section{
  background: url(../images/bg.png);
  background-position: center;
  background-size: cover;
  background-position: center;
}
.skill_section .skill_container {
  max-width: 1300px;
  margin: 0 auto;
}
#title{
    color: var(--brand-color);
    font-family: font_english;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    padding-top: 50px;
}
#subtitle{
    color: rgba(0,0,0,0.75);
    font-family: poppins;
    font-weight: 100;
    text-align: center;
    padding-bottom: 40px;
}
.short_text{
    font-size: 15px;
    font-weight: 200;
    font-family: poppins;
    text-align: center;
    padding-top: 10px;
}
.short_text .b{
    color: var(--brand-color);
}
.skill_section .skill_container .skill_row {
  display: grid;
  grid-template-columns: 55% 40%;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: space-between;
}
.skill_section .skill_container .skill_row .skill_col .skill_head_text {
  padding-bottom: 20px;
}
.skill_section .skill_container .skill_row .skill_col .skill_head_text .myskill {
  color: var(--brand-color);
  font-size: 40px;
  font-weight: bold;
}
.skill_section .skill_container .skill_row .skill_col .skill_head_text .big_text_skill {
  font-size: 25px;
  color: var(--text-colo-gray);
  padding-top: 20px;
  padding-bottom: 100px;
  font-weight: 100;
}
/* slill slider  */
/* SLIDER  */

.slider{
    /* position: absolute;
    bottom: 5%;
    right: 20%; */
    /* width: 60%; */
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
    mix-blend-mode:difference;
    opacity: 0.7;
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.coder{
    display: flex;
    align-items: start;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
}
.coder p{
    font-family: poppins;
    font-size: 15px;
    text-align: justify;
    color: rgba(0,0,0,0.75);
    font-weight: 600;
}
.coder-text{

    font-size: 50px;
}
@media(max-width: 1050px){
.skill_section .skill_container .skill_row {
display: flex;
flex-wrap: wrap-reverse;
}
#skill_slider{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.skill_section .skill_container .skill_row .skill_col .skill_head_text .big_text_skill {
  padding-bottom: 20px;
}
.skill_section .skill_container .skill_row .skill_col .skill_head_text .buttons{
    justify-content: center !important;
}
}
@media(max-width: 700px){
    .skill_container{
        zoom: 77%;
    }
}
/* skill section end*/
/* service section start  */
.service-section{
  padding: 20px;
  background: url(../images/bg.png) center/cover no-repeat;
}

.service-container{
  max-width: 1300px;
  margin: auto;
}

.service-head{
  text-align: center;
  margin-bottom: 60px;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.service-card{
  perspective: 1200px;
  position: relative;
}

.service-card-inner{
  position: relative;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.4,.2,.2,1);
}

.service-card:hover .service-card-inner,
.service-card.flipped .service-card-inner{
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back{
  position: absolute;
  inset: 0;
  border-radius: 24px;
  backface-visibility: hidden;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.service-card-back{
  transform: rotateY(180deg);
}

.service-icon{
  font-size: 46px;
  background: linear-gradient(270deg,#0da69d,#22d3ee,#6366f1);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: iconGradient 6s infinite;
}

@keyframes iconGradient{
  0%{background-position:0%}
  50%{background-position:100%}
  100%{background-position:0%}
}

.service-card-back p{
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* CTA BUTTON */
.cta-btn{
  position: relative;
  overflow: hidden;
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg,#0da69d,#6366f1);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(13,166,157,.45);
}

/* RIPPLE */
.cta-btn span{
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .6s linear;
  background: rgba(255,255,255,.6);
}

@keyframes ripple{
  to{
    transform: scale(4);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media(max-width:1100px){
  .service-grid{grid-template-columns: repeat(2,1fr);}
}
@media(max-width:600px){
  .service-grid{grid-template-columns: 1fr;}
}
@media(max-width:500px){
    .service-section{
        zoom: 77%;
    }
}
/* service section end  */
/* portfolio section start  */
/* ===== Portfolio Section ===== */
.portfolio_section{
  padding:20px;
  background:url(../images/bg.png) center/cover no-repeat;
}

.portfolio_container{
  max-width:1300px;
  margin:auto;
}

/* ===== Tabs ===== */
.portfolio_tabs{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:18px 0 45px;
  padding:10px;
  flex-wrap:wrap;
  border-radius:40px;
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(10px);
  border:1px solid rgba(15,23,42,.08);
}

.tab_btn{
  padding:9px 22px;
  border-radius:30px;
  border:1px solid rgba(15,23,42,.1);
  background:#fff;
  color:#0f172a;
  cursor:pointer;
  transition:
    background .3s ease,
    color .3s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.tab_btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(15,23,42,.12);
}

.tab_btn.active{
  background:var(--brand-color);
  color:#fff;
  border-color:transparent;
}

/* ===== Slider ===== */
.portfolio_slider_wrap{
  position:relative;
}

.portfolio_slider{
  overflow:hidden;
}

.portfolio_track{
  display:flex;
  gap:25px;
  transition:
    transform .45s ease,
    opacity .45s ease;
}

/* ===== Arrows ===== */
.slider_arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,.1);
  background:#fff;
  cursor:pointer;
}

/* ===== Card ===== */
.portfolio_item{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(14px);
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:15px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.portfolio_item:hover{
  transform:translateY(-8px);
  box-shadow:
    0 25px 50px rgba(15,23,42,.18),
    0 0 0 1px rgba(255,255,255,.35) inset;
}

/* ===== Image ===== */
.img_wrap{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

.img_wrap img{
  width:100%;
  transition:.5s ease;
}

.portfolio_item:hover img{
  transform:scale(1.06);
}

.img_wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.25),
    transparent 70%
  );
  opacity:0;
  transition:.4s;
}

.portfolio_item:hover .img_wrap::after{
  opacity:1;
}

/* ===== Demo Overlay ===== */
.demo_overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,42,.6);
  color:#fff;
  text-decoration:none;
  font-weight:500;
  letter-spacing:.3px;
  backdrop-filter:blur(6px);
  opacity:0;
  transition:.3s;
}

.img_wrap:hover .demo_overlay{
  opacity:1;
  animation:fadeUp .3s ease;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

/* ===== Empty ===== */
.portfolio_empty{
  margin-top:30px;
  padding:60px;
  text-align:center;
  border:1px dashed rgba(15,23,42,.2);
  border-radius:16px;
  background:#fff;
}

.portfolio_empty p{
  color:#64748b;
}

/* ===== Dots ===== */
.slider_dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:25px;
}

.slider_dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c7d2fe;
  cursor:pointer;
}

.slider_dots span.active{
  background:var(--brand-color);
}

/* ===== Responsive ===== */
@media(min-width:1024px){
  .portfolio_item{min-width:calc(33.333% - 17px);}
}
@media(min-width:640px) and (max-width:1023px){
  .portfolio_item{min-width:calc(50% - 13px);}
}
@media(max-width:639px){
  .portfolio_item{min-width:100%;}
  .slider_arrow{display:none;}
}

@media(max-width:500px){
  .portfolio_section{
    zoom: 77%;
  }
}
/* portfolio section end  */
/* testimonial section start  */
.testimonial-section{
  padding:20px;
  background:url(../images/bg.png) center/cover no-repeat;
}

.testimonial-carousel{
  position:relative;
  max-width:1300px;
  margin:40px auto 0;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  gap:25px;
  transition:transform .5s ease;
}

/* ===== CARD ===== */
.testimonial-card{
  flex:0 0 500px;
  padding:32px 28px 36px;
  border-radius:20px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  opacity:.35;
  transform:scale(.92);
  transition:.4s ease;
}

.testimonial-card.active{
  opacity:1;
  transform:scale(1);
  border-color:var(--brand-color);
  box-shadow:
    0 25px 55px rgba(15,23,42,.18),
    0 0 0 1px rgba(255,255,255,.5) inset;
}

/* ===== QUOTE ===== */
.quote{
  font-size:42px;
  line-height:1;
  color:var(--brand-color);
  opacity:.85;
}

/* ===== TEXT ===== */
.review-text{
  font-size:14.5px;
  line-height:1.9;
  color:#334155;
  margin:10px 0 14px;
  position:relative;
}

.review-text::after{
  content:"";
  display:block;
  height:1px;
  width:40px;
  margin-top:12px;
  background:linear-gradient(
    to right,
    var(--brand-color),
    transparent
  );
  opacity:.5;
}

/* ===== STARS ===== */
.review-stars{
  font-size:14px;
  color:#f6b73c;
  margin-bottom:6px;
}

/* ===== DATE ===== */
.review-date{
  font-size:12px;
  color:#64748b;
  margin-bottom:18px;
}

/* ===== CLIENT ===== */
.client{
  display:flex;
  align-items:center;
  gap:12px;
}

.avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  border:2px solid var(--brand-color);
  overflow:hidden;
  flex-shrink:0;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.client h4{
  margin:0;
  font-size:15px;
  font-weight:600;
  color:#0f172a;
}

.client span{
  font-size:12px;
  color:#64748b;
}

/* ===== ARROWS ===== */
.nav-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  color:var(--brand-color);
  cursor:pointer;
  z-index:5;
  box-shadow:0 8px 20px rgba(15,23,42,.18);
}

.nav-btn:hover{
  background:var(--brand-color);
  color:#fff;
}

.nav-btn.prev{left:10px;}
.nav-btn.next{right:10px;}

/* ===== DOTS ===== */
.slider-dots{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.slider-dots .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c7d2fe;
  cursor:pointer;
  transition:.3s;
}

.slider-dots .dot.active{
  background:var(--brand-color);
  transform:scale(1.3);
}
@media(max-width: 500px){
  .testimonial-section{
    zoom: 77%;
  }
  .testimonial-card{
  flex:0 0 380px;
  }
}
/* testimonial section end  */
/* contact section start  */
.contact{
  padding:20px;
  background:url(../images/bg.png) center/cover no-repeat;
}
.contact_container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 20px;
}
.contact_container .contact_title{
  font-size: 40px;
  color: var(--brand-color);
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.boxes{
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  align-items: center;
}
.box_col{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 5px;
}
.box_col #c_icon{
  font-size: 22px;
  padding: 15px;
  background-color: var(--text-color-white);
  color: var(--brand-color);
  border: 1px solid rgba(0, 0, 0, 0.192);
}
.box_col p{
  color: var(--text-colo-gray);
}
.map_form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.map_form_col iframe{
    border: 1px solid var(--brand-color) !important;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    height: 450px;
}
form{
  padding: 20px 0px;
}
.input_group .input_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
input{
    display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 2px;
}
input:focus{
    color: #666565;
    background-color: #fff;
    border-color: var(--brand-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 176, 116, 0.25);
}
textarea{
      display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 2px;  
}
textarea:focus{
      color: #666565;
    background-color: #fff;
    border-color: var(--brand-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 176, 116, 0.25);
}
.input{
  padding-bottom: 20px;
}
.submit_btn #send_massage{
  background: linear-gradient(130deg,rgb(13, 67, 166) 25%, rgb(24, 77, 112) 68%);
  color: var(--text-color-white);
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
}
.submit_btn #send_massage:hover{
  background: linear-gradient(260deg,rgb(13, 67, 166) 25%, rgb(24, 77, 112) 68%);
} 
  @media(max-width:991px){
  .map_form{
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  row-gap: 30px;
}
.map_form_col{
  width: 100%;
}
.map_form .map_form_col iframe{
  max-width: 100% !important;
  width: 100% !important;
}
.boxes{
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  align-items: center;
  flex-wrap: wrap-reverse;
}
}
@media(max-width:500px){
  .contact{
    zoom: 77%;
  }
}
/* contact section start  */
/* footer section start  */
  footer {
  background: #0060600c; /* Teal gradient */
  color: var(--text-color-white);
  padding: 0px 20px;
  padding-top: 50px;
  padding-bottom: 10px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .footer-logo img {
    height: 50px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    font-size: 14px;
    color: var(--text-colo-gray);
  }

  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    margin-right: 10px;
    color: var(--text-colo-gray);
    font-size: 20px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: var(--brand-color);
  }

  .footer-services h3,
  .newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--brand-color);
  }

  .footer-services ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
  }

  .footer-services li {
    margin-bottom: 6px;
  }
  .footer-services li a {
    text-decoration: none;
    color: var(--text-colo-gray);
  }
  .footer-services li:hover a{
    color: var(--brand-color);
  }
  .newsletter p {
    font-size: 13px;
    color: var(--text-colo-gray);
    margin-bottom: 10px;
  }

  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    flex: 1;
    min-width: 200px;
  }

  .newsletter button {
    padding: 10px 15px;
    border: none;
    background-color: var(--brand-color);
    color: var(--text-color-white);
    border-radius: 5px;
    cursor: pointer;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-colo-gray);
    border-top: 1px solid var(--text-colo-gray);
    padding-top: 15px;
  }
  @media(max-width: 500px){
    footer{
      zoom: 77%;
    }
  }
/* footer section end  */
/* scroll top btn start  */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

#scrollTopBtn circle {
  fill: none;
  stroke: var(--brand-color);
  stroke-width: 4;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s linear;
}

#scrollTopBtn #i {
  position: absolute;
  top: 50%;
  left: 50%;
   transform: translate(-50%, -50%);
  background: var(--brand-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
#scrollTopBtn #i #ii {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s ease;
}

#scrollTopBtn:hover #i #ii{
  background: var(--brand-color);
}

/* scroll top btn end  */
/* other page layout option start  */
    
.page .page_container .page_header .about-banner {
  position: relative;
  background: url('../images/t_bg.jpg') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto; 
  margin-top: 88px;
}
.page_header{
  background:url(../images/bg.png) center/cover no-repeat;
}
.page .page_container .page_header .about-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.page .page_container .page_header .about-banner .overlay .content {
  color: var(--text-color-white);
}

.page .page_container .page_header .about-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.page .page_container .page_header .about-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: var(--brand-color);
}

.page .page_container .page_header .about-banner .overlay .content p {
  margin-top: 15px;
  font-size: 1rem;
}

.page .page_container .page_header .about-banner .overlay .content a {
  color: var(--brand-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .page .page_container .page_header .about-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .page .page_container .page_header .about-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .page .page_container .page_header .about-banner .overlay {
    padding-left: 3%;
  }
}
/* abour me page start  */
.about_me_con{
  padding:20px;
  background:url(../images/bg.png) center/cover no-repeat;
}
.about_me {
      max-width: 1300px;
      margin: auto;
      padding: 20px;
      border-radius: 12px;
    }

    .a_title {
      margin-bottom: 30px;
      font-size: 36px;
      color: var(--brand-color);
    }

    .section {
      padding-bottom: 30px;
    }

    .section h2 {
      font-size: 30px;
      margin-bottom: 10px;
      color: var(--brand-color);
      font-family: font_english;
      font-weight: 400;
    }

    .section ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .section p {
      font-size: 18px;
      text-align: justify;
    }

    .highlight {
      font-weight: bold;
      color: #34495e;
    }
        table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 12px;
      text-align: left;
    }

    th {
      background: #ecf0f1;
    }
        @media (max-width: 768px) {
      .container {
        padding: 20px;
      }

      h1 {
        font-size: 26px;
      }

      table, th, td {
        font-size: 14px;
      }
    }
/* abour me page end  */
/* project page start */

/* project page end  */
@media(max-width: 500px){
  .header{
    zoom: 80%;
  }
  .page_body{
    zoom: 70%;
  }
}
/* other page layout option end  */