/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.button {
    border: none;
    color: white;
    padding: 8px 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: 2px solid black;
  }
  .button:hover{
    background-color: #004ba5;
    color: #fff;
  }
  .button2 {
    background-color: #000;
    border: none;
    color: #fff !important;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  }
 /* Header Styling */
 .top-header {
    display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #ffffff;
        padding: 10px 0px;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
  }

  .top-header a {
    text-decoration: none;
    color: #004ba5;
    margin-left: 18px;
    font-size: 14px;
  }

  .top-header a:hover {
    text-decoration: underline;
  }

  /* Contact Number Styling */
  .contact-number {
    color: #007bff;
    font-weight: 600;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .top-header {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }

    .top-header div {
      margin: 5px 0;
    }

    .top-header a {
      margin-left: 10px;
    }
    .textauto {
        color: #0072ff;
        font-size: 65px !important;
        line-height: 1em;
        font-weight: 700;
    }
  }
/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1000;
    background-color: #fff;
    position: fixed;
    width: 100%;
}

.logo img {
    max-height: 50px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu a, .menu button {
    margin: 0 0.5rem;
    text-decoration: none;
    font-weight: 600;
    color: #1d283d;
}

.menu a:hover {
    color: #4a90e2;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .menu {
        display: none;
        position: fixed; /* Fixed position for the menu */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Full height to cover the screen */
        flex-direction: column;
        background: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 3rem 1rem 1rem; /* Space for the "cut" button */
        z-index: 1000;
        overflow-y: auto; /* Allow scrolling for long menus */
    }

    .menu a, .menu button {
        margin: 1rem 0;
        text-align: center;
        width: 100%;
        
        
    }

    .menu-close {
        display: block;
        position: fixed; /* Fixed position for the "cut" button */
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100; /* Ensure it stays above the menu */
        color: #333; /* Icon color */
    }

    .menu-close:hover {
        color: #ff264a; /* Highlight color for hover effect */
    }

    .menu-toggle {
        display: block;
    }

    .menu.show {
        display: flex;
    }
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: fixed;
        z-index: 1000;
    }
    .hero-section h1 {
        margin-bottom: 1rem !important;
        color: #1d283d !important;
        font-size: 40px !important;
        line-height: 1.15em !important;
        text-align: center !important;
        font-weight: 700 !important;
        margin-top: 2rem !important;
    }
}


/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-section h1 {
      margin-bottom: 1rem;
      color: #1d283d;
      font-size: 84px;
      line-height: 1.15em;
      text-align: center;
      font-weight: 700;
      margin-top: 5rem;
}

.hero-section .highlight {
    position: relative;
    color: #4a90e2;
}

.hero-section .highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: #ff4d4d;
    z-index: -1;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 4rem;
    font-size: 1.3rem;
    color: white;
    background-color: #ff264a;
    text-decoration: none;
    border-radius: 27px;
    font-weight: 600;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e43b3b;
}
.cta-button a:hover {
    text-decoration: none;
    color: #fff;
}
.hero-section small {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}
.textauto{
    color: #0072ff;
    font-size: 80px;
    line-height: 1em;
    font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {}
a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
max-width: 100%;
height: auto;
}
section {
    padding: 60px 0;
   /* min-height: 100vh;*/
}

.sec-title{
position:relative;
z-index: 1;
margin-bottom:60px;
}

.sec-title .title{
position: relative;
display: block;
font-size: 18px;
line-height: 24px;
color: #00aeef;
font-weight: 500;
margin-bottom: 15px;
}

.sec-title h2{
position: relative;
display: block;
font-size:40px;
line-height: 1.28em;
color: #222222;
font-weight: 600;
padding-bottom:18px;
}

.sec-title h2:before{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 330px;
    height: 3px;
    background-color: #5c93fd;
}

.sec-title .text{
position: relative;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
margin-top: 35px;
}

.sec-title.light h2{
color: #ffffff;
}

.sec-title.text-center h2:before{
left:50%;
margin-left: -25px;
}

.list-style-one{
position:relative;
}

.list-style-one li{
position:relative;
font-size:16px;
line-height:26px;
color: #222222;
font-weight:400;
padding-left:35px;
margin-bottom: 12px;
}

.list-style-one li:before {
content: "\f058";
position: absolute;
left: 0;
top: 0px;
display: block;
font-size: 18px;
padding: 0px;
color: #ff2222;
font-weight: 600;
-moz-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1.6;
font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
color: #44bce2;
}

.btn-style-one{
position: relative;
display: inline-block;
font-size: 17px;
line-height: 30px;
color: #ffffff;
padding: 10px 30px;
font-weight: 600;
overflow: hidden;
letter-spacing: 0.02em;
background-color: #00aeef;
}

.btn-style-one:hover{
background-color: #0794c9;
color: #ffffff;
}
.about-section{
position: relative;
padding: 110px 0 70px;
}

.about-section .sec-title{
margin-bottom: 45px;
}

.about-section .content-column{
position: relative;
margin-bottom: 50px;
}

.about-section .content-column .inner-column{
position: relative;
padding-left: 30px;
}

.about-section .text{
    margin-bottom: 20px;
    line-height: 26px;
    color: rgba(33, 37, 41, .8);
    font-size: 21px;
    font-weight: 400;
}

.about-section .list-style-one{
margin-bottom: 45px;
}

.about-section .btn-box{
position: relative;
}

.about-section .btn-box a{
padding: 15px 50px;
}

.about-section .image-column{
position: relative;
}

.about-section .image-column .text-layer{
position: absolute;
right: -110px;
top: 50%;
font-size: 325px;
line-height: 1em;
color: #ffffff;
margin-top: -175px;
font-weight: 500;
}

.about-section .image-column .inner-column{
position: relative;
padding-left: 80px;
padding-bottom: 0px;
}
.about-section .image-column .inner-column .author-desc{
position: absolute;
bottom: 16px;
z-index: 1;
background: orange;
padding: 10px 15px;
left: 96px;
width: calc(100% - 152px);
border-radius: 50px;
}
.about-section .image-column .inner-column .author-desc h2{
font-size: 21px;
letter-spacing: 1px;
text-align: center;
color: #fff;
margin: 0;
}
.about-section .image-column .inner-column .author-desc span{
font-size: 16px;
letter-spacing: 6px;
text-align: center;
color: #fff;
display: block;
font-weight: 400;
}

.about-section .image-column .image-1{
position: relative;
}
.about-section .image-column .image-2{
position: absolute;
left: 0;
bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
    margin-top: 50px;
}

.about-section .image-column .video-link{
position: absolute;
left: 70px;
top: 170px;
}
.youbst{
    font-size: 26px;
    font-weight: 300;
    font-style: italic;
}
.about-section .image-column .video-link .link{
position: relative;
display: block;
font-size: 22px;
color: #191e34;
font-weight: 400;
text-align: center;
height: 100px;
width: 100px;
line-height: 100px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 30px 50px rgba(8,13,62,.15);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}

.faicons{
    color: #00a005;
    padding-right: .3rem;
}
.prg{
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    margin-top: 2rem;
}
.poet{
    margin: auto;
}
.ma{
    color: #222222;
    font-size: 43px;
    line-height: 1.2em;
    text-align: center;
}
.pra{
    font-size: 24px;
    text-align: center;
}
.list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .list-item i {
    color: #1b68fb;
  }
  .footerpolicy li{
    display: inline;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .box {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .box h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
  }

  .box p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #666;
  }
  .f-logo img{
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  @media (max-width: 768px) {
    .logo img {
      max-height: 34px;
  }
  .about-section {
    position: relative;
    padding: 89px 0 70px;
}

.sec-title h2 {
  position: relative;
  display: inline-block;
  font-size: 31px !important;
  line-height: 1.2em;
  color: #1e1f36;
  font-weight: 700;
}
.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 260px;
  height: 3px;
  background-color: #5c93fd;
}

    .container {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer {
        font-size: 0.8rem;
        gap: 10px;
      }
  }

  @media (max-width: 480px) {
    .container {
      grid-template-columns: 1fr;
    }
  }
  a,
  a:hover,
  a:focus,
  a:active {
      text-decoration: none;
      outline: none;
  }
  
  a,
  a:active,
  a:focus {
      color: #333;
      text-decoration: none;
      transition-timing-function: ease-in-out;
      -ms-transition-timing-function: ease-in-out;
      -moz-transition-timing-function: ease-in-out;
      -webkit-transition-timing-function: ease-in-out;
      -o-transition-timing-function: ease-in-out;
      transition-duration: .2s;
      -ms-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -webkit-transition-duration: .2s;
      -o-transition-duration: .2s;
  }
  
  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  img {
max-width: 100%;
height: auto;
}
/*--blog----*/

.sec-title{
position:relative;
margin-bottom:70px;
}

.sec-title .title{
position: relative;
display: block;
font-size: 16px;
line-height: 1em;
color: #ff8a01;
font-weight: 500;
background: rgb(83 141 253);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
letter-spacing: 5px;
margin-bottom: 15px;
}

.sec-title h2{
position:relative;
display: inline-block;
font-size:42px;
line-height:1.2em;
color:#1e1f36;
font-weight:700;
}

.sec-title .text{
position: relative;
font-size: 16px;
line-height: 28px;
color: #888888;
margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title{
color: #ffffff;
-webkit-text-fill-color:inherit; 
}
.pricing-section {
position: relative;
padding: 0px 0 80px;
overflow: hidden;
}
.pricing-section .outer-box{
max-width: 1100px;
margin: 0 auto;
}
.pm{
    font-weight: 700;
}
.pricing-section .row{
margin: 0 -30px;
}

.pricing-block{
position: relative;
padding: 0 30px;
margin-bottom: 40px;
}

.pricing-block .inner-box{
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 0 0 30px;
    max-width: 370px;
    margin: 0 auto;
    border-bottom: 20px solid #40cbb4;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(0, 0, 0, .1);
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgba(0, 0, 0, .1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, .1);
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(0, 0, 0, .1);
    border: 1px solid #fffafa;
}

.pricing-block .icon-box{
position: relative;
padding: 50px 30px 0;
background-color: #40cbb4;
text-align: center;
}

.pricing-block .icon-box:before{
position: absolute;
left: 0;
bottom: 0;
height: 75px;
width: 100%;
border-radius: 50% 50% 0 0;
background-color: #ffffff;
content: "";
}


.pricing-block .icon-box .icon-outer{
position: relative;
height: 150px;
width: 150px;
background-color: #ffffff;
border-radius: 50%;
margin: 0 auto;
padding: 10px;
}

.pricing-block .icon-box i{
position: relative;
display: block;
height: 130px;
width: 130px;
line-height: 120px;
border: 5px solid #40cbb4;
border-radius: 50%;
font-size: 50px;
color: #40cbb4;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}

.pricing-block .inner-box:hover .icon-box i{
transform:rotate(360deg);
}

.pricing-block .price-box{
position: relative;
text-align: center;
padding: 10px 20px;
}

.pricing-block .title{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.pricing-block .price{
    display: block;
    font-size: 46px;
    font-weight: 700;
    color: #000000;
    margin-top: 32px;
    text-align: center;
}
.pmo{
    text-align: center;
}
.bl{
    color: #1b68fb;
    text-align: center;
    font-weight: 700;
    margin-top: 30px;
}
.ppg{
    text-align: center;
}
.dpr{
    color: rgba(33, 37, 41, .3);
}
.siu{
    margin-left: 20px;
    text-align: center;
}
.pricing-block .features{
position: relative;
max-width: 230px;
margin: 0 auto 20px;
}

.pricing-block .features li{
position: relative;
display: block;
font-size: 14px;
line-height: 30px;
color: #848484;
font-weight: 500;
padding: 5px 0;
padding-left: 30px;
border-bottom: 1px dashed #dddddd;
}
.pricing-block .features li:before {
position: absolute;
left: 0;
top: 50%;
font-size: 16px;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
font-family: "Font Awesome 5 Free";
margin-top: -8px;
}
.pricing-block .features li.false:before{
color: #e1137b;
content: "\f057";
}

.pricing-block .features li a{
color: #848484;
}


.pricing-block .features li:last-child{
border-bottom: 0;
}

.pricing-block .btn-box{
position: relative;
text-align: center;
}

.pricing-block .btn-box a{
position: relative;
display: inline-block;
font-size: 14px;
line-height: 25px;
color: #ffffff;
font-weight: 500;
padding: 8px 30px;
background-color: #40cbb4;
border-radius: 10px;
border-top:2px solid transparent;
border-bottom:2px solid transparent;
-webkit-transition: all 400ms ease;
-moz-transition: all 400ms ease;
-ms-transition: all 400ms ease;
-o-transition: all 400ms ease;
transition: all 300ms ease;
}

.pricing-block .btn-box a:hover{
color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box a{
color:#40cbb4;
background:none;
border-radius:0px;
border-color:#40cbb4;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box{
border-color: #1d95d2;
}

.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box{
background-color: #1d95d2;
}

.pricing-block:nth-child(2) .inner-box:hover .btn-box a{
color:#1d95d2;
background:none;
border-radius:0px;
border-color:#1d95d2;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .price{
color: #1d95d2;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .inner-box{
border-color: #ffc20b;
}

.pricing-block:nth-child(3) .btn-box a,
.pricing-block:nth-child(3) .icon-box{
background-color: #ffc20b;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .price{
color: #ffc20b;
}

.pricing-block:nth-child(3) .inner-box:hover .btn-box a{
color:#ffc20b;
background:none;
border-radius:0px;
border-color:#ffc20b;
}
.pricing-table {
    width: 75%;
    border-collapse: collapse;
    margin: 0 auto;
  }

  .pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 10px;
  }
.wrong{
    color: rgb(230, 51, 51);
}
  .pricing-table th {
    background-color: #f8f8f8;
  }

  .start-trial {
    display: inline-block;
    padding: 8px 33px;
    background-color: #ff4b5c;
    color: #fff;
    text-decoration: none;
    border-radius: 27px;
    font-size: 14px;
    margin-top: 10px;
  }

  .start-trial:hover {
    background-color: #d1404f;
  }

  @media (max-width: 768px) {
    .pricing-table {
      border: none;
    }

    /* .pricing-table thead {
      display: none;
    } */

    .pricing-table tr {
      display: block;
      margin-bottom: 20px;
      border-bottom: 2px solid #ddd;
    }

    .pricing-table td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 10px;
    }

    .pricing-table td::before {
      content: attr(data-label);
      font-weight: bold;
      text-align: left;
      flex: 1;
    }

    .pricing-table td:last-child {
      text-align: right;
    }
  }

.call-tracking-container {
    text-align: center;
    background-color: #edf0f5;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    margin: auto;
    margin-top: 140px;
    max-width: 880px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .sliding-text {
    font-size: 32px;
    color: #333;
    height: 40px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
  }
  .cta-button {
    background-color: #f7335d;
    color: #fff;
    padding: 10px 70px;
    font-size: 16px;
    border: none;
    border-radius: 27px;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background-color: #f7335d;
  }
  
  .cta-note {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
  }
  .footer {
    font-size: 0.9rem;
    color: #999;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer a {
    color: #007bff;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
/* Responsive Design */

/* Modal background */


/* Modal content box */

/* Modal background */
.modal {
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: none;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Close (cut) button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ff4444;
  text-decoration: none;
  cursor: pointer;
}

/* Input field styling */
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

input[type="email"]:focus {
  border-color: #ffca28;
}

/* Submit button styling */
.submitBtn {
  padding: 12px 20px;
  background-color: #f7335d;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submitBtn:hover {
  background-color: #e43b3b; 
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* thankyou */
.wrapper-1 img{
  width: 220px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.thank-you{    
text-align: center;
margin: 0;
margin-top: 36px;
color: #f7335d;
}
.cson{
  text-align: center;
  margin-top: 30px;
}
@media (min-width:600px){
.content{
max-width:1000px;
margin:0 auto;
}
.wrapper-1{
  height: 220px;
  max-width: 622px;
  margin: 0 auto;
  margin-top: 60px;
  box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}
}