
/*###############################
# Icon Media and Web soution  #
###############################*/
 :root {
  --body-bg: #ffffff;
  /* --text-color: #000000; */
  --header-bg-color: #959595;
  --header-p-color: #0594e7 ;
  --header-color:#0594e7;
  --header-h1-color:#0594e7;

  --menu-text-color: #feffff   ;
  --menu-bg: #2b343a; /*#1e293b*/

  /* section bg  color */
  --social_media_color:#0a9521;
  --social_media_text_color:#effaef;
  --section_design_bg_a:#ffffff;
  --section_design_bg_b:#dbdbdb;
  --section_design_bg_c:#dbdbdb;
  --section_design_bg_d:#edf3ff;



  --video_content_color:#242222;
  --about_me_text_color:#12028d;
  --about_me_lt-line-color:#05328d;
  --list_box_bg_color:#ffffff;
  --list_box_text_color:#ffffff;
  --list_box_span_bg_color:#179bff;
  --list_box_span_text_color:#ffffff;
  --service_box_bg_color:#fff4e8;
  --service_box_color_text:#032b80;
   --service_box_h4-color:#084684;
  --service_box_icon_bg_color:#ffffff;
   --service_box_span_text_color:#282c30;
  --service_box_icon_color_text:#0a4f8c;
  --service_box_text-color:#282c30;

  --btn_color: #0594e7;
  --btn_readmore_color:#0859bde2;
  --background_style_color_c:#ffd29b;
  --social_media_color_for_body:#0986d4;
  --db_bg_color:#f7fbff;
}


*{
box-sizing: border-box;
padding: 0;
margin:0;
font-family: sans-serif;
color:#474646
}

/* admin */
/*********************************************************************************************/
/********************************Icon media and websolution **********************************/
/********************************Version 1.0**************************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap');

/*********************************************************************************************/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    background: #ffffff;
    height: 100%;
    position: relative;
    font-family: sans-serif;
    overflow-x: hidden;


      }
/* start variable section */

    /* Sidebar */
    .sidebar {
      width: 240px;
      background: #0053a6;
      color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      transition: 0.3s;
      overflow-y: auto;
          }

    .sidebar.collapsed {
      width: 60px;
    }

    .sidebar .logo {
      padding: 20px;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      transition: 0.3s;
      white-space: nowrap;
      position: relative;
      left: -5px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar ul li {
      padding: 15px 20px;
      cursor: pointer;
      align-items: center;
      gap: 15px;
      transition: 0.3s;
      color:#fff;
      white-space: nowrap;
	  position: relative; /* allow dropdown to position relative to parent */
    }
    .sidebar ul li a{
    text-decoration: none;
    color:#fff;

        }

    .sidebar ul li:hover {
      background: #0066cc;
    }

    /* Icon always visible */
    .sidebar ul li i {
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }

    /* Hide text when collapsed */
    .sidebar.collapsed ul li span {
      display: none;
    }




.sidebar ul li .dropdown {
position:relative;
display:none;
height:100%;
left:0;

}

.sidebar ul li.active .dropdown {
  display: block;
   height: auto;

}

.sidebar ul li .dropdown li {
  top:100%;
  position:relative;

}

.sidebar ul li .dropdown li {
    color:#fff;

}
.sidebar ul li .dropdown li:hover {
  background: #cbdcf6;

}

 .dashboard_header {
      width: calc(100% - 240px);
      margin-left: 240px;
      background: #fff;
      padding: 15px 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      z-index:1000;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: 0.3s;
    }


    .dashboard_header .hamburger {
      font-size: 24px;
      cursor: pointer;
      user-select: none;
    }

    /* Main Content */
    .main_contain {
      margin-left: 240px ;
      margin-top: 70px;
      padding: 20px;
      flex: 1;
      transition: margin-left 0.3s;
      padding: 5px;

    }
        .be_heading {
          display: flex;
          position: relative;
          top:0px;
          color: var(--header-h1-color);
         justify-content: center;

        }


        /* backend table heading */
        .table_heading{
            position: relative;
            display: flex;
            justify-content: space-between;
            padding:5px;
            top:10px;
        }
/* backend table content style */
        .page_display span{
        padding:3px;
        color:#7d7d7d;
        }
/* backend table conten style */
        .page_display select{
        border:none;
        border-radius:2px;
        border:1px solid #e6e7e7;
        }
/* backend table conten style */

.table_search span{
 padding:3px;
 border-radius:3px;
 color:#7d7d7d;
 }

 .table_search input[type="text"]{
 border: none;
 border:1px solid #e6e7e7;
 }
 .contain_body{
        width: 96%;
        margin: 0 auto;
        background: #f7fbff;
        padding: 7px;
        border-radius: 2x;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.223);
    }

    .sidebar.collapsed ~ .dashboard_header {
      width: calc(100% - 60px);
      margin-left: 60px;
    }

    .sidebar.collapsed ~ .main_contain {
       width: calc(100% - 60px);
      margin-left: 60px;
    }

    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #0053a6;
    }

    .card p {
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    table th, table td {
      padding: 12px;
      border: 1px solid #ddd;
      text-align: left;
    }

    table th {
      background: #f4f4f4;
      color: #7d7d7d;
      font-size: 14px;

    }

    table tr:nth-child(even) {
      background: #f9f9f9;
    }

    table tr:hover {
      background: #f1f1f1;
    }
.card-content h5 {
    display: block;     /* make it block-level */
    width: 100%;        /* span full width */
    margin: 0;          /* optional: remove default h5 margin */
}
.be_header{
    box-shadow: #0472b5;
    color:#3f3f3f;
    position: relative;
    width: 100%;
    }

.be_header h2{
 font-size: 18px;
 color:var(--header-color);

}


/* end dashboard */





/* heasder  */
.header_section{
    width: 100%;
    height: 60px;
    top: 0;
    position: relative;
    display: flex;
      justify-content:space-between;
    align-items: center;
    padding:5px;

    font-size: 12px;
     color:var(--header-text-color);
     transition: all 0.5s ease;
    }

.header_section span a{
  text-decoration: none;
  padding: 2px;
  }
.contact_details{
  padding:10px;
  display: flex;
  font-size: 16px;
  gap:20px;
}
.logo-name {
  max-width: 100px;
  overflow: hidden;
  /* text-overflow: ellipsis */
  white-space: nowrap;
  display: inline-block;
}

.copy_btn {
width: 10px;
background:none;
border: none;
}


.header_one{
  width: 100%;
  height: 50px;
  line-height: 35px;
  top:40px;
 position: relative;
  background: var(--header-bg-color);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header_one h1{
  color: var(--header-h1-color);
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.header_two{
  width: 100%;
  top:40px;
  position: relative;
  display: block;
  text-align: center;
   color: #032b80;
   line-height: 50px;
}

.header_two h1{
  width: 220px;
  text-align: center;
  position: relative;
  margin:0 auto;
  background: #fff8e9;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}


.social_media{
  display: flex;
   justify-content: center;
  gap:20px;
  text-decoration: none;
  /* color:var(--header-text-color); */
  color:#265bc4;
  font-size: 14px;
  align-items: center;
  transition: all 0.5s ease;
}

.social_media span {
  padding:7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color:var(--social_media_color_for_body);
  display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.social_media span i{
 font-size: 18px;

}

/* menu section */
.menus{
width: 100%;
display:flex;
justify-content:space-between;
background: var(--menu-bg);
align-items: center;
position: relative;
}

.menus.sticky{
  position: fixed;
  top:0;
  width: 100%;
  z-index: +100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);

}

.logo{
display: flex;
color:#ffffff;
position: relative;
margin:0;
padding:0;
left: 10px;
}

.logo img{
border-radius: 50%;
}
.menus ul{
  position: relative;

}
.menus ul li {
      float: left;
    list-style: none;
    padding:15px 0px;
    transition: all 0.7s;
    border-radius: 2px;
    animation: animMenu 1s ease;
    box-shadow: 1px 3px 50px 5px rgba(18, 5, 5, 0.1);

   }


@keyframes animMenu {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.menus ul li a {
    text-decoration: none;
    color: var(--menu-text-color);
    font-weight: 700;
    padding: 16px 16px;
   }

.menus ul li:hover {
    background: #fcfcfc;
    position: relative;
    box-shadow: 2px 3px 40px 2px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    transition: all 1s;


}

.menus ul li:hover a{
    color:#088ddf;


}

.menus ul li ul {
    position: absolute;
    width:150px;
    text-align: center;
    display: none;

}

.menus ul li ul li {
    width: 100%;
    position: relative;
    top: 16px;
    background: #ffffff;
    color: #ffffff;
}

.menus ul li:hover ul {
    display: block;

}

.menus.active nav {
    display: block;
}




.slideshow_container {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.slideshow_container img{
width: 100%;
height: auto;
border-radius: 5px ;
}
.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide.active {
  display: block;
  animation: fadeSlide 0.9s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform:scale(1);
  }
}

/* Navigation Arrows for slide show  */
.nav_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(92, 92, 92, 0.4);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

/* for slide show  */
.nav_arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* for slide show  */
.nav_arrow.left {
  left: 20px;
}

/* for slide show  */
.nav_arrow.right {
  right: 20px;
}
/* for slide show  */

.info_section{
    width: 100%;
    background: #f7fbff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.text_content {
  position: absolute;
  z-index: 3;
  top: 40%;
  left:7%;
  /* transform: translate(-50%, -50%); */
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem;
}

.text_content p {
  font-size: 3vw;
  margin: 5px 0;
  color:#d3d3d3
}

.text_content h3 {
  font-size: 3vw;
  margin: 5px 0;
  color:#e5e2e2;

}

.text_content h1 {
  font-size: 4vw;
  margin: 10px 0;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(20deg, #ffffff, #ffd781e2, rgba(40, 246, 3, 0.886));
  -webkit-background-clip: text;
  box-shadow: 0 0 1px;
}

/* color change body design   */
.color_setting{
  position:fixed;
  z-index: +10;
  top:140px;
  right:5px;
  background: #0594e7;
  border-radius:50%;
  height: 30px;
  width: 30px;
  text-align: center;
  padding-top:5px;
  box-shadow: 2px 2px 50px 2px rgba(0, 0, 0, 0.2);
  }
.color_setting i{
  font-size: 20px;
    text-align: center;
    color:#ffffff;
    animation: rotate 3.5s linear infinite;
}

@keyframes rotate{
  0%{
   transform:rotate(0deg)
  }
  100%{
  transform:rotate(360deg)
  }
}
/* cv page setting */

 /* cv PAge */
 /* ===== Basic Button ===== */
.btn-view {
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  position: absolute;
  bottom: 0;
}
.btn-view:hover { background: #0056b3; }

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.09);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}
.modal-content {
  background: #ffffff;
  width: 220mm;
  min-height: 297mm;
  margin: 4px auto;
  padding: 5px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

}
.close-btn {
  position: absolute;
  top:5px;
  right: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}
.close-btn:hover { color: #ff3333; }

/* ===== Toolbar ===== */
.cv-toolbar {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.cv-toolbar button {
  background: #28a745;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  right: 20px;
  top:20px;
}
.cv-toolbar button:hover { background: #218838; }

.cv_body_style{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.leftc{
  width: 20%;
  border-bottom: 1px solid #dfdfdf;
  border-right:1px solid #dfdfdf;
  border-left:1px solid #dfdfdf;
  position: relative;
  text-align: left;
  padding: 2px;
  word-break: break-all;
}

.rightc{
  width: 80%;
  border-bottom: 1px solid #dfdfdf;
  border-right:1px solid #dfdfdf;

  position: relative;
  text-align: left;
  padding: 2px;
  }

.title{
  position: relative;
  margin:10px 10px 0 0 ;
  width:100% ;
  padding:5px;
  color:#01600a;
  font-weight: 600;
  border: 1px solid #dfdfdf;
}

.title p{
  text-align: left;
}
/* ===== A4 CV Layout ===== */
.cv-content {
  width: 190mm;
  min-height: 297mm;
  padding: 5mm;
  background: #ffffff;
  margin: auto;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.5;
    }

/* Header */
.cv_header {
  display: flex;
  gap: 20px;
  width:100%;
  align-items: center;
  text-align: center;
  padding: 5px;
  background: #ffffff;

}

#cvContent{
  border: 1px solid #dfdfdf;
}
.cv_title {
display: block;
position: relative;
width:70%;
text-align: center;
}

.cv_title p{
  font-size: 1.6em;
  color:#0053a6;
  position:relative;
  right:50px;
}
.cv_picture{
  width: 100px;
  height: 120px;
  object-fit: cover;
  display: flex;
  width: 30%;
 align-items: flex-start;
 position: relative;
 top:-1px;
}

.cv_picture img{
  border-radius:50%;
  z-index: 1;
  position: relative;
  left:23px;
  top:10px;
}

.cv_pic_desgined{
  position: absolute;
  top: 10x;
  left: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(195deg, #7fbcfd, #ffffff);
  box-shadow: 0 4px 15px rgba(0, 83, 166, 0.3);
  border: 8px solid white;
  outline: 4px solid #7fbcfd;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.cv-info h1 { margin: 0; color: #007bff; }
.cv-info h3 { margin: 5px 0; font-weight: 400; }

/* Columns */
.cv-body {
  display: flex;
  gap: 30px;
}

.cv_body_style{
  display: flex;
  justify-content: space-between;
}

.left-column, .right-column {
  flex: 1;
}

.cv-section { margin-bottom: 15px; }
.cv-section h4 { margin: 0; color: #222; }
.cv-section p { margin: 4px 0; }

/* For print preview or export */
@media print {
  .cv-toolbar, .close-btn { display: none !important; }
  body { background: #fff; }
}




/* setting for bg and  text color chage */
    .settings {
       margin: 18px;
       position: absolute;
       right:16px;
       width:350px;
       height:100% auto;
       background-color:#fff3a4;
       padding:1px;
       border-radius:5px;
       top:-15px;
       text-align: left;
       display: none;

    }
/* color change label */
    label {
      display: block;
      margin: 10px 0 2px;
      font-size: 15px;

    }

    /* color change btton */
    button {
      margin-right: 10px;
      padding: 5px 15px;
      cursor: pointer;

    }

/* end color change properties   */

/* page section */
.background_style_a{
min-height: 100%;
background: var(--section_design_bg_a);
top:50px;
position: relative;
padding-bottom: 80px;
}


.background_style_b{
min-height:420px;
background: var(--section_design_bg_b);
top:50px;
position: relative;

}

.background_style_c{
min-height:420px;
background: var(--background_style_color_c);
top:20px;
position: relative;
margin-bottom: 40px;
padding: 20px;
}

.background_style_d{
min-height:420px;
background:var(--section_design_bg_d);
top:10px;
position: relative;
margin-bottom: 40px;
padding: 20px;
border-radius: 10px;
}

.width-100{
width: 100%;
}
.width-75{
width: 75%;
}
.width-50{
width: 50%;
}
.width-25{
width: 25%;
}

/* about section */
.about{
  width: 80%;
  position: relative;
  margin: 0 auto;
 text-align: center;
 line-height:20px;
  background: var(--section_design_bg);

}
.about_me_header {
  text-transform: capitalize;
  text-align: center;
    margin-bottom: 40px;
}

/* Lining design for 'about' text */
.short-lined {
  position: relative;
  font-weight: bold;
  margin: 20px 0;
  font-size: 18px;
  color: var(--header-p-color);
  display: inline-block; /* keeps lines close to text */
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

/* Line base styles */
.short-lined::before,
.short-lined::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 30px;
  background-color: var(--about_me_lt-line-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}



/* Left line */
.short-lined::before {
  right: 100%;
  margin-right: 10px;
}

/* Right line */
.short-lined::after {
  left: 100%;
  margin-left: 10px;
}

/* When in view — animate text & lines */
.short-lined.in-view {
  animation: fadeUp 0.6s ease forwards;
}

.short-lined.in-view::before,
.short-lined.in-view::after {
  transform: scaleX(1);
}

/* Fade-up animation for text */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading animation (kept from before) */
.h_anim {
  opacity: 0;
  transform: translateY(50px);

}

.h_anim.in-view {
  animation: fadeUp 1s ease forwards;
}


/* about me body text */
.about_me{
  display: block;
  text-align: justify;
  padding:0 17px;
  position: relative;
  top: 20px;
  /* box-shadow: 1px 1px 60px 1px rgba(0, 0, 0, 0.1); */
  min-height: 400px;

}

/* about me pic section */
.about_pic{
position: relative;
background: #cbcbcb;
 border-radius:5px 30px 5px 0;
 transition: all 0.5s ease;

}

/* about me pic class */
.about_pic img{
  width: 97%;
 height: auto;
  border-radius:0 20px 8px 0px;
  position: relative;
  left:-20px;
  top:30px;
  box-shadow: 0 40px 60px 5px rgba(0, 0, 0, 0.2);
 }

 /* about me  picture  hover(scale1.5 */
 .about_pic img:hover{
  cursor: pointer;
  transition: all 1s ease-in;
  border-radius: 0;
   }

   /* skill related section */
   .skill_header{
    position: relative;
    top:20px;
    padding-bottom: 50px;
    text-align: center;
      }


.skill_details {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  padding: 20px;
}


.list_box {
  background:var(--list_box_bg_color);
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.list_box span {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .skill_details {
    grid-template-columns: repeat(3, 1fr);
  }
}


  .list_box span{
    position: relative;
    left:-15px;
    width: 40px;
    height: 40px;
    background:var(--list_box_span_bg_color);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--list_box_span_text_color);
    border-radius: 50%;
  }

  .list_box p {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: namekShake 1s infinite ease-in-out;
  display: inline-block; /* Important for transform to work properly */
}

@keyframes namekShake {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(5deg); }
  50%  { transform: rotate(-5deg); }
  75%  { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

/* list box hover */
 .list_box:hover{
 border-radius: 10px;
 cursor: pointer;
 transition: all 1s ease;
 transform: rotate(1deg);
 background: #ffffff;
 box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  }

/* services section top margin  */
  .margin-top_ten{
    position: relative;
    margin-top:10px;
  }
    .margin-top_twenty{
    position: relative;
    margin-top:20px;
  }
    .margin-top_thirty{
    position: relative;
    margin-top:30px;
  }
    .margin-top_fourty{
    position: relative;
    margin-top:40px;
  }
    .margin-top_sifty{
    position: relative;
    margin-top:60px;
  }
    .margin-top_seventy{
    position: relative;
    margin-top:70px;
  }
    .margin-top_eighty{
    position: relative;
    margin-top:80px;
  }
    .margin-top_ninety{
    position: relative;
    margin-top:90px;
  }

.margin-top_hundred{
    position: relative;
    margin-top:100px;
  }

  /* services header style */
.header{
  position: relative;
  height: 2.3rem;
  display: block;
  text-align: center;
}

.header p{
 color: var(--header-p-color);
}


/* service related  contain */
.container_style{
width:80%;
position: relative;
margin: 0 auto;
top:50px;


}
 /* service box style  */
.square_box {
  border:1px solid #e0e0e0;  ;
  color:var(--service_box_color_text);
  text-align: center;
  position: relative;
  top:50px;
  display: block;
  height:380px;
  align-items: center;
   border-radius: 5px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1x solid #ccc;
   cursor: pointer;
}
.service_content p{
  padding: 7px;
  word-break: break;
  text-align: justify;
   display: block;
}

.box_wrap:hover .square_box{
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  /* transform:perspective(40px) rotateX(2deg) translateY(-50px); */
}

/* service number */
.square_box span {
  font-size: 2.4rem;
  padding: 2px;
  top:30px;
  font-weight: bold;
  display: block;
  color: var(--service_box_span_text_color);
  position: relative;
  height: 55px;
  width: 55px;
  line-height: 45px;
  color: #e0e0e0;
  border-radius:50%;
  left: calc(88% - 20px);

  }


.square_box h4 {
  font-size: 1.4rem;
  margin: 20px 0;
  position: relative;
  top:-17px;
  padding:9px;
   background: #fff;
  color: var(--service_box_color_text);
  border-top:1px solid #f4f2f2;
}
.square_box i {
  font-size: 50px;
  color: var(--service_box_icon_color_text);
  margin-bottom: 10px;
  background: var(--service_box_icon_bg_color);
  height: 60px;
  width: 60px;
  line-height: 60px;
  align-items: center;
  border-radius: 50%;
  transition: 1s;
  position: relative;
  top:-20px;
}
.square_box i img{
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.square_box:hover i {
  transform: translateY(-7px);
  font-size: 50px;
  transform: 1s;
  background:transparent;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  border-radius: 50%;

}




.square_box:hover span{
  top:0px;
  transition: all 1s ease;
  position: relative;
  cursor: pointer;

}

.btn_style{
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom:0px;
  left: 5px;
}

.btn_style button{
  padding: 10px 20px;
   color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;

}

.readmore{
  background: var(--btn_readmore_color);
  padding: 10px 20px;
  border-radius: 5px;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  transition: background-color 0.3s ease;
  clip-path: circle(50% at 50% 50%);
  box-shadow: 0 4px 80px rgba(0, 0, 0, 0.3);
}

/* model box for view readmore */
.modal_box {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex; justify-content: center; align-items: center;
  z-index: 999;
}
.modal_content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  min-width: 250px;
  min-height: 300px;
  text-align: center;
  position: relative;
}

.modal_content p{
    position: relative;
    top:50px;
}
.close_btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.ordernow{
  background: #f56402;
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  transition: background-color 0.3s ease;
  clip-path: circle(50% at 50% 50%);
   box-shadow: 0 4px 80px rgba(0, 0, 0, 0.3);
}
.btn_style button:hover{
  background: #088ddf;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

}
/* concatct section */
.contact_section{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #e9f1ff;
  padding: 20px;
}


.contact_form {
  width: 100%;
  padding: 20px;
  min-height: 363px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

input::placeholder {
  color: gray;
  transition: 0.3s ease; /* smooth effect */
}

/* On focus, transform the placeholder */
input:focus::placeholder {
  color: transparent;        /* make it disappear */
  transform: translateY(-10px); /* move it up */
  font-size: 12px;
  z-index: +1;         /* shrink */
}

.form_group {
  margin-bottom: 15px;
  display: flex;
 }

.form_group  input{
  padding: 10px;
  border: 1px solid #d0ecff;
  border-radius: 2px;
  font-size: 12px;
  width: 90%;
  box-shadow: 1px 1px 8px 1px rgba(190, 190, 190, 0.1);
  display: flex;
  outline: none;
}

.form_group  textarea{
  padding: 10px;
  border: 1px solid #d0ecff;
  border-radius: 2px;
  font-size: 12px;
  width: 90%;
  box-shadow: 1px 1px 80px 1px rgba(151, 151, 151, 0.1);
  display: flex;
  outline: none;
}

.form_group i {
  display: flex;
 color:#088ddf;
  font-size: 20px;
  margin-right: 0px;
  align-items: center;
  background-color: #f6fbfd;
  padding:0 10px;
  border-radius:50% 0 0 5px;
}



.form_group  select{
  padding: 10px;
  border: 1px solid #d0ecff;
  border-radius: 2px;
  font-size: 12px;
  width: 90%;
  box-shadow: 1px 1px 80px 1px rgba(151, 151, 151, 0.1);
  display: flex;
  outline: none;

}

.form_group i {
  display: flex;
 color:#088ddf;
  font-size: 12px;
  margin-right: 0px;
  align-items: center;
  background-color: #f6fbfd;
  padding:0 10px;
  border-radius:50% 0 0 5px;
}


.contact_form button {
  padding: 10px 20px;
  background: var(--btn_color);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s ease;
}
.contact_detail{
  padding: 20px;
  background: #f9fdf9;
  border-radius: 10px;
  min-height: 300px;
}

.contact_detail p{
  font-size: 12px;
   font-weight: bold;
  margin-top: 20px;
  color:#2c2b2b
}

.contact_detail i{
 position:relative;
 right: 10px;
 font-size: 12px;
 color: var(--social_media_color_for_body);
}
.text_deco{
  text-decoration-color: var(--social_media_color_for_body);
  background-color: #fff2dc;
  padding:20px;
  text-align: center;
  width: 30%;
  color: #0066cc;
  border-radius: 50%;
  box-shadow: 2px 20px 50px rgba(0, 0, 0, 0.1);
}



.social_media_icon{
  width: 100%;
  display: flex;
  gap: 15px;
  padding: 20px;
   cursor: pointer;
}
.contact_detail a{
  text-decoration: none;
  color: var(--social_media_color_for_body);
  cursor: pointer;
}

.social_media_icon i{
 font-size: 20px;
 color: var(--social_media_color_for_body);
}



.google_map iframe{
  width: 100%;
  height: 450px;
  padding: 20px 20px 0 0;
  border-radius: 10px;
  box-shadow: 1px 2px 20px 2px rgba(0, 0, 0, 0.1);
}

/* message powst sty */
.post_container {
  max-width: 700px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* Header Section */
.post_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #ffffff;
  color: var(--header-p-color);
}

.post_heading h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* Button Styling */
.post_heading button {
  background: #fff;
  color: #0594e7;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.post_heading button:hover {
  background: #0472b5;
  color: #fff;
}

/* Collapsible content (hidden by default) */
.post_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.3s ease;
  padding: 0 15px;
}

/* When .show class is added via JS */
.post_content.show {
  max-height: 500px; /* adjust as needed */
  padding: 15px;
}

/* Optional — for better readability of text inside */
.post_content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 0.9rem;
  color: #777;
  margin-top: 10px;
}

/* templage section  */
.search_content{
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  top:20px;
}
.search_content input{
  padding: 10px;
  border: 1px solid #d0ecff;
  border-radius: 5px;
  font-size: 16px;
  width: 250px;
  box-shadow: 1px 2px 20px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  outline: none;
}
/* theme page  */
.template_body{
  background:#ffffff ;
  color:var(--service_box_color_text);
  text-align: center;
  position: relative;
  display: block;
  min-height: 60vh;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1x solid #ccc;
   cursor: pointer;
}

/* theme page  */
.template_content img{
  width: 100%;
  height: auto;
  border-radius:5px;
  position: relative;
  border-radius:10px 10px 0 0;
  object-fit: cover;
  box-shadow: 0 40px 60px 5px rgba(0, 0, 0, 0.2);
}
/* template style */
 .template_content img:hover{
cursor: pointer;
  transition: all 1s ease-in;
  border-radius: 0;
   }
.template_details{
    padding: 10px;
    position: relative;
    display: flex;
   justify-content: space-between;
    align-items: center;
    min-height: 50px;

}

.view_btn{
    padding: 10px 20px;
    border-radius: 5px;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    border:none;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
}

/* theme page  */
.text_wrap{
  position:absolute;
  width: 100%;
  display: flex;
  background:#fbfcff ;
   bottom:0;
  justify-content: space-between;
}

/* theme page  */
.like_btn button{
   width: 40px;
   border: none;
   }

/* theme page  */
.text_wrap i{
font-size: 20px;
color:#0472b5;
position: relative;
text-align: center;
display: flex;
justify-content: center
}

/* theme page  */
.text_wrap p{
border:none;
border: 1px solid #9cb9cb;
color:#05328d;
display: flex;
justify-content: center;
align-items: center;
padding:5px;
font-size: 12px;
border-radius: 3px;
}

/* theme page  */
.theme_content{
padding: 5px;
text-align: justify;
font-size: 16px;
color:var(--video_content_color);
}
/* theme page  */
.text_wrap button:hover{
  border: 1px solid #0472b5;
  border-radius: 5px;;
}


/* video page  */
.video_box {
  background: #ffffff;
  color: var(--service_box_color_text);
  border-radius: 5px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 56.25%; /* Keeps 16:9 ratio */
  height: 100%;
  display: flex;
  gap: 15px;

}

.video_box iframe {
  position: absolute;
  width: 100%;
  height: 55vh;
  border: 0;
  border-radius: 5px;
}


 .vidoe_content{
  padding: 5px;
text-align: justify;
font-size: 16px;
background-color: #fbfbfb;

 }

 .text_limit{
 max-width:200px ;
 white-space:nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
  }

 .text_limit:hover{
width: 100%;
white-space: unset;
text-overflow: unset;
 }

/* Footer Styling */
.footer {
  background: var(--menu-bg);
  color: #fcfdff;
  padding: 50px 20px 20px;
  position: relative;
  top:60px;

  font-family: 'Poppins', sans-serif;
}
.footer-about p{
    color:#c2bfbf;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  color:#b0adad;
}

.footer-links ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #38bdf8; /* light blue hover */
  padding-left: 5px;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fcfcfc;
  transition: 0.3s;
}

.footer-social .social-icons i{
 color:#bebdbd;
}
.footer-social .social-icons a:hover {
  color: #38bdf8;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #19212d;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #dee5ee;
}
