html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Heading Styles */
h1 {
  font-size: 48px;
  color: #111;
}

h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  color: #111;
}

h4 {
  font-size: 20px;
  color: #111;
}

/* Banner Section */
.tf__banner_text h1 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tf__banner_text p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
}

/* Section Spacing */
.mt_50 {
  margin-top: 50px;
}


.mt_100 {
  margin-top: 100px;
}

.pt_75 {
  padding-top: 75px;
}

.pt_95 {
  padding-top: 95px;
}

.pt_100 {
  padding-top: 100px;
}

.pb_100 {
  padding-bottom: 100px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_40 {
  margin-bottom: 40px;
}

.xs_mt_30 {
  margin-top: 30px;
}

.xs_mt_45 {
  margin-top: 45px;
}

.xs_mt_50 {
  margin-top: 50px;
}

.mt_30 {
  margin-top: 30px;
}

/* Button Styling */
.common_btn {
  display: inline-block;
  padding: 14px 32px;
  background: #6254a3;
  color: #fff !important;
  border: 2px solid #6254a3;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.common_btn:hover {
  background: #4a3a7f;
  border-color: #4a3a7f;
  color: #fff !important;
}

/* Heading Area */
.tf__heading_area {
  text-align: center;
}

.tf__heading_area h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 15px;
}

.tf__heading_area p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.tf__heading_area_left {
  text-align: left;
}

.tf__heading_area_left h2 {
  text-align: left;
}

.tf__heading_area_left p {
  text-align: left;
  margin: 0;
}

/* Utility Classes */
.error {
  color: #ff0000 !important;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.custom_float {
  float: left;
  margin-right: 7%;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .tf__banner_text h1 {
    font-size: 36px;
  }

  .tf__banner_text p {
    font-size: 15px;
  }

  .tf__heading_area h2 {
    font-size: 32px;
  }

  .tf__heading_area p {
    font-size: 15px;
  }

  .common_btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .mt_95 {
    margin-top: 60px;
  }

  .pt_95 {
    padding-top: 60px;
  }

  .pb_100 {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  .tf__banner_text h1 {
    font-size: 28px;
  }

  .tf__banner_text p {
    font-size: 14px;
  }

  .tf__heading_area h2 {
    font-size: 26px;
  }

  .tf__heading_area p {
    font-size: 14px;
  }

  .common_btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

:root{
    --main-color: #3c54b1;
    --color2: #0c2461;
}
/*.demo{ background-color: #ddd; }*/
.pricingTable{
    color: #000;
    background: #EDEDED;
    font-family: 'Lato', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.pricingTable:before,
.pricingTable:after{
    content: "";
    background: var(--color2);
    width: 120px;
    height: 130px;
    position: absolute;
    top: 0;
    left: -60px;
    clip-path: polygon(50% 0%, 100% 64%, 50% 100%, 0% 50%);
}
.pricingTable:after{
    top: auto;
    bottom: 0;
    left: auto;
    right: -60px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 43%);
}
.pricingTable .pricingTable-header{
    color: #fff;
    background: var(--main-color);
    padding: 19px 0;
    margin: 0 0 25px;
}
.pricingTable .title{
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    color: #fff;
}
.pricingTable .pricing-content{
    text-align: left;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    display: inline-block;
}
.pricingTable .pricing-content li{
    color: #333;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 35px;
    padding: 0 0 0 25px;
    margin: 0 0 5px;
    position: relative;
}
.pricingTable .pricing-content li:last-child{ margin: 0; }
.pricingTable .pricing-content li:before{
    content: "\f00c";
    color: #2a8317;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    top: 2px;
    left: 0;
}
.pricingTable .pricing-content li.disable:before{
    content: "\f00d";
    color: #f32e30;
}
.pricingTable .price-value{ margin: 0 0 25px; }
.pricingTable .price-value .amount{
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 5px;
}
.pricingTable .price-value .duration{
    font-size: 16px;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
}
.pricingTable .pricingTable-signup{
    background: var(--main-color);
    padding: 19px 0; 
}
.pricingTable .pricingTable-signup a{
    color: #000;
    background: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 20px 6px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}
.pricingTable .pricingTable-signup a:hover{
    color: var(--main-color);
    text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}
.pricingTable.red{
    --main-color: #ee3f24;
    --color2: #c52a07;
}
.pricingTable.purple{
    --main-color: #B33771;
    --color2: #6D214F;
}
@media only screen and (max-width: 990px){
    .pricingTable{ margin: 0 0 40px; }
}

.mybutton{
    text-align: center;
    margin: 0 auto;
}

.mybutton .common_btn {
    border-radius: 0px !important;
    padding: 18px 30px !important;
}

