
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #fff;
        }

        /* ================= NAVBAR ================= */

        .custom-navbar {
            padding: 8px 0;
            background: #f4f4f4;
        }

        .navbar-brand img {
            height: 48px;
        }

        /* ================= NAVBAR ================= */

.navbar-nav .nav-link{
    position:relative;
    color:#002143;
    font-size:18px;
    font-weight:600;
    margin-left:30px;
    transition:0.4s;
}

/* Hover */

.navbar-nav .nav-link:hover{
    color:#f97936;
}

/* Underline */

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#f97936;
    transition:0.4s;
}

/* Hover + Active */

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}
/* Dropdown animation */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    margin-top: 0;
    border-radius: 10px;
    padding: 8px 0;
}

/* Desktop hover effect */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Remove Bootstrap default arrow */
.dropdown-toggle::after {
    display: none;
}

/* Icon animation */
.nav-link i {
    transition: transform 0.3s ease;
}

/* Rotate icon on hover */
.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown item hover */
.dropdown-item {
    transition: all 0.25s ease;
}

.dropdown-item:hover {
        background: #002143;
    padding-left: 22px;
    color: white;
}
/* Active Color */
hr{
    margin:0;
}
.navbar-nav .nav-link.active{
    color:#f97936;
}
/* =========================
   Mobile Responsive
========================= */
@media (max-width: 991px) {

    .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 12px;
        background: transparent;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 15px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Rotate icon on open */
    .dropdown.show .nav-link i {
        transform: rotate(180deg);
    }
}
        /* ================= HERO SECTION ================= */

        .hero-section {
            background: #031f45;
            min-height: calc(100vh - 95px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Glow Effects */

        .hero-section::before {
            content: '';
            position: absolute;
            width: 450px;
            height: 450px;
            background: rgba(255, 150, 47, 0.12);
            border-radius: 50%;
            top: -120px;
            left: -120px;
            filter: blur(100px);
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(0, 183, 255, 0.10);
            border-radius: 50%;
            bottom: -120px;
            right: -120px;
            filter: blur(100px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
             padding: 80px 0; 
        }

        .hero-title {
            color: #fff;
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-text {
            color: #fff;
            font-size: 26px;
            line-height: 1.7;
            font-weight: 300;
            max-width: 720px;
            margin-bottom: 45px;
        }

        /* ================= BUTTONS ================= */

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .btn-custom {
            background: #ff962f;
            color: #fff;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            transition: 0.4s;
        }

        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: 0.5s;
        }

        .btn-custom:hover::before {
            left: 100%;
        }

        .btn-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 150, 47, 0.35);
            color: #fff;
        }

        /* ================= STORE BUTTON ================= */

        .store-btn img {
            height: 53px;
            transition: 0.4s;
        }

        .store-btn img:hover {
            transform: scale(1.08);
        }

        /* ================= MOBILE IMAGES ================= */

        .mobile-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 560px;
            z-index: 2;
        }

        .mobile-img {
            width: 220px;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        }

        .mobile-left {
            position: absolute;
            left: 0;
            bottom: -50px;
            z-index: 1;
            animation: floatLeft 4s ease-in-out infinite;
        }

        .mobile-right {
            position: absolute;
            right: 0;
             bottom: -50px;
            z-index: 2;
            animation: floatRight 4s ease-in-out infinite;
        }

        /* Floating Animation */

        @keyframes floatLeft {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-18px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes floatRight {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(18px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* ================= RESPONSIVE ================= */

        @media(max-width:1399px) {

            .hero-title {
                font-size: 48px;
            }

            .hero-text {
                font-size: 22px;
            }

            .mobile-img {
                width: 220px;
            }
        }

        @media(max-width:991px) {

            .navbar-nav {
                padding-top: 20px;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                margin-bottom: 10px;
            }

            .hero-section {
                text-align: center;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-text {
                font-size: 18px;
                margin: auto auto 30px;
            }

            .hero-buttons {
                justify-content: center;
            }

            /* .mobile-wrapper {
                margin-top: 60px;
                min-height: 500px;
            } */

            .mobile-img {
                width: 180px;
            }

            .mobile-left {
                left: 50%;
                transform: translateX(-120px);
                top: 80px;
            }

            .mobile-right {
                right: 50%;
                transform: translateX(120px);
            }
        }

        @media(max-width:576px) {

            /* .hero-content {
                padding: 50px 0;
            } */

            .hero-title {
                font-size: 34px;
            }

            .hero-text {
                font-size: 16px;
                line-height: 1.6;
            }

            .btn-custom {
                width: 100%;
                justify-content: center;
                font-size: 18px;
            }

            .hero-buttons {
                gap: 15px;
            }

            .store-btn img {
                height: 58px;
            }

            .mobile-wrapper {
                min-height: 420px;
            }

            .mobile-img {
                width: 145px;
            }

            .mobile-left {
                transform: translateX(-90px);
            }

            .mobile-right {
                transform: translateX(90px);
            }
        }





/* ================= FIXED NAVBAR ================= */
/* Body Padding */

/*body{*/
/*    padding-top:90px;*/
/*}*/
.custom-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:0.4s;
    padding:18px 0;
}

/* Scroll Effect */

.custom-navbar.scrolled{
    background:#e1e1e1;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    padding:12px 0;
}









/* ================= FEATURES SECTION ================= */

.features-section {
  /* padding:100px 0; */
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

/* Background Shape */

.features-section::before {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 350px;
  height: 180px;
  background: #dff5ff;
  border-radius: 120px 0 0 0;
  transform: rotate(-8deg);
}

/* ================= FEATURE CARD ================= */

.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 28px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid transparent;
  z-index: 1;
}

/* Hover Background */

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #11a8e8,
      #0b7ec5);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: #11a8e8;
}

/* ================= ICON BOX ================= */

.feature-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: #eaf5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.feature-icon i {
  font-size: 25px;
  color: #1099cc;
  transition: 0.4s;
}

/* Hover */

.feature-card:hover .feature-icon {
  background: #ffffff;
  transform: rotate(-8deg) scale(1.08);
}

.feature-card:hover .feature-icon i {
  color: #11a8e8;
  transform: scale(1.15);
}

/* ================= CONTENT ================= */

.feature-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  transition: 0.4s;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
  transition: 0.4s;
}

/* Hover Text */

.feature-card:hover .feature-content h3,
.feature-card:hover .feature-content p {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1199px) {

  .feature-content h3 {
    font-size: 24px;
  }

  .feature-content p {
    font-size: 17px;
  }
}

@media(max-width:991px) {

  .features-section {
    padding: 80px 0;
  }

  .feature-card {
    margin-bottom: 20px;
  }
}

@media(max-width:767px) {

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 24px;
  }

  .feature-content p {
    max-width: 100%;
  }
}

@media(max-width:576px) {

  .features-section {
    padding: 60px 0;
  }

  .feature-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
  }

  .feature-icon i {
    font-size: 34px;
  }

  .feature-content h3 {
    font-size: 15px;
  }

  .feature-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ================= AboutSECTION =================  */
.about-sec {
  background-color: #a2cfdf1c;
}

.about-sec-div {
  background-image: url('https://ashishdestest.maxtraserver.in/toolzy_by_archna/assets/images/about-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 650px;
  width: 100%;
}

.about-secnd {
  position: relative;
}

.about-d h2 {
  color: #011A34;
  font-weight: 800;
  font-size: 40px;
}

.about-d {
  position: absolute;
  top: 200px;
  padding-right: 25px;
}
@media(max-width:991px) {
.about-sec-div {
  background-image: none !important;
   height: 300px;
}
.about-d{
  position: relative  !important;
  top: 10px;
}}
@media(max-width:425px) {
  .about-sec-div {
  background-image: none !important;
   height: 350px;
}
}

/* ================= CTA SECTION  ================= */

.cta-section {
  /* padding:70px 0; */
  background: #fff;
}

/* ================= LEFT BOX ================= */

.feature-wrapper {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 45px 35px;
  height: 100%;
  transition: 0.4s;
  background: #fff;
}

.feature-wrapper:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
}

/* Feature Item */

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: 0.4s;
}

/* Icon */

.feature-icon {
  min-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.feature-icon i {
  color: #1199cc;
  font-size: 24px;
  transition: 0.4s;
}

/* Hover */

.feature-item:hover .feature-icon {
  background: #1199cc;
  transform: rotate(-10deg) scale(1.08);
}

.feature-item:hover .feature-icon i {
  color: #fff;
  transform: scale(1.15);
}

/* Content */

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* ================= RIGHT BOX ================= */

.cta-box {
  background: #0e8cb0;
  border-radius: 16px 16px 0px 0px;
  padding: 38px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.cta-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 140, 176, 0.25);
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #f2f2f2;
  margin-bottom: 28px;
  max-width: 320px;
}

/* Button */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  background: #fff;
  color: #111;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(17, 153, 204, 0.12);
  transition: 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  background: #f8f8f8;
  color: #0e8cb0;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1199px) {

  .feature-content h4 {
    font-size: 17px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .cta-box h2 {
    font-size: 30px;
  }
}

@media(max-width:991px) {

  .cta-box {
    margin-top: 25px;
  }

  .feature-wrapper {
    padding: 35px 25px;
  }
}

@media(max-width:767px) {

  .feature-item {
    margin-bottom: 28px;
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

  .feature-wrapper {
    padding: 30px 22px;
  }

  .cta-box {
    text-align: center;
  }

  .cta-box p {
    max-width: 100%;
  }
}

@media(max-width:576px) {

  .cta-section {
    padding: 50px 0;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-box p {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    font-size: 18px;
  }
}

/*  ================= COUNTER SECTION ================= */
.counter-section {
  background: #031f45;
  padding: 55px 0;
  overflow: hidden;
}

/* Counter Box */

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  height: 100%;
}

/* Divider */

.counter-border {
  border-right: 1px dashed rgba(255, 255, 255, 0.45);
}

/* Icon */

.counter-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.counter-icon i {
  font-size: 38px;
  color: #ffffff;
  transition: 0.4s;
}

/* Content */

.counter-content h2 {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-content p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

/* Hover Effect */

.counter-box:hover .counter-icon {
  transform: translateY(-6px) scale(1.08);
}

.counter-box:hover .counter-icon i {
  color: #10a8e8;
}

.counter-box:hover .counter-content h2 {
  color: #10a8e8;
  transition: 0.4s;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1199px) {

  .counter-content h2 {
    font-size: 46px;
  }

  .counter-content p {
    font-size: 20px;
  }
}

@media(max-width:991px) {

  .counter-box {
    padding: 25px 0;
    border-bottom: 1px dashed grey;
  }

  .counter-border {
    border-right: none;
  }

  .counter-content h2 {
    font-size: 42px;
  }

  .counter-content p {
    font-size: 18px;
  }
}

@media(max-width:576px) {

  .counter-section {
    padding: 45px 0;
  }

  .counter-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }

  .counter-icon i {
    font-size: 32px;
  }

  .counter-content h2 {
    font-size: 36px;
  }

  .counter-content p {
    font-size: 17px;
  }
}

/* =========Ready to Get Started?=============  */

.ready-start {
  background-color: #031f45;
  border-radius: 10px;
}

.ready-start h2 {
  color: white;
  font-weight: 800;
}

.ready-start p {
  color: white;
  margin-bottom: 0;
}

@media(max-width:767px) {
  .ready-start .col-lg-5{
    padding-top: 0px !important;
  }
  .ready-start .col-lg-5 img{
    margin-top: 9px !important;
  }
   .ready-start .col-lg-7{
    padding-bottom: 0px !important;
  }
}



.feedback-section{
        width:100%;
        max-width:1100px;
        background:#fff;
        border-radius:20px;
        overflow:hidden;
        display:flex;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        animation:fadeIn 1s ease;
    }

    /* LEFT SIDE */
    .form-side{
        flex:1;
        padding:50px;
        animation:slideLeft 1s ease;
    }

    .form-side h2{
        font-size:35px;
        color:#002143;
        margin-bottom:10px;
    }

    .form-side p{
        color:#1a1919;
        margin-bottom:30px;
    }

    .input-group{
        margin-bottom:20px;
    }

    .input-group input,
    .input-group textarea{
        width:100%;
        padding:14px;
        border:1px solid #ddd;
        border-radius:10px;
        outline:none;
        transition:0.3s;
        font-size:15px;
    }

    .input-group input:focus,
    .input-group textarea:focus{
        border-color:#4a6cf7;
        box-shadow:0 0 8px rgba(74,108,247,0.3);
    }

    .input-group textarea{
        height:120px;
        resize:none;
    }

    .btn{
        width:100%;
        padding:14px;
        border:none;
        background:linear-gradient(45deg, #4a6cf7, #002143);
        color:#fff;
        font-size:16px;
        border-radius:10px;
        cursor:pointer;
        transition:0.4s;
    }

    .btn:hover{
        transform:translateY(-3px);
        box-shadow:0 8px 20px rgba(74,108,247,0.4);
        background:#002143;
        color:white;
    }

    /* RIGHT SIDE */
    .image-side{
        flex:1;
        position:relative;
        overflow:hidden;
        animation:slideRight 1s ease;
    }

    .image-side img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:0.5s;
    }

    .image-side:hover img{
        transform:scale(1.08);
    }

    .overlay{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,0.3);
        display:flex;
        justify-content:center;
        align-items:center;
        color:#fff;
        text-align:center;
        padding:20px;
    }

    .overlay h3{
        font-size:35px;
        line-height:1.4;
        animation:float 3s infinite ease-in-out;
    }

    /* ANIMATIONS */
    @keyframes slideLeft{
        from{
            opacity:0;
            transform:translateX(-50px);
        }
        to{
            opacity:1;
            transform:translateX(0);
        }
    }

    @keyframes slideRight{
        from{
            opacity:0;
            transform:translateX(50px);
        }
        to{
            opacity:1;
            transform:translateX(0);
        }
    }

    @keyframes fadeIn{
        from{
            opacity:0;
        }
        to{
            opacity:1;
        }
    }

    @keyframes float{
        0%{
            transform:translateY(0px);
        }
        50%{
            transform:translateY(-10px);
        }
        100%{
            transform:translateY(0px);
        }
    }

    /* RESPONSIVE */
    @media(max-width:900px){
        .feedback-section{
            flex-direction:column;
        }

        .image-side{
            height:300px;
        }
    }
/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 60px 0;
  background: #cfe2ff54;
}

/* Heading */

.faq-heading {
  text-align: center;
  margin-bottom: 60px;
}

.faq-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f1f1f;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  display: none;
}

/* FAQ CARD */

.faq-card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: 0.4s;
  border: 1px solid #f1f1f1;
}

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

/* BUTTON */

.faq-btn {
  width: 100%;
  border: none;
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #372f59;
  transition: 0.4s;
}

.faq-btn:focus {
  box-shadow: none;
}

/* ICON */

.faq-icon {
  font-size: 22px;
  color: #372f59;
  transition: 0.4s;
  min-width: 35px;
}

/* ACTIVE */

.faq-btn:not(.collapsed) {
  color: #372f59;
}

.faq-btn:not(.collapsed) .faq-icon {
  color: #FF5722;
  transform: rotate(180deg);
}

.faq-btn:not(.collapsed) .faq-icon::before {
  content: "\f2ea";
}

/* BODY */

.faq-body {
  padding: 20px;
}

.faq-body p {
  font-size: 18px;
  line-height: 1.9;
  color: #7b7b8f;
  margin: 0;
  max-width: 520px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1199px) {

  .faq-heading h2 {
    font-size: 52px;
  }

  .faq-btn {
    font-size: 18px;
    padding: 32px 30px;
  }

  .faq-body {
    padding: 0 30px 32px 92px;
  }
}

@media(max-width:991px) {

  .faq-heading {
    margin-bottom: 45px;
  }

  .faq-heading h2 {
    font-size: 42px;
  }
}

@media(max-width:767px) {

  .faq-btn {
    font-size: 17px;
    gap: 18px;
    padding: 26px 22px;
  }

  .faq-icon {
    font-size: 28px;
  }

  .faq-body {
    padding: 0 22px 26px 68px;
  }

  .faq-body p {
    font-size: 16px;
  }
}

@media(max-width:576px) {

  .faq-section {
    padding: 30px 0;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-btn {
    font-size: 16px;
    padding: 22px 18px;
  }

  .faq-body {
    padding: 0 18px 22px 58px;
  }

  .faq-body p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ================= How Our Platform Work ================= */
.platform-one img {
  width: 100%;
}

.platform-second img {
  height: 520px;
}

.platform-sec h2 {
  font-weight: 800;
  color: #011A34;
  margin-bottom: 25px;
}

.platform-sec h3 {
  font-size: 20px;
  font-weight: 800;
}

.platform-sec p {
  margin-bottom: 25px;
}

@media(max-width:767px) {
  .platform-second .col-sm-1 img {
    display: none;
  }
}

/* ================= FOOTER ================= */

.footer-section {
  background: linear-gradient(90deg, #002143 0%, #1c2a3a 100%);
  padding: 50px 0 30px;
  overflow: hidden;
}

/* Logo */

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 170px;
}

/* Description */

.footer-text {
  color: #8c9099;
  font-size: 16px;
  line-height: 1.8;
  max-width: 540px;
  margin: auto;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Menu */

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.4s;
  position: relative;
}

/* Hover Underline */

.footer-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #fe7c36;
  transition: 0.4s;
}

.footer-menu a:hover::after {
  width: 100%;
}

.footer-menu a:hover {
  color: #fe7c36;
}

/* Social Icons */

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.4s;
}

.footer-social a i {
  color: #ffffff;
  font-size: 30px;
  transition: 0.4s;
}

/* Hover */

.footer-social a:hover {
  transform: translateY(-6px);
}

.footer-social a:hover i {
  color: #fe7c36;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

  .footer-menu {
    gap: 45px;
  }

  .footer-text {
    font-size: 16px;
  }
}

@media(max-width:767px) {

  .footer-section {
    padding: 50px 0 35px;
  }

  .footer-menu {
    gap: 25px;
    margin-bottom: 40px;
  }

  .footer-menu a {
    font-size: 18px;
  }

  .footer-social {
    gap: 20px;
  }

  .footer-social a i {
    font-size: 26px;
  }
}

@media(max-width:576px) {

  .footer-logo img {
    max-width: 140px;
  }

  .footer-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 18px;
  }

  .footer-menu a {
    font-size: 17px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-social a i {
    font-size: 22px;
  }
}

/* ================= Privacy Policy ================= */

    .privacy-policy-hero{
      width:100%;
      min-height:320px;
      background:linear-gradient(135deg, #00243f, #002440d4);
      padding:120px 8%;
      color:#fff;
      position:relative;
      overflow:hidden;
    }

    .privacy-policy-hero::before{
      content:"";
      position:absolute;
      width:350px;
      height:350px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      top:-120px;
      right:-100px;
    }

    .privacy-policy-hero::after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      border-radius:50%;
      background:rgba(255,255,255,.05);
      bottom:-100px;
      left:-50px;
    }

    .privacy-policy-title{
      font-size:62px;
      margin-bottom:15px;
      position:relative;
      z-index:2;
    }

    .privacy-policy-description{
      max-width:700px;
      line-height:1.7;
      font-size:22px;
      opacity:.92;
      position:relative;
      z-index:2;
    }

    /* CONTAINER */

    .privacy-policy-container{
      width:90%;
      max-width:1200px;
      margin:-70px auto 80px;
      position:relative;
      z-index:5;
    }

    .privacy-policy-card{
      background:#fff;
      border-radius:24px;
      padding:50px;
      box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .privacy-policy-updated{
      display:inline-block;
      background:#dbe9eb;
      color:#002143;
      padding:10px 20px;
      border-radius:40px;
      font-weight:600;
      margin-bottom:40px;
    }

    /* SECTION */

    .privacy-policy-section{
      margin-bottom:50px;
      animation:privacyPolicyFade .7s ease;
    }

    .privacy-policy-section-title{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:34px;
      color:#002341;
      margin-bottom:20px;
      font-weight:700;
    }

    .privacy-policy-icon{
      width:52px;
      height:52px;
      background:#dbe9eb;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#002143;
      font-size:20px;
      display:none;
    }

    .privacy-policy-text{
      font-size:19px;
      line-height:1.9;
      color:#555;
      margin-bottom:18px;
    }

    .privacy-policy-list{
      padding-left:25px;
    }

    .privacy-policy-list li{
      font-size:18px;
      line-height:1.8;
      margin-bottom:12px;
      color:#444;
    }

    /* ACCORDION */

    .privacy-policy-accordion{
      margin-top:25px;
    }

    .privacy-policy-accordion-item{
      border:1px solid #eee;
      border-radius:16px;
      overflow:hidden;
      margin-bottom:18px;
      transition:.3s;
    }

    .privacy-policy-accordion-header{
      width:100%;
      padding:22px 25px;
      border:none;
      outline:none;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      cursor:pointer;
      font-size:20px;
      font-weight:600;
      color:#002341;
    }

    .privacy-policy-accordion-header:hover{
      background:#fafafa;
    }

    .privacy-policy-accordion-content{
      max-height:0;
      overflow:hidden;
      transition:max-height .4s ease;
      background:#fcfcfc;
    }

    .privacy-policy-accordion-content p{
      padding:0 25px 25px;
      line-height:1.8;
      color:#555;
      font-size:17px;
    }

    .privacy-policy-accordion-item.active 
    .privacy-policy-accordion-content{
      max-height:250px;
    }

    .privacy-policy-accordion-icon{
      transition:.3s;
    }

    .privacy-policy-accordion-item.active 
    .privacy-policy-accordion-icon{
      transform:rotate(180deg);
    }

    /* CONTACT BOX */

    .privacy-policy-contact-box{
      background:linear-gradient(135deg,#002341,#002143);
      border-radius:22px;
      padding:45px;
      text-align:center;
      color:#fff;
      margin-top:45px;
    }

    .privacy-policy-contact-title{
      font-size:36px;
      margin-bottom:15px;
    }

    .privacy-policy-contact-text{
      font-size:18px;
      line-height:1.7;
      margin-bottom:25px;
      color:#f3f3f3;
    }

    .privacy-policy-contact-btn{
      display:inline-block;
      padding:16px 35px;
      background:#fff;
      color:#002341;
      text-decoration:none;
      border-radius:50px;
      font-size:18px;
      font-weight:600;
      transition:.3s;
    }

    .privacy-policy-contact-btn:hover{
      transform:translateY(-3px);
    }

    /* FOOTER */

    .privacy-policy-footer{
      text-align:center;
      padding:25px;
      color:#666;
      font-size:16px;
    }

    /* ANIMATION */

    @keyframes privacyPolicyFade{

      from{
        opacity:0;
        transform:translateY(20px);
      }

      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    /* RESPONSIVE */

    @media(max-width:768px){

      .privacy-policy-hero{
        padding:60px 25px;
      }

      .privacy-policy-title{
        font-size:42px;
        padding-top: 79px;
      }

      .privacy-policy-description{
        font-size:18px;
      }

      .privacy-policy-container{
        width:94%;
      }

      .privacy-policy-card{
        padding:30px 22px;
      }

      .privacy-policy-section-title{
        font-size:26px;
      }

      .privacy-policy-text,
      .privacy-policy-list li{
        font-size:16px;
      }

      .privacy-policy-accordion-header{
        font-size:17px;
      }

      .privacy-policy-contact-title{
        font-size:28px;
      }

    }