/*header_top*/

.header_top_bar{
	overflow:hidden;
	   background: linear-gradient(90deg, #c79c00, #f46918);
	/*background: linear-gradient(90deg, #c79c00, #ffd95a);*/
  /*background: linear-gradient(90deg, #05137a, #0a2a9c);*/
	padding:5px 0;
}
.sub_top_header{
	overflow:hidden;
}
.sub_top_header p{
	font-size:12px;
	color:#e5e7eb;
	margin:0;
	padding:0;
	float:left;
}
.social_media_icons{
	overflow:hidden;
	padding:0;
	margin:0;
	float: left;
}
.social_icon{
	overflow: hidden;
	float: right;
}
.icon_circle{
	width: 25px;
	height: 25px;
	border-radius: 50%;
	text-align: center;
	float: left;
	margin: 0 8px;
	background-color: #044a95;
}
.icon_circle i{
	color: #fff;
	margin-top: 5px;
}
.telephone{
	float: left;
	overflow: hidden;
	padding-left: 20px;
}
.telephone i{
	color: #fff;
}
.telephone a{
	color: #fff;
	text-decoration: none;
	margin-left: 5px;
}
.email{
	float: left;
	overflow: hidden;
}
.email i{
	color: #fff;
}
.email a{
	color: #fff;
	text-decoration: none;
	margin-left: 5px;
}

/*navbar*/
.menu_bar{
  background: linear-gradient(90deg, #ffffff, #fff8e6);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 
    0 5px 20px rgba(0,0,0,0.1),
    0 0 15px rgba(212,175,55,0.2);
}
.logo{
  text-align:center;
}
.logo img{
  width: 75%;
  border-radius: 20%;
  transition: 0.3s;
}

/* hover zoom */
.logo img:hover{
  transform: scale(1.05);
}
/* MENU */
.menu_content ul{
  padding-left: 0;
}
.menu_content li{
  padding: 0 5px;
}
.menu_content a{
  color:#05137a;
  font-size:15px;
  font-weight:600;
  padding:12px 15px;
  position: relative;
  transition: 0.3s;
}
.nav>li>a{
    padding: 16px 8px;
    margin-top: 5px;
}
.menu_content a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:5px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  transition:0.3s;
}
.menu_content a:hover::after{
  width:100%;
}
.menu_content a:hover{
  color:#c79c00;
}

/* LANGUAGE */
.lang_optn{
  border-radius:5px;
  padding:5px;
  margin-top:17px;
}
.lang_optn ul{
  margin:0;
  padding:0;
}
.lang_optn li{
  list-style:none;
  float:left;
  padding:0 5px;
}
.lang_optn a{
  text-decoration:none;
  color:#05137a;
  padding:5px;
  box-shadow:0 0 10px rgba(212,175,55,0.4);
}
.lang_optn a:hover{
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  color:#000;
}
/* CALL BUTTON */
.call_section{
  text-align:center;
}
.call_btn{
  padding:8px 14px;
  border-radius:6px;
  border:none;
  margin-top: 12px;
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  transition:0.3s;

  box-shadow: 
    0 5px 15px rgba(0,0,0,0.2),
    0 0 10px rgba(212,175,55,0.3);
}
.call_btn a{
  color:#000;
  font-weight:600;
  text-decoration: none;
}
.call_btn:hover{
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.25),
    0 0 20px rgba(212,175,55,0.5);
}
/* TOGGLE BUTTON */
.custom_toggle{
  background-color:#05137a;
  border:none;
  margin-top:15px;
}
.custom_toggle .icon-bar{
  background:#fff;
}
.menu_content{
  display: block;
}
.menu_content a{
  color:#05137a ;
}

/* parent must be relative */
.dropdown {
  position: relative;
}

/* hidden by default */
.dropdown-menu-custom {
  position: absolute;
  top: 50%;
  left: 0;
  background: linear-gradient(180deg, #ffffff, #fff8e6);
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.12),
    0 0 15px rgba(212,175,55,0.25);

  border: 1px solid rgba(212,175,55,0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
/* links inside dropdown */
.dropdown-menu-custom a {
  display: block;
  padding: 12px 15px;
  color: #05137a;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
}
.dropdown-menu-custom a:hover {
  background: linear-gradient(90deg, #f3c53c, #ffd95a);
  color: #000;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
  padding-left: 20px;
}
.dropdown-menu-custom a:last-child {
  border-bottom: none;
}
/* ⭐ show on hover */
.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
}
.dropdown > a .caret{
  transition: 0.3s;
}

.dropdown:hover > a .caret{
  transform: rotate(180deg);
}

/* submenu parent */
.dropdown-submenu {
  position: relative;
}

/* submenu hidden */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: linear-gradient(180deg, #ffffff, #fff8e6);
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.12),
    0 0 15px rgba(212,175,55,0.25);
  border: 1px solid rgba(212,175,55,0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: 0.3s;
  z-index: 999;
}

/* show submenu */
.dropdown-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* arrow icon */
.dropdown-submenu > a:after {
  content: " ";
  float: right;
  font-size: 12px;
  margin-top: 3px;
}

/*banner section*/
.banner_slider{
	overflow: hidden;
}
.banner_slider .carousel-inner{
	width:100%;
}
.banner_slider .item{
	width:100%;

}
.banner_slider .item img{
	width:100%;
	height:400px;
}
/*banner_contant  */
.main_banner_content{
overflow: hidden;
background: linear-gradient(120deg, #fff8e6, #ffe8a3);
  padding: 60px 15px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.banner_content {
  overflow: hidden;
}
  .banner_content{
  max-width: 750px;
  margin: auto;
  color: #222;
}
}
.banner_content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #05137a;
}
.banner_content p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #555;
}
.center_btn {
  display: flex;
  justify-content: center;
}
.banner_btn {
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;

  /* shadow */
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/* Button Hover */
.banner_btn:hover{
  transform: translateY(-3px) scale(1.05);

  background: linear-gradient(90deg,#ffd95a,#f3c53c);

  box-shadow: 
    0 12px 25px rgba(0,0,0,0.25),
    0 0 15px rgba(212,175,55,0.5);
}
/*our services*/
.services_sec{
  background: #f8f3ea;
}
.main_our_service {
  overflow: hidden;
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
}
.main_our_service > h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service_content {
  overflow: hidden;
  float: left;
  margin: 0 15px 30px;
  padding: 30px;
  background:linear-gradient(120deg, #f8f9fb, #fff8e6);;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.service_content > h4 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.service_content > p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 25px;
}
.service_btn {
  display: block;
  margin: 0 auto;
}
.service_btn {
  background:#fbe364;
  color: #000;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  display: block;       
  width: fit-content;   
  margin: 0 auto; 
  font-weight: 550;      
}
.service_btn:hover {
  background: #000;
  color: #fbe364;
}
.know_btn{
  background: #C62828;
  color: #fff;
  padding: 14px 20px;
}
.know_btn:hover{
  background: #C62828 !important;
  color: #fff;
}
/*how we work*/
.work_section{
	background: #f5f7fb;
    padding: 30px 0;
    text-align: center;
}
.work_section h2{
    font-size: 32px;
    font-weight: bold;
}
.work_landing_line{
	width: 10%;
	height: 3px;
	overflow: hidden;
	/*background-color: red;*/
	margin: 0 auto 15px;
	background-color:#C62828;
}
.sub_work_text{
    color: #777;
    margin-bottom: 40px;
}
.step_box{
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1),
    0 0 10px rgba(255,193,7,0.4);
    position: relative;
    margin-bottom: 30px;
    transition: all 0.35s ease;
}
.step_box:hover{
  transform: translateY(-8px);
  box-shadow: 
    0 12px 25px rgba(0,0,0,0.15),
    0 0 15px rgba(255,193,7,0.4);
}
.step_box:hover h3{
  color: #c79c00;
}
.step_number{
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(180deg, #FFC107, #E0A800);
    border-radius: 50%;
    transition: 0.3s;
}
.step_box:hover .step_number{
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,193,7,0.8);
}
.step_number h6{
	font-size: 15px;
	padding: 8px 15px;
	color: #fff;
}
.step_icon{
	width: 60px;
	height: 60px; 
  	line-height: 60px;
  	margin: 0 auto 15px;
  	border-radius: 10px;
  	border: 1px solid #C62828;    
  	background: rgba(255,193,7,0.2);
    transition: 0.3s;
}
.step_box:hover .step_icon{
  background: linear-gradient(180deg, #FFC107, #E0A800);
  border-color: transparent;
}
.step_box:hover .step_icon i{
  color: #fff;
  transform: scale(1.1);
}
.step_icon i{
   	font-size: 30px;
    color:  #C62828;
    padding-top: 15px;
    margin-bottom: 10px;
}
.build_icon{
	padding-left: 4px;
}
.step_box h3{
    font-size: 18px;
    margin: 10px 0;
    font-weight: 700;
}
.step_box p{
    font-size: 14px;
    color: #666;
}
.step_box:hover .step_number{
  background: linear-gradient(180deg, #ff5722, #ff9800);
}
/*about sec*/
.about_sec{	
	background: linear-gradient(135deg, #fdf8f0, #f7f2e9);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 50px;
    margin: 60px auto;
    transition: all 0.3s ease;
    overflow: hidden;
}
	.about_sec:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.sub_about{
	margin-bottom: 60px;
}
.about_title{
	text-align: center;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.about_sub_title{
	font-size: 15px;
    text-align: center;
    color: #777;
    margin-bottom: 35px;
}
.left_images{
	display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    flex-direction: row;
}

.about_img{
  	width: 100%;
  	height: 100%;
 	/*margin: 50px 0;*/
  	padding: 10px;
  	border-radius: 20px;
  	background: linear-gradient(45deg, #d4af37, #fff, #d4af37);
  	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.about_text p{
  	font-size: 15px;
  	color: #444;
  	line-height: 1.8;
  	margin-bottom: 18px;
}
.about_text strong{
  	color: #b8962e;
}
.speak_btn{
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #f3c53c, #ffd95a);
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.speak_btn:hover{
  transform: translateY(-3px);
  background: linear-gradient(90deg, #ffd95a, #f3c53c);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.25),
    0 0 15px rgba(212,175,55,0.5);
}
/*experience-services-mileston	*/

.progress_mileston{
  background: linear-gradient(120deg, #fffdf5, #fff3cc, #ffe8a3);
  padding: 70px 0;
}
.progress_types{
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
  background: #ffffff;

  /* soft premium shadow */
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.1),
    0 0 15px rgba(212,175,55,0.2);

  border: 1px solid rgba(212,175,55,0.3);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.progress_types::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
}
.progress_types:hover{
  transform: translateY(-10px) scale(1.03);

  box-shadow: 
    0 15px 35px rgba(0,0,0,0.15),
    0 0 25px rgba(212,175,55,0.4);
}
.progress_types:hover{
  border-color: #f3c53c;
}
.progress_types h1{
  font-size: 38px;
  font-weight: 700;
  color: #05137a;
  margin-bottom: 5px;
  transition: 0.3s;
}
.progress_types:hover h1{
  color: #c79c00;
}
.progress_types p{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}
.progress_types i{
  color: #f3c53c;
}
/*briefing about our fast work(trust_section)*/

.main_trust_section{
overflow: hidden;
background-color: ;
}
.trust_content{
overflow: hidden;
padding: 20px 0;
}

.trust_content {
  font-family: 'Poppins', sans-serif;
}
.trust_content > h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #f1f5f9; 
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Paragraph */
.trust_content > p {
  text-align: center;
  font-size: 15px;
  color: #94a3b8; 
  line-height: 1.6;
}





/* Section Background */
.main_trust_section {
  overflow: hidden;
  /*background: linear-gradient(135deg, #0f172a, #020617);*/
background: linear-gradient(135deg, #47241fdb, #8e4711d4);
  padding: 50px 0;
}

/* Title & Paragraph */
.trust_content > h2 {
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}

.trust_content > p {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 40px;
}

.trust_content_box {
  overflow: hidden;
  float: left;
     border: 1px solid rgb(255 255 255 / 54%);
  /*border: 1px solid rgba(255,255,255,0.08);*/
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
/* Icon Circle */
.trust_icon_circle {
float: left;
margin: 5px 12px 5px 0;
}
.trust_icon_circle i {
color: #38bdf8;
font-size: 20px;
transition: 0.4s;
}
.trust_content_box > h4 {
font-weight: 600;
color: #e2e8f0;
transition: 0.4s;
}
.trust_content_box > p {
color: #94a3b8;
transition: 0.4s;
}
.trust_content_box:hover {
transform: translateY(-10px) scale(1.02);
/*background: linear-gradient(135deg, #1e293b, #0f172a);*/
background: linear-gradient(135deg, #a13900, #5b2b2b);
box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.trust_content_box:hover h4{
color: #ffffff;
}
.trust_content_box:hover p{
color: #cbd5f5;
}

/*accordion*/
.any_qution{
  padding:70px 0;
  background: linear-gradient(120deg, #f8f9fb, #fff8e6);
  text-align: center;
}
  .any_qution{
  padding:70px 0;
  background: linear-gradient(120deg, #f8f9fb, #fff8e6);
  text-align: center;
}
  .panel{
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;

  background: linear-gradient(145deg, #ffffff, #fdf5d9);
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.1),
    0 0 10px rgba(212,175,55,0.2);

  transition: 0.3s;
}
  .panel-heading{
  padding: 0;
  background: #cdc9c9 !important;
}
  .panel-title a{
  display: block;
  padding: 18px 25px;
  color: #05137a !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
  .panel-title a:hover{
  background: rgba(255,255,255,0.08);
}
  .panel-title a:after{
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: 0.3s;
}
  .panel-title a[aria-expanded="true"]:after{
  content: '−';
  color:#000;
}
  .panel-body{
  background: #fff;
  padding: 20px 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}
  .all_faqs{
      overflow: hidden;
      margin:auto;
      text-align: center;
    }
.all_faqs button{
  border:none;
  margin-top:20px;
  padding:10px 20px;
  font-weight:600;
  border-radius:6px;

  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  color:#000;

  transition:0.3s;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.all_faqs button:hover{
  transform: translateY(-3px);

  background: linear-gradient(90deg, #ffd95a, #f3c53c);

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.25),
    0 0 15px rgba(212,175,55,0.5);
}
/*footer sec*/

.footer{
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,215,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,215,0,0.06), transparent 40%),
    linear-gradient(135deg, #05070f, #02030a 70%);
    
  color: #fff;
  overflow: hidden;
  padding: 70px 0 0;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}
.footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,215,0,0.08), transparent);
  transform: skewX(-25deg);
  animation: shine 8s linear infinite;
}
.footer h4{
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.5px;
}
.footer h4:after{
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #f1c40f);
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}
.footer_content_box a{
  font-size: 14px;
  line-height: 1.9;
  color: #aaa;
}
.footer a{
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}
.footer a:hover{
  color: #FFD700;
  padding-left: 8px;
}
.list_unstyled{
	margin: 0;
	padding: 0;
}
.footer li{
	list-style: none;
  padding: 6px 0;
}
.footer_logo{
  max-width: 170px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 0px 6px rgba(255,215,0,0.3));
}
.social_icons{
  margin-top: 17px;
}
.social_icons a{
  display: inline-block;
  margin-right: 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 9px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.4s ease;
}
.social_icons a:hover{
  background: linear-gradient(135deg, #FFD700, #e6b800);
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}
.facebook{
  padding: 8px 12px !important;
}
.footer i{
 margin: 0 4px;
  color: #f1c40f;
  transition: 0.3s;
}
.footer i:hover{
  color: #FFD700;
}
.footer_bottom{
  background: #010409;
  text-align: center;
  margin-top: 50px;
  padding: 20px 0;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer_bottom strong{
	color: #FFD700;
  letter-spacing: 0.5px;
}
.social_icons a:nth-child(1):hover{
  background: #1877f2;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 12px rgba(24,119,242,0.6);
}

/* Twitter */
.social_icons a:nth-child(2):hover{
  background: #1da1f2;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 12px rgba(29,161,242,0.6);
}

/* Instagram */
.social_icons a:nth-child(3):hover{
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 12px rgba(214,41,118,0.6);
}

/* YouTube */
.social_icons a:nth-child(4):hover{
  background: #ff0000;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 12px rgba(255,0,0,0.6);
}


.whatsapp-float {
    position: fixed!important;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff!important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1EBE5D;
    color: #fff!important;
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-float i {
    line-height: 50px;
}
/*home page responsive*/
/*md media start*/
@media(max-width:1199px){
  /*nav bar*/
  .menu_bar{
  padding-bottom:5px;
} 
.logo {
    margin-top:8px;
}
.logo img{
  width: 80%;
  object-fit: cover;
  border-radius:20%;
}
.menu_content ul{
  padding-left:0px;
}
.menu_content a{
  color:#05137a;
  font-size:14px;
  font-weight:bold;
}
.menu_content li{
  padding:0px 0px;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 6.5px;
    margin-top: 15px;
}
.lang_optn{
  width:100%;
  overflow: hidden;
  /*background-color:#fbd40b;*/
  border-radius:5px;
  padding:5px 0 5px 5px;
  margin-top:18px;
}
.lang_optn li{
  list-style:none;
  float: left;
  padding:0 2px 0 2px;
}
.lang_optn a{
  text-decoration: none;  
  
  color:#05137a;
  padding:2px;
  box-shadow:0 0 10px rgba(212, 175, 55, 0.4),
    0 0 20px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(0, 0, 0, 0.15);
}
.call_btn{
  margin-top:18px;
  padding:6px 9px;
}
/*banner content*/


/*our services*/
.service_content {
    width: 30%;
  }
  .service_content > p {
  font-size: 16px;
  color: #777;
}
.banner_btn{
  padding: 14px 21px !important;
}
.know_btn{
  padding: 14px 12px !important;
}

/*how we work sec*/
  .step_box_3 p{
    padding: 0 18px;
}
/*about sec*/
.about_img{
    width: 100%;
    height: 100%;
}
.about_img{
  margin: 80px 0;
}
.about_title {
  margin: 7px 0;
}
.about_sub_title{
  margin: 0;
}
/*our experience-services-branches*/
.progress_types p{
  font-weight:bold;
}
.progress_sm_media{
  padding-bottom:30px;
}
/*briefing about our fast work*/
.trust_content_box {
    width: 46%;
    margin: 2%;
  }
  /*footer*/
  .social_icons a{
    margin: 0;
  }
}

/*sm media start*/
@media(max-width:991px){
  /*nav bar*/
  .logo img{
  width: 100%;
  object-fit: cover;
  border-radius:20%;
}
.lang_optn{
  width:100%;
  overflow: hidden;
  /*background-color:#fbd40b;*/
  border-radius:5px;
  padding:5px 0 5px 5px;
  margin-top:18px;
  /*display:block;*/
}
.call_btn{
  margin-top:6px;
  /*display:block;*/
}
.menu_content a{
    display:block;
    padding:10px;
  }
  .nav>li>a {
    padding: 10px 17px;
    margin-top: 12px;
}
/*banner content*/
.banner_content h2 {
    font-size: 30px;
  }
  .banner_content p {
    font-size: 16px;
  }

/*our services*/
.service_content {
    width: 100%; 
    margin: 0 0px 30px; 
  }
  .service_content > p {
  font-size: 16px;
}

.main_our_service > h2 {
    margin-bottom: 14px;
}
.banner_btn{
  padding: 14px 21px !important;
}
.know_btn{
  padding: 14px 12px !important;
}
/*how we work sec*/
.about_sec {
    padding: 40px;
  }
  .about_title {
    font-size: 28px;
  }
  .about_img{
  margin: 140px 0;
}
/*our experience-services-branches*/
.progress_types h1{
  font-size:30px;
  font-weight:bold;
}
.progress_types p{
  font-size:12px;
  font-weight:bold;

}
.progress_sm_media{
  padding-bottom:30px;
}
.rating_progress{
  padding: 20px 15px;
}
/*briefing about our fast work*/
.trust_content_box {
    width: 45%;
    margin: 10px 30px 10px 0;
  }
  .trust_content_box > p {
    font-size: 16px;
  }
  .trust_content > p {
    font-size: 18px;
  }

  .trust_icon_circle {
    float: none;
    margin-bottom: 10px;
  }
  /*footer*/
  .footer i {
    margin: 0 -2px;
}
.footer a{
  font-size: 13px !important;
}
.footer p{
  font-size: 13px !important;
}
}

/*xs media start*/
@media(max-width:767px){
  /*header top*/
  .logo img{
  width: 100px;
  margin-right: 175px;
}
.social_icon{
  overflow: hidden;
  float: right;
  display:none;
}
/*nav bar*/
  .social_icon{
  overflow: hidden;
  float: right;
  display:none;
}
  .menu_content{
    background: linear-gradient(180deg,#ffffff,#fff5cc);
    border-radius:10px;
    margin-top:10px;

    box-shadow: 
      0 10px 25px rgba(0,0,0,0.15);
  }

.menu_content{
  display: none;
}
  .menu_content ul{
    float:none;
  }
  .menu_content li{
    display:block;
    text-align:center;
  }
  .menu_content a{
    border-bottom:1px solid rgba(0,0,0,0.05);
  }
  .menu_content a:hover{
    background: linear-gradient(90deg,#f3c53c,#ffd95a);
    color:#000;
  }
  .custom_toggle {
    margin-top: 14px;
}
/*banner content*/
.banner_slider .item img {
    width: 100%;
    height: 200px;
}
.main_banner_content {
    padding: 10px 10px;
  }
  .banner_content h2 {
    font-size: 24px;
  }
  .banner_content p {
    font-size: 15px;
    padding: 0 30px;
  }
  .banner_btn {
    padding: 12px 22px;
    font-size: 14px;
  }
/*our services*/
.main_our_service {
    padding: 20px 0;
}
.main_trust_section {
    padding: 17px 0;
}
.trust_content > p {
    margin-bottom: 14px;
}

/*how we work sec*/
.about_sec {
    padding: 25px;
    margin: 10px 15px;
  }
  .about_title {
    font-size: 24px;
  }
  .about_sub_title {
    font-size: 14px;
  }
  .about_text {
    margin-top: 20px;
  }
  .about_img{
  margin: 0px;
}
.about_img{
  align-items: center;
}
.right_content{
  text-align: center;
}
.about_text p {
    padding: 0 20px;
}
.work_landing_line{
  width: 24%;
}
/*experience-services-mileston  */
.progress_mileston{
  padding-bottom:30px;
}
.progress_types{
  margin-bottom:30px;
}
/*briefing about our fast work*/
.trust_content > h2 {
    font-size: 24px;
  }

  .trust_content > p {
    padding: 10px 20px;
    font-size: 15px;
  }
  .trust_content_box {
    width: 100%;
    margin: 10px 0;
  }
   .trust_content_box > p {
    font-size: 17px;
  }
  /*faq sec*/
.any_qution {
    padding: 30px 0;
}
.panel-title a:after{
    right: 6px;
}
/*footer sec*/
.footer {
    padding: 20px 0 0;
}
.footer i {
    margin: 0 5px;
}
}







/*locate your branch page*/

/*locate your branch*/
.locate_your_branch{
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(120deg, #fff8e6, #ffe8a3);
}
.search_sec{
  overflow: hidden;
  /*background: #075E97;*/
}
.search-box {
  background: #1f5f8b;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  border-radius: 8px;
}
.search-box h3{
  font-weight: bold;
  font-size: 25px;
}
.search-box p{
  font-weight: bold;
  font-size: 16px;
}

.search-box input,
.search-box select {
  margin-bottom: 10px;
}

.btn-primary {
  background: #0b2d5c;
  border: none;
}
.search_img{
  border-radius: 8px;
}
.search_img img{
  width: 100%;
  height: 500px;
  border-radius: 8px;
  object-fit: cover;
}
.form-control{
  height: 49px;
  font-size: 17px;
}
.find_btn{
  margin: 30px 0 50px 0;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
}
.text-center{
  padding: 15px 0;
  font-weight: bold;
  font-size: 20px;
}
.btn-primary{
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0a244a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/*all branch with address*/

.all_branch{
  padding: 50px 0;
  background-color: #f8f9fb;
  /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/
}
.all_branch_title{
  font-size: 25px;
  font-weight: 600;
  padding: 9px 0;
}
.service_landing_line{
  background-color:#FFD700;

}
.result {
  margin-bottom: 15px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 0;
}
.branch_card{
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.branch_card h4{
  font-size: 18px;
  padding: 10px 0 20px 0;
  font-weight: bold;
  color: #C62828;
}
.branch_card p{
  font-size: 15px;
  color: #555;
}
.branch_card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.icon-text {
  color: #444;
  margin: 10px 0;
}
.icon-text .icon {
  margin-right: 8px;
}
.btn-group-custom {
  margin: 15px 0;
}
.call_btn {
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  color: #000;
  margin-right: 10px;
  transition: 0.3s;
}
.call_btn:hover {
  color: #000;
}
.enquire-btn {
  border: 1px solid #1f5f8b;
  color: #1f5f8b;
  margin-top: 13px;
  background: transparent;
  transition: 0.3s;
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.2),
    0 0 10px rgba(212,175,55,0.3);
}
.enquire-btn:hover {
  background: #C62828;
  color: #fff;
  border: none;
}
/*locate your branch responsive*/
/*sm media start*/
@media(max-width:991px){
  .search_img{
    margin-top: 20px;
  }
}








/*contact page*/
.contact-header {
    width: 100%;
    overflow: hidden;
    background:linear-gradient(120deg, #fff8e6, #ffe8a3);
    text-align: center;
    padding: 55px 0;
}
.contact_us h1 {
    font-size: 40px;
    color: #ce0a20;
    font-weight: 700;
}
.contact_us p {
    font-size: 15px;
    color: #555;
}
/* media quary start */
@media(max-width:320px){
   .contact-header {
    padding: 45px 0;
   } 
  .contact_us h1{
    font-size: 34px;
  }  
  .contact_us p{
    font-size: 16px;
    padding: 5px 20px;
    
  }
}
/* contact-header-section-end */
/* contact-section-start */
.contact_section {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}
.contact_info_sec {
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow:  0 .145rem .35rem rgba(0, 0, 0, .075) !important;;
    padding: 30px ;
}
.contact_info_sec h3 {
    font-size: 28px;
    color:#ce0a20;
    font-weight: 600;
    padding-bottom: 25px;
}
.contact_info_sec p{
    font-size: 15px;
    padding: 3px 0;
    color: #555;
}
.contact_location_sec {
    width: 100%;
    min-height: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 20px;
}
.contact_form_sec{
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 28px ;
     box-shadow:  0 .145rem .35rem rgba(0, 0, 0, .075) !important;;
}
.contact_form_sec h3{
    color: #ce0a20;
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 20px;
}
.form_label{
    color: #555;
    font-size: 14px;
    font-weight: 500;
}
.form-control:focus{
    box-shadow: none;
    border-color: #7b7b7b;
}
#message{
    padding-bottom: 90px;
}
.contact_form_sec .btn{
    background-color: #ce0a20 !important;
    border: none;
    font-size: 14px;
    padding: 10px 20px;
    transition: all ease-in-out 0.5s;
}
.contact_form_sec .btn:hover{
    background-color: #a0744e !important;
}
/* media quary */
@media(max-width:320px){
    .contact_form_sec{
        margin-top: 30px;
    }
    .contact_form_sec h3{
    font-size: 22px;
}
}







/*how we work page*/
.how_we_work{
  padding: 60px 0;
  background: #f9f9f9;
}
.content h2{
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}
.content p{
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
.step_content h2{
  font-weight: bold;
  padding-top: 40px;
}
/* Right Card */
.steps_card{
  background: #c62828;
  color: #fff;
  padding: 5px;
  border-radius: 8px;
  margin-top: 20px;
}
.steps_card h3{
  background: #ffca28;
  color: #000;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 18px;
}
.steps_card img{
  width: 100%;
}




/*about us page*/
/*About page--About us section*/
.journey_timeline{
  background-color:#f5f7fb;
}
.journey_header{
  text-align:center;
  overflow: hidden;
  margin:40px 0;
}
.journey_header h2{
  font-weight:700;
}
.timeline {
  position: relative;
  margin: 50px 0;
}

/* Center line */
.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: #d4af37;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline item spacing */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

/* Content box */
.timeline-content {
  background-color:#8ef1c7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 25px;
  width: 18px;
  height: 18px;
  background: #d4af37;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Align text */
.left {
  text-align: right;
}

.right {
  text-align: left;
}

/* Typography */
.timeline-content h4 {
  color:#c62828;
  font-weight: bold;
}

.timeline-content h5 {
  margin-top: 5px;
  font-weight: 600;
}


/*Review Section */
.review_section {
  background: #f8f9fb;
  padding: 60px 0;
}

/* Heading */
.section_title {
  margin-bottom: 10px;
}
.section_title h2{
  font-weight: 700;
}
.section_title p{
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 15px;
}


/* Card */
.testimonial_box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.stars {
  color: #f4b400;
  margin-bottom: 15px;
}
.testimonial_box p {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}
.testimonial_box h5 {
  margin-top: 15px;
  font-weight: 600;
}
.review-btn {
  background: #f4b400;
  color: #000;
  font-weight:700;
  padding: 12px 30px;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
}

.review-btn:hover {
  background: #d39e00;
  color: #000;
}
/*responsive aboutus page*/
/*md media quary*/
@media (max-width: 1199px){
.testi_box_b{
  padding-bottom:46px;

}
}
/*sm media quary */
@media (max-width: 991px){
.testi_box_b{
  padding-bottom:46px;
}
}

/*xs media quary*/
@media (max-width: 767px){
  .journey_header{
    margin: 23px 0 -20px 0;
  }
  .journey_header  h2{
    font-size:24px;
  }

  .section_title h2{
     font-size:24px;
  }
.testi_box_b{
  padding-bottom:46px;
}
.review_section {
    padding: 0px 0;
}
}
/*whyus page*/
.trust_sec{
  text-align: center;
  padding: 20px 0;
}
.trust_sec h2{
  padding: 0 10px;
  font-weight: bold;
}
.trust_sec p{
  padding: 0 10px;
}






























/*services page*/
/*old gold services page*/

/*old gold head*/
.gold_buyer_kolkata_sec{
    width: 100%;
    background:linear-gradient(120deg, #fffdf5, #fff3cc, #ffe8a3);;
    overflow: hidden;
}

.gold_buyer_content_sec {
    text-align: center;
    padding: 90px 0;
}
.gold_buyer_content_sec h1{
    font-size: 38px;
    color: #C62828;
    font-weight: 700;
}
.gold_buyer_content_sec p{
    color: #000000;
    line-height: 28px;
    font-size: 16px;
    padding-top: 15px;
}
@media(max-width:1199px){
   .gold_buyer_content_sec{
    padding: 20px 0;
}
}
@media(max-width:991px){
   .gold_buyer_content_sec h1 {
    font-size: 25px;
}
.gold_buyer_content_sec p{
    font-size: 13px;
    padding-top: 0px;
}
}
@media(max-width:767px){
    .gold_buyer_content_sec h1 {
        font-size: 25px !important;
    }
    .old_gold_into_sec {
    padding: 20px 0 !important;
    }
  }
@media(max-width:320px){
    .gold_buyer_content_sec h1{
        font-size: 32px;
    }
}
/*old gold description*/
.old_gold_into_sec{
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.left_into_content h2{
    padding: 90px 0 20px 0;
    font-weight: 700;
    font-size: 32px;
    color: #C62828;
}
.left_into_content p{
    padding: 10px 0;
    font-size: 16px;
    color: #3a3939a9;
}
.main_gold_sec h2{
  padding: 20px 0 20px 0 !important;
}

.right_into_img{
    border-radius: 15px;
    overflow: hidden;
}
.right_into_img img{
    width: 100%;
    height: 100%;
}
@media(max-width:991px){
    .left_into_content h2{
        font-size: 25px !important;
}
.left_into_content p {
    font-size: 13px;
}
}
@media(max-width:768px){
    .left_into_content h2{
        font-size: 30px;
        padding: 0 0 20px 0;
}
    .right_into_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 60px;
}
}
@media(max-width:320px){
    .left_into_content h2{
    font-size: 26px;
    padding: 0 0 20px 0;
    }
    
.right_into_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}
}


/*types of old gold*/
.type_of_old_gold_section{
  background:#b35f56ad;
  padding: 60px 0;
  color: #fff;
}
.type_old_gold_section_title{
  color: #efc841;
  margin-bottom: 40px;
  font-weight: bold;
}
.house-box{
  position: relative;
  background:#C62828;
  color: #f1eaea;
  padding: 40px 20px 25px;
  margin: 30px 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.box-adjust{
  padding-bottom:45px;
}
.house-box:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid #C62828;
}
.house-box i{
  font-size: 28px;
  color: #f4b400;
  margin-bottom: 10px;
}
.house-box p{
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}
.chain_sec{
  padding: 23px 20px;
}
.house-box:hover{
  /*background: #f4b400;*/
  color: #fff;
  transform: translateY(-8px);
}

.house-box:hover i{
  color: #fff;
}

@media (max-width:991px){
.box_adjust{
  padding-bottom:26px;
}
.type_of_old_gold_section{
  padding: 20px 0;
}
.type_old_gold_section_title {
    font-size: 25px;
    margin-bottom: 25px;
}
@media(max-width: 767px){
  .type_of_old_gold_section {
        padding: 0px 0 !important;
    }
}
}

@media (max-width: 767px) {
  .house-box {
    margin: 20px 20px !important;
}
}

/*why sell old gold*/
.why_sell_section{
  padding: 60px 0;
  background: #f9f9f9;
}
.why_sell_section_title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #C62828;
}
.why_box {
  background: linear-gradient(180deg, #FFD54F, #FFECB3);
  padding: 30px 20px;
  margin: 20px 0;
  text-align: center;
  border-radius: 10px;
  border-left: 5px solid #C62828;
  transition: 0.3s;
}
.why_box i {
  font-size: 26px;
  color: #C62828;
  margin-bottom: 15px;
}
.why_box p {
  font-size: 15px;
  color: #444;
  margin: 0;
}
@media (max-width: 991px) {
  .why_sell_section_title {
    font-size: 25px;
}
.why_sell_section {
    padding: 20px 0;
}
}
@media(max-width: 767px){
  .why_sell_section {
        padding: 0px 0 !important;
    }
    .why_box {
    margin: 0px 0 10px 0 !important;
    }
}

/*rating sec*/
.rating_counter_section{
  background: linear-gradient(135deg, #fff8e1, #ffccbc);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.counter_box {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #FFD700, #E0A800) border-box;
}
.counter_box p{
  font-size: 13px;
}
@media (max-width: 991px) {
  .counter_box {
    margin: 5px 0;
}
}
@media(max-width: 767px){
  .rating_counter_section {
    padding: 20px 0 !important;
    }
}


/*location sec*/
.areas_section{
  padding: 60px 0;
  background: linear-gradient(180deg, #fff8e1, #fff);
}
.location_section_title{
  color: #C62828; 
  font-weight: 700;
}
.location_section_subtitle{
  color: #7a6a3a;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 115px;
}
.area_circle{
  width: 140px;
  height: 140px;
  margin: 15px auto;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #C62828;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.area_circle i{
  font-size: 22px;
  color: #C62828;
  margin-bottom: 8px;
  transition: 0.3s;
}
.area_circle p{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
}
.area_circle:hover{
   transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15),
              0 0 15px rgba(255,193,7,0.4);
  border-color: #C62828;
}
.area_circle:hover i{
  color: #C62828;
  font-size: 20px;
  transform: scale(1.1);
}
.area_circle:hover p{
  color: #c79c00;
}
.area_circle:hover::before {
  background: linear-gradient(180deg, #ff5722, #ff9800);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .location_section_title {
    font-size: 25px;
}
.location_section_subtitle {
    padding: 4px 30px;
}
}
@media(max-width: 767px){
  .areas_section {
    padding: 0px 0;
}
.location_section_title {
    font-size: 23px;
    padding: 0 10px;
}
.area_circle {
    width: 120px;
    height: 120px;
    margin: 0px auto 10px;
}
}

/*range sec*/
.category_of_gold_section{
  overflow: hidden;
  background: linear-gradient(135deg, #fff8e1, #ffd54f);
  padding: 60px 0;
}
.categoty_title h2{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #C62828;
}
.categoty_title p{
  max-width: 700px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 40px;
  margin: auto;
}
.service_box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #C62828;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  align-items: center;
}
.service_gold_1{
  border: 2px solid #C62828;
  border-radius: 20px;
}
.service_gold_1 img{
  width: 100%;
  border-radius: 20px;
}
.service_description h4{
  font-weight: 500;
  font-size: 20px;
  padding-top: 20px;
}
.line {
  width: 50px;
  height: 3px;
  background: #FFC107;
  margin: 10px 0;
}
.btn-dark {
  background: #0f172a;
  color: #fff;
  border: none;
}
.btn-warning {
  margin: 0 5px;
}
.branch_btn{
  color: #fff !important;
}
@media (max-width: 991px) {
  .category_of_gold_section {
    padding: 20px 0;
}
.service_description h4 {
    padding-top: 0px;
}
}
@media(max-width: 767px){
      .category_of_gold_section {
        padding: 0px 0;
    }
    .categoty_title h2 {
      font-size: 25px;
}
    .branch_btn{
      margin-top: 10px;
}
}

/*visit branch sec*/
.visit_cta_section{
  overflow: hidden;
  background:#fdecea;
  padding: 30px 0;
  color: #000;
}
.cta_title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 9px;
}
.cta_text{
  font-size: 15px;
  margin: 10px 0 30px;
  font-weight: 500;
}
.cta_btn{
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
}
.cta_btn:hover{
  background: #222;
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .visit_cta_section {
    padding: 10px 0;
}
.cta_title {
    font-size: 25px;
}
.cta_text {
    font-size: 13px;
}
}
@media(max-width: 767px){
  .cta_btn {
    padding: 12px 10px;
    font-size: 13px;
}
}














/*old silver services page*/

/*old silver services page*/
/*old silver head*/
.silver_buyer_kolkata_sec{
    width: 100%;
    background: linear-gradient(120deg, #f5f5f5, #e0e0e0, #cccccc);
    overflow: hidden;
}

.silver_buyer_content_sec {
    text-align: center;
    padding: 90px 0;
}
.silver_buyer_content_sec h1{
    font-size: 38px;
    color: #C62828;
    font-weight: 700;
}
.silver_buyer_content_sec p{
    color: #000000;
    line-height: 28px;
    font-size: 16px;
    padding-top: 15px;
}
@media(max-width:1199px){
   .silver_buyer_content_sec{
    padding: 20px 0;
}
}
@media(max-width:991px){
   .silver_buyer_content_sec h1 {
    font-size: 25px;
}
.silver_buyer_content_sec p{
    font-size: 13px;
    padding-top: 0px;
}
}
@media(max-width:767px){
    .silver_buyer_content_sec h1 {
        font-size: 25px !important;
    }
    .old_silver_into_sec {
    padding: 20px 0 !important;
    }
  }
@media(max-width:320px){
    .silver_buyer_content_sec h1{
        font-size: 32px;
    }
}
/*old silver description*/
.old_silver_into_sec{
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.left_silver_content h2{
    padding: 90px 0 20px 0;
    font-weight: 700;
    font-size: 32px;
    color: #C62828;
}
.left_silver_content p{
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.right_silver_img{
    border-radius: 15px;
    overflow: hidden;
}
.right_silver_img img{
    width: 100%;
    height: 100%;
}
@media(max-width:991px){
    .left_silver_content h2{
        font-size: 25px !important;
}
.left_silver_content p {
    font-size: 13px;
}
}
@media(max-width:768px){
    .left_silver_content h2{
        font-size: 30px;
        padding: 0 0 20px 0;
}
    .right_silver_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 60px;
}
}
@media(max-width:320px){
    .left_silver_content h2{
    font-size: 26px;
    padding: 0 0 20px 0;
    }
    
.right_silver_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}
}


/*types of old gold*/
.type_of_old_silver_section{
  background:#f8f3ea;
  padding: 60px 0;
  color: #fff;
}
.type_old_silver_section_title{
  color: #C62828;
  margin-bottom: 40px;
  font-weight: bold;
}
.silver-house-box{
  position: relative;
  background:#9e9e9e;
  color: #333;
  padding: 40px 20px 25px;
  margin: 30px 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.silver-house-box:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid #9e9e9e;
}
.silver-house-box i{
  font-size: 28px;
  color:#C62828;
  margin-bottom: 10px;
}
.silver-house-box p{
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}
.silver-house-box:hover{
  /*background: #f4b400;*/
  color: #fff;
  transform: translateY(-8px);
}

.silver-house-box:hover i{
  color: #fff;
}

@media (max-width:991px){
.box_adjust{
  padding-bottom:26px;
}
.type_of_old_silver_section{
  padding: 20px 0;
}
.type_old_silver_section_title {
    font-size: 25px;
    margin-bottom: 25px;
}
@media(max-width: 767px){
  .type_of_old_silver_section {
        padding: 0px 0 !important;
    }
}
}
@media (max-width: 767px) {
  .silver-house-box {
    margin: 20px 20px !important;
}
}



/*why sell old silver*/
.silver_section{
  padding: 60px 0;
  background: #fff;
}
.why_sell_silver_section_title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color:#C62828;
}
.silver_why_box {
  background: linear-gradient(180deg, #e0e0e0, #fafafa);
  padding: 30px 20px;
  margin: 20px 0;
  text-align: center;
  border-radius: 10px;
  border-left: 5px solid #C62828;
  transition: 0.3s;
}
.silver_why_box i {
  font-size: 26px;
  color: #C62828;
  margin-bottom: 15px;
}
.silver_why_box p {
  font-size: 15px;
  color: #444;
  margin: 0;
}
@media (max-width: 991px) {
  .why_sell_silver_section_title {
    font-size: 25px;
}
.silver_section {
    padding: 20px 0;
}
}
@media(max-width: 767px){
  .silver_section {
        padding: 0px 0 !important;
    }
    .silver_why_box {
    margin: 0px 0 10px 0 !important;
    }
}

/*rating sec*/
.rating_silver_section{
  background: linear-gradient(135deg, #f5f5f5, #d6d6d6);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.silver_counter_box {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #bdbdbd, #757575) border-box;
}
.silver_counter_box p{
  font-size: 13px;
}
@media (max-width: 991px) {
  .silver_counter_box {
    margin: 5px 0;
}
}
@media(max-width: 767px){
  .rating_silver_section {
    padding: 20px 0 !important;
    }
}


/*location sec*/
.silver_areas_section{
  padding: 60px 0;
  background: linear-gradient(180deg, #f5f5f5, #ffffff);
}
.location_silver_section_title{
  color: #C62828; 
  font-weight: 700;
}
.location_silver_section_subtitle{
  color: #7a6a3a;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 115px;
}
.silver_area_circle{
  width: 140px;
  height: 140px;
  margin: 15px auto;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #C62828;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.silver_area_circle i{
  font-size: 22px;
  color: #C62828;
  margin-bottom: 8px;
  transition: 0.3s;
}
.silver_area_circle p{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
}
.silver_area_circle:hover{
   transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15),
              0 0 15px rgba(255,193,7,0.4);
  border-color: #C62828;
}
.silver_area_circle:hover i{
  color: #C62828;
  font-size: 20px;
  transform: scale(1.1);
}
.silver_area_circle:hover p{
  color: #c79c00;
}
.silver_area_circle:hover::before {
  background: linear-gradient(180deg, #ff5722, #ff9800);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .location_silver_section_title {
    font-size: 25px;
}
.location_silver_section_subtitle {
    padding: 4px 30px;
}
}
@media(max-width: 767px){
  .silver_areas_section {
    padding: 0px 0;
}
.location_silver_section_title {
    font-size: 23px;
    padding: 0 10px;
}
.silver_area_circle {
    width: 120px;
    height: 120px;
    margin: 0px auto 10px;
}
}

/*range sec*/
.category_of_silver_section{
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #dcdcdc);
  padding: 60px 0;
}
.silver_categoty_title h2{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #C62828;
}
.silver_categoty_title p{
  max-width: 700px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 40px;
  margin: auto;
}
.silver_service_box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #C62828;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  align-items: center;
}
.silver_service_gold_1{
  border: 2px solid #C62828;
  border-radius: 20px;
}
.silver_service_gold_1 img{
  width: 100%;
  border-radius: 20px;
}
.silver_service_description h4{
  font-weight: 500;
  font-size: 20px;
  padding-top: 60px;
}
.coin_con h4{
  padding-top: 30px;
}

.btn-warning {
  margin: 0 5px;
}
.branch_btn{
  color: #fff !important;
}
@media(max-width: 1199px){
  .silver_service_description h4{
  padding-top: 30px;
}
.coin_con h4{
  padding-top: 10px;
}
}
@media (max-width: 991px) {
  .category_of_silver_section {
    padding: 20px 0;
}
.silver_service_description h4 {
    padding-top: 10px;
}
.new_sil_title h4{
  padding-top: 0px;
}
.coin_con h4{
  padding-top: 0px;
}
}
@media(max-width: 767px){
.category_of_silver_section {
        padding: 0px 0;
}
.silver_categoty_title h2 {
      font-size: 25px;
}
}

/*visit branch sec*/
.visit_silver_section{
  overflow: hidden;
  background:#fff;
  padding: 30px 0;
  color: #000;
}
.silver_cta_title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 9px;
}
.silver_cta_text{
  font-size: 15px;
  margin: 10px 0 30px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .visit_silver_section {
    padding: 10px 0;
}
.silver_cta_title {
    font-size: 25px;
}
.silver_cta_text {
    font-size: 13px;
}
}









/*old platinum head*/
.platinum_buyer_kolkata_sec{
    width: 100%;
    background: linear-gradient(120deg, #e6e9f0, #d2d6dc, #b0b7c3);
    overflow: hidden;
}

.platinum_buyer_content_sec {
    text-align: center;
    padding: 90px 0;
}
.platinum_buyer_content_sec h1{
    font-size: 38px;
    color: var(--dark);
    font-weight: 700;
}
.platinum_buyer_content_sec p{
    color: #333;
    line-height: 28px;
    font-size: 16px;
    padding-top: 15px;
}
@media(max-width:1199px){
   .platinum_buyer_content_sec{
    padding: 20px 0;
}
}
@media(max-width:991px){
   .platinum_buyer_content_sec h1 {
    font-size: 25px;
}
.platinum_buyer_content_sec p{
    font-size: 13px;
    padding-top: 0px;
}
}
@media(max-width:767px){
    .platinum_buyer_content_sec h1 {
        font-size: 25px !important;
    }
    .old_platinum_into_sec {
    padding: 20px 0 !important;
    }
  }
@media(max-width:320px){
    .platinum_buyer_content_sec h1{
        font-size: 32px;
    }
}
/*old platinum description*/
.old_platinum_into_sec{
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.left_platinum_content h2{
    padding: 90px 0 20px 0;
    font-weight: 700;
    font-size: 32px;
    color: var(--dark);
}
.left_platinum_content p{
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.right_platinum_img{
    border-radius: 15px;
    overflow: hidden;
}
.right_platinum_img img{
    width: 100%;
    height: 100%;
}
@media(max-width:991px){
    .left_platinum_content h2{
        font-size: 25px !important;
}
.left_platinum_content p {
    font-size: 13px;
}
}
@media(max-width:768px){
    .left_platinum_content h2{
        font-size: 30px;
        padding: 0 0 20px 0;
}
    .right_platinum_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 60px;
}
}
@media(max-width:320px){
    .left_platinum_content h2{
    font-size: 26px;
    padding: 0 0 20px 0;
    }
    
.right_platinum_img{
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}
}


/*types of old gold*/
.type_of_old_platinum_section{
  background:#f4f6f7;
  padding: 60px 0;
  color: #fff;
}
.type_old_platinum_section_title{
  color: #2F4F4F;
  margin-bottom: 40px;
  font-weight: bold;
}
.platinum-house-box{
  position: relative;
  background: linear-gradient(145deg, #dfe4ea, #b2bec3);
  color: #2d3436;
  padding: 40px 20px 25px;
  margin: 30px 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.platinum-house-box:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid #b2bec3;
}
.platinum-house-box i{
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}
.platinum-house-box p{
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}
.platinum-house-box:hover{
   background: linear-gradient(135deg, #cfd8dc, #90a4ae);
  color: #000;
  transform: translateY(-8px);
}

.platinum-house-box:hover i{
  color: #000;
}

@media (max-width:991px){
.box_adjust{
  padding-bottom:26px;
}
.type_of_old_platinum_section{
  padding: 20px 0;
}
.type_old_platinum_section_title {
    font-size: 25px;
    margin-bottom: 25px;
}
@media(max-width: 767px){
  .type_of_old_platinum_section {
        padding: 0px 0 !important;
    }
}
}
@media (max-width: 767px) {
  .platinum-house-box {
    margin: 20px 20px !important;
}
}



/*why sell old platinum*/
.platinum_section{
  padding: 60px 0;
  background: #fff;
}
.why_sell_platinum_section_title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}
.platinum_why_box {
  background: linear-gradient(180deg, #e0e0e0, #fafafa);
  padding: 30px 20px;
  margin: 20px 0;
  text-align: center;
  border-radius: 10px;
  border-left: 5px solid var(--primary);
  transition: 0.3s;
}
.platinum_why_box i {
  font-size: 26px;
   color: var(--primary);
  margin-bottom: 15px;
}
.platinum_why_box p {
  font-size: 15px;
  color: #444;
  margin: 0;
}
@media (max-width: 991px) {
  .why_sell_platinum_section_title {
    font-size: 25px;
}
.platinum_section {
    padding: 20px 0;
}
}
@media(max-width: 767px){
  .platinum_section {
        padding: 0px 0 !important;
    }
    .platinum_why_box {
    margin: 0px 0 10px 0 !important;
    }
}

/*rating sec*/
.rating_platinum_section{
  background: linear-gradient(135deg, #e0e0e0, #b0b7c3);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.platinum_counter_box {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #bdbdbd, #757575) border-box;
}
.platinum_counter_box p{
  font-size: 13px;
}
@media (max-width: 991px) {
  .platinum_counter_box {
    margin: 5px 0;
}
}
@media(max-width: 767px){
  .rating_platinum_section {
    padding: 20px 0 !important;
    }
}


/*location sec*/
.platinum_areas_section{
  padding: 60px 0;
  background: linear-gradient(180deg, #f5f5f5, #ffffff);
}
.location_platinum_section_title{
  color: var(--dark);
  font-weight: 700;
}
.location_platinum_section_subtitle{
  color: #666;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 115px;
}
.platinum_area_circle{
  width: 140px;
  height: 140px;
  margin: 15px auto;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #333333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.platinum_area_circle i{
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
  transition: 0.3s;
}
.platinum_area_circle p{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
}
.platinum_area_circle:hover{
   transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2),
              0 0 15px rgba(180,180,180,0.5);
  border-color: var(--primary);
}
.platinum_area_circle:hover i{
 color: var(--dark);
  font-size: 20px;
  transform: scale(1.1);
}
.platinum_area_circle:hover p{
  color: var(--primary);
}
.platinum_area_circle:hover::before {
  background: linear-gradient(180deg, #ff5722, #ff9800);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .location_platinum_section_title {
    font-size: 25px;
}
.location_platinum_section_subtitle {
    padding: 4px 30px;
}
}
@media(max-width: 767px){
  .platinum_areas_section {
    padding: 0px 0;
}
.location_platinum_section_title {
    font-size: 23px;
    padding: 0 10px;
}
.platinum_area_circle {
    width: 120px;
    height: 120px;
    margin: 0px auto 10px;
}
}

/*range sec*/
.category_of_platinum_section{
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #dcdcdc);
  padding: 60px 0;
}
.platinum_categoty_title h2{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.platinum_categoty_title p{
  max-width: 700px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 40px;
  margin: auto;
}
.platinum_service_box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--primary);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  align-items: center;
}
.platinum_service_gold_1{
  border: 2px solid #333;
  border-radius: 20px;
}
.platinum_service_gold_1 img{
  width: 100%;
  border-radius: 20px;
}
.platinum_service_description h4{
  font-weight: 500;
  font-size: 20px;
  padding-top: 60px;
}
.coin_con h4{
  padding-top: 30px;
}

.btn-warning {
  margin: 0 5px;
}
.branch_btn{
  color: #fff !important;
}
@media(max-width: 1199px){
  .platinum_service_description h4{
  padding-top: 30px;
}
.coin_con h4{
  padding-top: 10px;
}
}
@media (max-width: 991px) {
  .category_of_platinum_section {
    padding: 20px 0;
}
.platinum_service_description h4 {
    padding-top: 10px;
}
.new_sil_title h4{
  padding-top: 0px;
}
.coin_con h4{
  padding-top: 0px;
}
}
@media(max-width: 767px){
.category_of_platinum_section {
        padding: 0px 0;
}
.platinum_categoty_title h2 {
      font-size: 25px;
}
}

/*visit branch sec*/
.visit_platinum_section{
  overflow: hidden;
  background:#fff;
  padding: 30px 0;
  color: var(--dark);
}
.platinum_cta_title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 9px;
}
.platinum_cta_text{
  font-size: 15px;
  margin: 10px 0 30px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .visit_platinum_section {
    padding: 10px 0;
}
.platinum_cta_title {
    font-size: 25px;
}
.platinum_cta_text {
    font-size: 13px;
}
}
/* privacy policy and term and condition*/
.privcy_policy_custom{
  background: #0b1d3a;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.privcy_policy_custom h1{
  font-size: 32px;
  font-weight: bold;
}
.privcy_policy_box {
  background: #fff;
  padding: 40px;
  margin-top: -30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
}
.privcy_policy_box h3{
  margin-top: 25px;
  font-weight: bold;
  color: #222;
}
.privcy_policy_box p{
  color: #555;
  line-height: 1.7;
}

.privcy_policy_box ul{
  padding-left: 20px;
}

.privcy_policy_box ul li{
  margin-bottom: 6px;
}
.privcy_policy_box a{
  color: #007bff;
  text-decoration: underline;
}

/*gold_settlement_faq*/
.settle_faq_title{
  text-align: center;
  margin: 40px 0;
  font-weight: 600;
}
.faq-panel{
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.faq-panel .panel-heading{
  font-weight: 600;
  font-size: 16px;
  padding-left: 20px;
  border-bottom: 1px solid #eee;
}

/*gold_loan_settlement page*/
.banner_btn {
  background: linear-gradient(90deg,#f3c53c,#ffd95a);
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right:5px;

  /* shadow */
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/* Button Hover */
.banner_btn:hover{
  transform: translateY(-3px) scale(1.05);

  /*background: linear-gradient(90deg,#ffd95a,#f3c53c);*/

  box-shadow: 
    0 12px 25px rgba(0,0,0,0.25),
    0 0 15px rgba(212,175,55,0.5);
}
.know_btn{
  background: #C62828;
  color: #fff;
  padding: 14px 20px;
}

/*About gold settlement service*/


/* Background with gradient */
.gold-loan-risk {
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    padding: 70px 0;
}

/* Vertical center */
.vertical-align {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* LEFT SIDE */
.Loan_risk_left-content h2 {
    font-weight: 800;
    font-size: 36px;
    color: #222;
}

.Loan_risk_left-content h2 span {
    color: #e53935;
}

.line {
    width: 60px;
    height: 4px;
    background: #e53935;
    margin: 15px 0 20px;
}

.Loan_risk_left-content p {
    color: #555;
    font-size:15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT SIDE TIMELINE */
.problem-timeline {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.problem-timeline h4 {
    color: #e53935;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Timeline vertical line */
.problem-timeline:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: 20px;
    width: 2px;
    background: #eee;
}

/* Timeline items */
.problem-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
}

.problem-item i {
    position: absolute;
    left: 15px;
    top: 0;
    background: #e53935;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
}

.problem-item p {
    margin: 0;
    color: #444;
}
.settlement_work_process{
  overflow: hidden;
  background-color: #f8f3ea;
  text-align: center;
  padding-bottom:20px;
}
.settlement_work_process h2{
  font-weight:700;
  padding-top:50px;
  color: #c62828;
}
.process_content{
  height:225px;
  overflow: hidden;
  background:#fff;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 10px rgba(255, 193, 7, 0.4);
  text-align: center;
  border-radius:10px;
 
  margin:50px 0;

}
.process_content i{
  font-size:36px;
  color: #c62828;
  padding:20px 0 6px;
}
.process_content h4{
  font-weight:700;
}
.process_content p{
 font-size:15px;
 padding:0 10px 20px;
 line-height:24px;
}


.bank_vs_shreegold{
  overflow: hidden;
  text-align: center;
  padding:50px 0;
  background:rgb(0 30 56 / var(--tw-bg-opacity, 1));
}
.compare_content_heading{
  overflow: hidden;
}
.compare_content_heading h2{
  font-weight:700;
  color: #0082e1;
}
.comparing_bank_Shreegold{
  overflow: hidden;
  height:240px;
  background:#8f3345;
  border-radius:10px;
  text-align:left;
  margin-top:40px;
  padding:15px 20px;

}
.comparing_color_change_b{
  background:#29564f;
}
.comparing_bank_Shreegold h5{
  font-weight:700;
  color:#f9cc45;
}
.comparing_bank_Shreegold ul{
  margin:0;
  padding:15px 0 0 15px;
}
.comparing_bank_Shreegold li{
  padding-bottom:10px;
  color:red;
}
.comparing_bank_Shreegold a{
  text-decoration: none;
  color:#fff;
}



/*responsive*/

@media(max-width:1199px){
  .gold_buyer_content_sec{
    padding: 20px 0;
}
.offer_settlement_md{
      padding-bottom:10px !important;
}
.process_content p{
 font-size:14px;
}
}
@media(max-width:991px){
   .gold_buyer_content_sec h1 {
    font-size: 25px;
}
.gold_buyer_content_sec p{
    font-size: 13px;
    padding-top: 0px;
}
.vertical-align {
        display: block;
}

.problem-timeline {
        margin-top: 30px;
}
.process_content{
  height:260px;
}
.process_content p{
  font-size:14px;
}
.comparing_bank_Shreegold{
  height:260px;
}

}
@media(max-width:767px){

.process_content{
  height:200px;
}
.process_content p{
  font-size:14px;
}

.comparing_bank_Shreegold{
  height:280px;
}
}

@media (max-width: 480px) {
.Loan_risk_left-content h2 {
        font-size: 26px;
}
@media(max-width:320px){
.gold_buyer_content_sec h1{
      font-size: 32px;
}
}








