
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Montserrat", sans-serif;
}

body{
  background:#e6e6e6;
}

/* ================= HEADER ================= */

header{
 
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .05)
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:bold;
  font-size:20px;
}

.logo-circle{
  width:35px;
  height:35px;
  border-radius:50%;
  background:#32c36c;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:22px;
}

.search-lang{
  display:flex;
  align-items:center;
  gap:15px;
}

.search-lang input{
  padding:6px 10px;
  border-radius:20px;
  border:1px solid #ccc;
}
html {
  scroll-behavior: smooth;
}

/* ================= NAV BUTTONS ================= */

.nav-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:30px 15px;
  justify-content:center;
}

.nav-buttons a{
  padding:6px 12px;
  border:none;
  border-radius:4px;
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  font-size:16px;
  text-decoration:none;
  transition:0.5s ease
}

.nav-buttons a:hover{
 opacity:0.6
}

.red{background:#d83b3b;}
.green{background:#4caf50;}
.blue{background:#2196f3;}
.orange{background:#ff9800;}
.purple{background:#9c27b0;}
.gray{background:#777;}

/* ================= WELCOME BANNER ================= */

.banner{
  background:#000;
  color:white;
  text-align:center;
  padding:25px 20px;
 border-top: 6px solid #000;
    border-bottom: 6px solid #000;
}

.banner p{
  line-height:1.6;
    font-size: 18px;

}
.innerpagesbanner{
	max-width:1040px;
  margin:auto;
  background: #000;
    padding: 10px;
}
/* ================= CALCULATOR ================= */

.calculator-container{
  display:flex;
  justify-content:center;
  padding:30px 15px;
}

.calculator{
  background:#fff;
  padding:15px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  width:400px;
}

.display{
  background:#cde6e6;
  height:50px;
  text-align:right;
  padding:10px;
  font-size:32px;
  border-radius:6px;
  margin-bottom:10px;
  overflow:hidden;
}

.buttons{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
}

.buttons button{
  padding:18px;
  border:none;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
  font-size:18px;
  background:#b0c4de;
  transition:0.5s ease
}
.buttons button:hover{
 
  background:#337297
}

.buttons button.operator{background:#7ec97e;}
.buttons button.equal{background:#4caf50; color:white;}
.buttons button.clear{background:#ff7043; color:white;}

/* ================= FEATURED ================= */

.featured{
  padding:40px 20px;
  text-align:center;
  background:#fff
}

.featured h2{
  margin-bottom:20px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:white;
  border:4px solid #1d7fb0;
  padding:20px;
}

.card button{
  margin-top:10px;
  padding:8px 15px;
  background:#1d7fb0;
  color:white;
  border:none;
}

/* ================= RED SECTION ================= */

.conversions{
  background:#b71c1c;
  color:white;
  padding:40px 20px;
  text-align:center;
}

.conversions h2{
  margin-bottom:15px;
}

/* ================= GREEN SECTION ================= */

.history{
  background: #15567D;
  color:white;
  padding:40px 20px;
  text-align:center;
      border-top: 6px solid #15567E;
      border-bottom: 6px solid #15567E;
}

/* ================= FOOTER ================= */

footer{
  background:black;
  color:white;
  text-align:center;
  padding:15px;
  font-size:14px;
}

/* ================= RESPONSIVE ================= */

.nav-buttons img{
	width: 31px;
    margin-right: 10px;
    vertical-align: middle;
}

/*
.calc-navbar{
    background:#222;
}
*/
.logo img{
	width:220px;
	vertical-align: middle;
}
.calc-menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
}

.calc-menu > li{
    position:relative;
}

.calc-menu > li > a{
    display:block;
    padding:15px 20px;
    color:#000;
    text-decoration:none;
	font-size: 21px;
    font-weight: 500;
}
/*
.calc-menu > li > a:hover{
    background:#444;
}
*/
/* DROPDOWN */
.calc-dropdown{
    list-style:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:max-content;
    padding:0;
    margin:0;
    display:none;
	background:#fff;
	z-index: 9999;
}

.calc-dropdown li a{
    display:block;
    padding:12px 15px;
    color:#000;
    text-decoration:none;
}

.calc-dropdown li a:hover{
    background:#000;
	color:#fff
}

/* SHOW ON HOVER */
.calc-menu li:hover > .calc-dropdown{
    display:block;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.cardwrap{
	width:1320px;
	margin:0 auto
}
.cardbox{
	width:33.3%;
	float:left;

}

.cardboxinner{
	padding: 15px;
    border: 4px solid #1d7fb0;
    margin: 0px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #ccc;
	transition:0.5s ease;
}
.cardboxinner:hover{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.cardimg{
	width:25%;
	float:left
}

.findalso a{
	text-decoration:none;
	color:blue;
	display:block;
	padding:7px 0px
}
.carddesc{
	width:75%;
	float:left;
	padding-left: 10px;
	text-align:left
}
.cardimg img{
	width:100%;
}
.cardlink{
	display: block;
    width: 100%;
    text-decoration: none;
    background: #000;
    padding: 10px;
    color: #fff;
	margin-top:10px
}
.cardtitle{
	font-weight: 600;
    font-size: 19px;
}

.cardwrap{
	margin-top:20px;
}
	
.footer a{
	text-decoration:none;
	color:#fff
}

.cardboxlast .cardbox{
	float:none;
	margin-left: auto;
  margin-right: auto;
  margin-top:15px;
}
/* Hide checkbox */
#menu-toggle{
    display:none;
}

/* Toggle Button */
.menu-btn{
    position:absolute;
    top:15px;
    right:20px;
    width:35px;
    height:25px;
    cursor:pointer;
  
}

.menu-btn span{
    display:block;
    height:4px;
    width:100%;
    background:#222;
    margin:5px 0;
    transition:0.4s;
    border-radius:4px;
}

/* Animate button to X 
#menu-toggle:checked + .menu-btn span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

#menu-toggle:checked + .menu-btn span:nth-child(2){
    opacity:0;
}

#menu-toggle:checked + .menu-btn span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}
*/


.toggle_btn{
	display:none
}

.logo a{
	display:block;
	text-decoration:none;
	color:#000
}


.clear{
	clear:both
}
.nav-buttons{
	width:1000px;
	margin:0 auto;
}
.smcontainer {
  max-width: 1200px; /* desktop */
  margin: 0 auto;     /* center horizontally */
  padding: 0 15px;    /* horizontal padding */
}
.mc-seo-content{
	padding:25px 0px
}
.mc-seo-content p{
	padding:8px 0px;
	line-height:27px
}
.notegst{
	padding-top:8px
}






.methodtwo{
	background:#f5f5f5;
}
.methodtwoinner{
	max-width:1200px;
	margin:0px auto;
	padding:50px 0px;
	 
}
.methodleftside{
	width:500px;
	float:left;
	margin-top: 35px;
}
.methodrightside{
	width:700px;
	float:right;
}
.methodleftside h1{
	    font-size: 35px;
    padding-bottom: 20px;
}
.methodleftside p{
	        font-size: 18px;
    line-height: 28px;
}

.methodleftsideinner{
	padding-right:15px;
}
.methodrightsideinner{
	padding-left:15px
}
.history p{
	font-size: 18px;
    line-height: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer a{
	padding:0px 6px
}

.finance-seo-content {
    max-width: 1000px;
    margin: 60px auto;
    padding:20px;
    line-height: 1.7;
    color: #334155;
	background:#fff;
	border-radius:5px
}

.finance-seo-content h2 {
    font-size: 22px;
    margin: 0px 0 12px;
    color: #0f172a;
}

.finance-seo-content ul {
    margin: 15px 0 20px 20px;
}

.finance-seo-content li {
    margin-bottom: 8px;
}

.finance-seo-content a {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.finance-seo-content a:hover {
    text-decoration: underline;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000; /* The color of the arrow */
  display: inline-block;
  margin-left: 5px; /* Adjust spacing as needed */
  /* Add positioning if part of a complex layout */
  /* position: absolute; */
  /* top: ...; */
  /* right: ...; */
      vertical-align: middle;
}




.mt-menu-toggle {
      width: 40px;
      height: 30px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
      position: relative;
      margin: 20px;
    }

    .mt-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Animate toggle to "X" when active */
    .mt-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mt-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mt-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
/* =========================
   FAQ SECTION STYLING
========================= */

.faq-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1e293b;
}

.faq-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: 0.3s ease;
    position: relative;
}

.faq-section h3:hover {
    background: #e2e8f0;
}

.faq-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    padding: 15px 20px 25px 20px;
    margin: 0;
    display: none;
}

/* FAQ item spacing */
.faq-section h3 + p {
    margin-bottom: 15px;
}

/* Arrow indicator */
.faq-section h3::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s;
}

/* Active state */
.faq-section h3.active::after {
    content: "-";
}
.advisenote{
	max-width:1000px;
	margin:20px auto;
	color:red;
	font-size:18px;
	text-align:center
}

.bb-header {
    background: #4CAF50;
    padding: 20px;
    text-align: center;
}

.bb-logo img {
    max-width: 200px;
}

.bb-main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
}

.bb-intro h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #222;
}

.bb-intro p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.bb-wl-container {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.bb-wl-input-group {
    margin-bottom: 15px;
}

.bb-wl-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.bb-wl-field-row {
    display: flex;
    gap: 10px;
}

.bb-wl-field-row input,
.bb-wl-field-row select,
.bb-wl-input-group input,
.bb-wl-input-group select {
    flex: 1;
    padding: 8px 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.bb-wl-button {
    display: inline-block;
    padding: 10px 25px;
    background: #4CAF50;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.bb-wl-button:hover {
    background: #45a049;
}

.bb-wl-result {
    margin-top: 20px;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 5px;
}

.bb-wl-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}

.bb-seo-content h2, .bb-seo-content h3 {
    color: #222;
    margin-top: 20px;
    margin-bottom: 10px;
}

.bb-seo-content p, .bb-seo-content ul, .bb-seo-content table {
    margin-bottom: 15px;
    color: #555;
}

.bb-bmi-table {
    width: 100%;
    border-collapse: collapse;
}

.bb-bmi-table th, .bb-bmi-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.bb-footer {
    text-align: center;
    padding: 15px 0;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}

.bb-footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}
.finance-seo-content.seoscience ol{
	padding:0px 15px
}
.finance-seo-content ol{
	padding:0px 15px
}

.ab-container{
  max-width:1000px;
  margin:40px auto;
  background:#fff;
  padding:30px;
  border-radius:8px;
  box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.ab-title{
  font-size:32px;
  font-weight:bold;
  margin-bottom:10px;
  text-align:center;
}

.ab-subtitle{
  font-size:20px;
  font-weight:bold;
  margin-top:25px;
  margin-bottom:10px;
}

.ab-text{
  font-size:16px;
  margin-bottom:15px;
}

.ab-list{
  padding-left:20px;
}

.ab-list li{
  margin-bottom:8px;
}

.ab-highlight{
  font-weight:bold;
}

.ab-footer{
  margin-top:30px;
  font-size:14px;
  color:#666;
  text-align:center;
}
.cs-container{
  max-width:900px;
  margin:40px auto;
  background:#fff;
  padding:30px;
  border-radius:8px;
  box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.cs-title{
  font-size:32px;
  font-weight:bold;
  text-align:center;
  margin-bottom:10px;
}

.cs-text{
  font-size:16px;
  margin-bottom:20px;
  text-align:center;
}

.cs-email-box{
  background:#f1f5ff;
  padding:15px;
  border-radius:6px;
  text-align:center;
  margin-bottom:25px;
  font-size:18px;
}

.cs-email-box a{
  color:#2a5bd7;
  text-decoration:none;
  font-weight:bold;
}

.cs-form{
  margin-top:20px;
}

.cs-label{
  display:block;
  font-weight:bold;
  margin-bottom:5px;
}

.cs-input,
.cs-textarea{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:5px;
  font-size:15px;
}

.cs-textarea{
  min-height:120px;
  resize:vertical;
}

.cs-button{
  background:#2a5bd7;
  color:#fff;
  border:none;
  padding:12px 20px;
  font-size:16px;
  border-radius:5px;
  cursor:pointer;
}

.cs-button:hover{
  background:#1d44a8;
}
.pp-container{
  max-width:1000px;
  margin:40px auto;
  background:#fff;
  padding:30px;
  border-radius:8px;
  box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.pp-title{
  font-size:32px;
  font-weight:bold;
  text-align:center;
  margin-bottom:20px;
}

.pp-heading{
  font-size:20px;
  font-weight:bold;
  margin-top:25px;
  margin-bottom:10px;
}

.pp-text{
  font-size:16px;
  margin-bottom:15px;
}

.pp-list{
  padding-left:20px;
}

.pp-list li{
  margin-bottom:8px;
}
.allmenuwrap{
	max-width:1000px;
	margin:40px auto;
	padding:20px;
	background:#fff;
	border-radius:5px
}
.calclist{
	width:50%;
	float:left;
	padding-bottom:20px
}
.allmenu li{
	list-style:none;
    
	
}
.allmenu ul li{
	padding-left:20px;
}
.allmenu ul li a{
	    text-decoration: none;
    /* padding-bottom: 8px; */
    margin: 8px 0px;
    display: block;
    font-size: 18px;
	transition:0.5s ease
}
.allmenu ul li a:hover{
	   color:#000
}

.successmsg{
    display:none;
    color:green;
    text-align: center;
    font-weight: bold;
    margin-top: 8px;
    font-size: 18px;
}
/* RESPONSIVE *************************************************************************************************************/
@media(max-width:1300px){

.cardwrap{
	width:95%;
	margin:0 auto
}



}
@media(max-width:1220px){

.methodtwoinner {
    padding: 50px 30px;
}
.methodleftside{
	width:430px;
	float:left;
	margin-top: 35px;
}
.methodrightside{
	width:600px;
	float:right;
}
.methodleftside h1 {
    font-size: 30px;
}


}
@media(max-width:1150px){
.featured p{
	margin-bottom:12px
}
.cardimg{
	width:100%
}
.cardimg img{
	width:120px;
}
.carddesc{
	width:100%;
	text-align:center;
	padding-left:0
}

}
@media(max-width:1130px){
.calc-menu > li > a {
   
    padding: 15px 12px;
    font-size: 18px;
}



}

@media(max-width:1110px){
.methodleftside {
    max-width: 400px;
}
.methodrightside {
    max-width: 580px;
}
.methodleftside h1 {
    font-size: 28px;
}
.methodleftside p {
    font-size: 17px;
    line-height: 28px;
}


}
@media(max-width:1024px){

.history p{
    width: 96%;
    margin: 0 auto;
}

.cardwrap{
	width:95%;
	margin:0 auto
}
.methodtwoinner{
	width:95%;
	margin:20px auto
}
.methodleftside{
	width:50%;
}
.methodrightside{
	width:50%;
}




}
@media(max-width:992px){
.search-lang {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;   /* full viewport height */
  
  overflow-y: auto;   /* enable vertical scroll */
  overflow-x: hidden; /* prevent horizontal scroll */
      background: #f8f8f8;
      box-shadow: -2px 0 5px rgba(0,0,0,0.2);
      transition: right 0.3s ease;
      padding-top: 60px;
	  bottom:0
	   
    }
	.mt-menu-toggle{
		display: flex;
	}	
.search-lang.active {
   right: 0;
        width: 100%;
        padding: 20px;
        max-width: 100%;
        display: unset;
        padding-top: 103px;
	  
    }	

.featured h2, .featured p {
    margin-bottom: 10px;
}
.cardtitle h3{
	font-size:18px
}
.cardbox {
    width: 50%;
    margin-bottom: 30px;
}

.calc-menu {
    display: block;
}

.calclist {
    width: 100%;
    float: left;
    padding-bottom: 20px;
}	
.calclist h2{
	font-size:20px
}
.allmenu{
	padding-top:80px
}
.allmenuwrap {
   margin:0
}	
.pp-container {
	margin:0
}

.cs-container {
    margin:0
}
.ab-container {
    margin:0
}
.pp-title {
    font-size: 26px;
    padding-top: 80px;
}
.cs-title{
    font-size: 26px;
    padding-top: 80px;
}
.ab-title{
    font-size: 26px;
    padding-top: 80px;
}
.history p{
    width: 96%;
    margin: 0 auto;
	font-size:16px
}
.methodtwoinner{
	width:95%;
	margin:0px auto
}
.methodleftside{
	width: 100%;
        max-width: 100%;
}
.methodrightside{
	width: 100%;
        max-width: 100%;
}
.methodleftside h1 {
    font-size: 22px;
    padding-bottom: 20px;
}

.methodtwoinner {
    padding: 20px 0px;
	padding-top:70px
}
.methodleftsideinner{
	padding-right:0px;
}
.methodrightsideinner{
	padding-left:0px
}







.toggle_btn{
	display:block
}
.cardwrap{
	width:95%;
	margin:0 auto
}
.nav-buttons{
	width:95%;
	margin:0 auto;
}

.calc-menu > li > a {
    padding-left: 0;
}

.calc-menu > li {
    border-bottom: 1px solid #000;
}
.arrow-down{
	float: right;
    position: relative;
    top: 12px;
}


}



/**************************************************************/
@media(max-width:768px){
.finance-seo-content h2 {
    font-size: 18px;
}
    .cardimg img {
        width: 85px;
    }

.mt-menu-toggle {
    width: 35px;
    right: -13px;
}
.faq-section h2 {
    text-align: center;
    font-size: 20px;
}
.faq-section {
    margin: 25px auto;
    padding: 20px 10px;
}	
.faq-section h3 {
    font-size: 16px;
}	
	
.finance-seo-content {
    margin-bottom:0
}	
.banner {
    padding:15px;
        padding-top: 114px;	
}
.innerpagesbanner {
    padding:0px;
}
.cardtitle {
    font-size: 17px;
}	
.seg {
   
    font-size: 11px !important;
}
.nav-buttons a {
   
    width: 100%;
} 
 .calc-menu{
        flex-direction:column;
    }

    .calc-dropdown{
        position:static;
    }
.cardwrap{
	width:95%;
	margin:0 auto;
	padding-top:15px
}
.cardbox{
	width:100%;
	float:left;
	margin-bottom:15px

}

.cardboxinner{

	padding:8px;
	margin:0px
}

.cardimg{
	width:25%;
	float:left
}


.carddesc{
	width:75%;
	float:left;
	padding-left: 10px;
	text-align:left
}	
.cardboxlast .cardbox {
    
    margin-top: 0px;
}
	
	.featured {
    padding: 20px 8px;
   
}
.history h2{
	font-size:21px
}	
	
	
	
	
}

@media(max-width:768px){

  header{
    flex-direction:none;
    gap:10px;
	position: fixed;
        width: 100%;
		padding:5px 10px;
		        z-index: 99999999999999999;
  }
.calc-dropdown{
	margin-bottom:10px
}
  .calculator{
    width:100%;
    max-width:320px;
  }
  .logo img {
    width:180px;
	padding-top: 6px;
}
.innerpagesbanner h1{
	font-size:19px
}

}

