/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{

font-family:'Poppins',sans-serif;
background:#f7f8fb;

}

.header-area{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.3);

    transition:.4s;

    z-index:9999;

}

.navbar{

padding:18px 0;

}

.navbar-brand img{

width: 300px;

}

.nav-link{

    position:relative;
    padding:12px 18px !important;
    border-radius:12px;
    transition:.3s;

}

.nav-link:hover{

    background:#F5F8FF;
    color:#0d6efd;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:4px;

    width:0;

    height:2px;

    background:#2563EB;

    transition:.3s;

    transform:translateX(-50%);
 opacity: 0;
}

.nav-link:hover::after{
opacity: 1;
    width:70%;

}


.dropdown-menu{

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    display:block;

    transition:.35s;

    pointer-events:none;

}
.nav-item.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    pointer-events:auto;

}

.dropdown-item{

padding:12px 20px;

border-radius:10px;

transition:.3s;

font-size:15px;

}

.dropdown-item:hover{

background:#0d6efd;
color:#fff;

transform:translateX(5px);

}

.custom-btn{

    background:linear-gradient(135deg,#4F46E5,#2563EB);

    border:none;

    border-radius:50px;

    padding:14px 30px;

    font-weight:600;

    letter-spacing:.4px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(79,70,229,.25);

}

.custom-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(79,70,229,.35);

}

.navbar-toggler{

border:none;

}

.navbar-toggler:focus{

box-shadow:none;

}

@media(max-width:991px){

.navbar-collapse{

    margin-top:20px;

    background:#fff;

    border-radius:22px;

    padding:25px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.08);

}

.nav-link{

    padding:16px !important;

    margin:4px 0;

}

.dropdown-menu{

    opacity:1;
    visibility:visible;
    transform:none;

    display:none;

}

.dropdown-menu.show{

    display:block;

}

.custom-btn{

width:100%;
margin-top:15px;

}

}
.navbar-toggler{
    width:48px;
    height:48px;
    padding:0;
    display:flex;
    align-items:center;
}

.menu-icon{
    width:26px;
    height:20px;
    position:relative;
}

.menu-icon span{
    position:absolute;
    width:100%;
    height:2.5px;
    background:#111;
    border-radius:20px;
    transition:.35s ease;
}

.menu-icon span:nth-child(1){
    top:0;
}

.menu-icon span:nth-child(2){
    top:8px;
}

.menu-icon span:nth-child(3){
    top:16px;
}

/* OPEN */

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(1){

    transform:rotate(45deg);
    top:8px;

}

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(2){

    opacity:0;

}

.navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(3){

    transform:rotate(-45deg);
    top:8px;

}



.hero-section{
	    padding-top:140px;
    min-height:650px;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
   
    background:linear-gradient(180deg,#F8FBFF 0%,#ffffff 100%);

}
.pt-30{
	padding-top:30px;
}
.hero-badge{

    display:inline-block;

    background:#EEF4FF;

    color:#2563EB;

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    font-size:14px;

    margin-bottom:25px;

}

.hero-title{
    font-weight:800;
    line-height:1.15;

    color:#111827;

    margin-bottom:25px;

}

.hero-title span{

    color:#2563EB;

}

.hero-text{

    color:#6B7280;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.hero-btn{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

    box-shadow:0 20px 40px rgba(37,99,235,.25);

    transition:.4s;

}

.hero-btn:hover{

    transform:translateY(-6px);

}

.hero-btn2{

    border-radius:50px;

    padding:15px 35px;

    border:1px solid #E5E7EB;

    transition:.4s;

}

.hero-btn2:hover{

    transform:translateY(-6px);

    background:#fff;

}

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:60px;

}

.hero-stats h3{

    font-size:34px;

    color:#2563EB;

    margin-bottom:5px;

}

.hero-stats p{

    color:#6B7280;

}

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:550px;

    border-radius:25px;

    position:relative;

    z-index:5;

    transition:.5s;
	height:auto;
    object-fit:contain;
}

.hero-image:hover img{

    transform:translateY(-12px);

}

.shape1{

    width:260px;

    height:260px;

    background:#2563EB;

    border-radius:50%;

    position:absolute;

    top:-40px;

    left:0;

    filter:blur(120px);

    opacity:.20;

}

.shape2{

    width:220px;

    height:220px;

    background:#8B5CF6;

    border-radius:50%;

    position:absolute;

    bottom:-30px;

    right:0;

    filter:blur(120px);

    opacity:.18;

}

@media(max-width:991px){

.hero-section{

 
	    min-height:650px;
    text-align:center;

}

.hero-title{

    font-size:40px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-top:40px;

}

.hero-image{

    margin-top:50px;

}

}

@media(max-width:576px){

.hero-title{

    font-size:32px;

}.hero-section{

    padding-top:130px !important;

}


.hero-text{

    font-size:16px;

}

.hero-btn,
.hero-btn2{

    width:100%;

}

.hero-stats{

    flex-direction:column;

    gap:20px;

}

}
/* Laptop */
@media (max-width:1200px){
    .hero-section{
        min-height:600px;
    }
	
}

/* Tablet */
@media (max-width:991px){

    .hero-section{
        min-height:auto;
     
        text-align:center;
    }

}

/* Mobile */
@media (max-width:576px){

    .hero-section{
        min-height:auto;
       
    }

}
@media (max-width:576px){

    .hero-image img{
        max-width:300px;
        margin:auto;
        display:block;
    }

}
/* why choose us */
.why-us{

    padding:100px 0;

    background:#fff;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#EEF4FF;

    color:#2563EB;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}

.section-description{

    max-width:650px;

    margin:auto;

    color:#6B7280;

    line-height:1.8;

}

.feature-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(15px);

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:40px 30px;

    transition:.4s;

    height:100%;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(37,99,235,.15);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#4F46E5,#2563EB);

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    transition:.4s;

}

.feature-card:hover .feature-icon{

    transform:rotate(8deg) scale(1.08);

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:#6B7280;

    line-height:1.8;

}

@media(max-width:768px){

.section-title{

    font-size:32px;

}

.feature-card{

    padding:30px;

}

}
/* Service section*/
.services-section{

padding:110px 0;

background:#F8FBFF;

}

.section-heading span{

display:inline-block;

padding:8px 18px;

background:#EEF4FF;

color:#2563EB;

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.section-heading h2{

font-size:46px;

font-weight:700;

margin-bottom:20px;

}

.section-heading p{

max-width:650px;

margin:auto;

color:#6B7280;

line-height:1.8;

margin-bottom:70px;

}

.service-card{

background:#fff;

padding:40px;

border-radius:25px;

height:100%;

transition:.4s;

border:1px solid #ECECEC;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:4px;

width:0;

background:#2563EB;

transition:.4s;

}

.service-card:hover::before{

width:100%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.service-icon{

width:75px;

height:75px;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

background:linear-gradient(135deg,#4F46E5,#2563EB);

color:#fff;

margin-bottom:30px;

transition:.4s;

}

.service-card:hover .service-icon{

transform:rotate(-8deg) scale(1.1);

}

.service-card h4{

font-weight:700;

margin-bottom:18px;

}

.service-card p{

color:#6B7280;

line-height:1.8;

margin-bottom:30px;

}

.service-card a{

text-decoration:none;

font-weight:600;

color:#2563EB;

}

.service-card i{

transition:.3s;

}

.service-card:hover a i{

margin-left:8px;

}

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

.service-card{

padding:30px;

}

}
/* Premium Portfolio Section section */
.portfolio-section{

padding:110px 0;

background:#fff;

}

.portfolio-card{

position:relative;

overflow:hidden;

border-radius:25px;

cursor:pointer;

}

.portfolio-card img{

width:100%;


object-fit:cover;

transition:.6s;

display:block;

}

.portfolio-overlay{

position:absolute;

left:25px;

right:25px;

bottom:25px;

padding:25px;

background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(15px);

border-radius:18px;

transition:.4s;

}

.portfolio-overlay span{

color:#bcbcbc;

font-weight:600;

font-size:14px;

}

.portfolio-overlay h4{

margin:12px 0;

font-weight:700;

}

.portfolio-overlay a{

text-decoration:none;

font-weight:600;

}

.portfolio-card:hover img{

transform:scale(1.08);

}

.portfolio-card:hover .portfolio-overlay{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.portfolio-overlay i{

transition:.3s;

}

.portfolio-card:hover i{

margin-left:8px;

}

@media(max-width:768px){

.portfolio-card img{

height:300px;

}

}
/*  "Our Process" */
.process-section{

    padding:120px 0;
    background:#f8fbff;
    overflow:hidden;

}

.process-wrapper{

    position:relative;
    margin-top:80px;

}

/* WAVE */

.wave-line{

    position:absolute;
    width:100%;
    height:180px;
    top:95px;
    left:0;
    z-index:0;

}

.wave-line path{

    fill:none;
    stroke:#3b82f6;
    stroke-width:3;
    stroke-linecap:round;
    stroke-dasharray:12 10;

    animation:waveMove 7s linear infinite;

}


@keyframes waveMove{

    from{
        stroke-dashoffset:0;
    }

    to{
        stroke-dashoffset:-140;
    }

}

/* CARD */

.process-card{

    position:relative;

    width:260px;
    height:260px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

    z-index:5;

    transition:.45s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);

    border:2px solid rgba(59,130,246,.12);

}

.process-card::before{

    content:"";

    position:absolute;

    inset:-3px;

    border-radius:50%;

    padding:3px;

    background:linear-gradient(
    135deg,
    #2563EB,
    #8B5CF6
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    opacity:0;

    transition:.4s;

}

.process-card:hover::before{

    opacity:1;

}

.process-card:hover{

    transform:
    translateY(-18px)
    scale(1.05);

    box-shadow:
    0 35px 70px rgba(37,99,235,.18);

}

.step{


    margin-bottom:5px;

}

.process-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    color:#6b7280;

    font-size:15px;

    line-height:1.7;

}

/* MOBILE */

@media(max-width:991px){

.wave-line{

display:none;

}

.process-card{

width:220px;
height:220px;

margin-bottom:35px;

}

}

@media(max-width:576px){

.process-card{

width:190px;
height:190px;

padding:25px;

}

.step{

font-size:40px;

}

.process-card h4{

font-size:20px;

}

.process-card p{

font-size:13px;

}

}
/* ===========================
   Process Icon
=========================== */
.process-icon{

    width:65px;
    height:65px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 18px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    font-size:28px;

    box-shadow:0 12px 25px rgba(37,99,235,.25);

    position:relative;

    overflow:hidden;

    transition:all .45s ease;

    flex-shrink:0;

}

/* Actual Icon */

.process-icon i{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:100%;

    font-size:28px;

    line-height:1;

    color:#fff;

    margin:0;

    padding:0;

}

/* Shine Effect */

.process-icon::before{

    content:"";

    position:absolute;

    top:-150%;
    left:-150%;

    width:120%;
    height:250%;

    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:rotate(25deg);

    transition:.7s ease;

    z-index:1;

}
.process-card:hover .process-icon::before{

    top:120%;
    left:120%;

}

/* Hover Effect */

.process-card:hover .process-icon{

    transform:translateY(-8px) rotate(10deg) scale(1.08);

    box-shadow:0 18px 40px rgba(37,99,235,.45);
    background: linear-gradient(135deg,#74AAFB,#5122A0);
}
/* ==========================
   Process Card
========================== */

.process-card{

    position:relative;
	cursor: pointer;
    width:260px;
    height:260px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:30px;

    overflow:hidden;

    border:2px solid #E8EEFF;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:all .45s ease;

    z-index:2;

}

/* Animated Background */

.process-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    transform:scale(0);

    border-radius:50%;

    transition:transform .5s ease;

    z-index:0;

}

/* Gradient Border */

.process-card::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:50%;

    padding:2px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:1;

    transition:.45s;
	border: 4px solid #594aec;
}

/* Hover */

.process-card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 70px rgba(37,99,235,.20);

}

.process-card:hover::before{

    opacity:1;

}

.process-card:hover::after{

    transform:scale(1);

}

/* Keep all content above the background */

.process-card > *{

    position:relative;

    z-index:5;

}

/* Text Colors */

.process-card h4{

    font-size:20px;

    font-weight:700;

    margin:7px 0;

    color:#111827;

    transition:.35s;

}

.process-card p{

    color:#6B7280;

    line-height:1.3;

    font-size:12px;

    transition:.35s;

}

.step{

    display:block;

    font-size:25px;

    font-weight:800;

    color:#2563EB;

    line-height:1;

    transition:.35s;

}

/* Hover Text */

.process-card:hover h4{

    color:#fff;

}

.process-card:hover p{

    color:rgba(255,255,255,.92);

}

.process-card:hover .step{

    color:#fff;

}
/*  Testimonials Section */
.testimonial-section{

    padding:120px 0;

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid #edf2ff;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:linear-gradient(#2563EB,#7C3AED);

    transition:.4s;

}

.testimonial-card:hover::before{

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.stars{

    font-size:22px;

    color:#fbbf24;

    margin-bottom:20px;

}

.review{

    color:#6B7280;

    line-height:1.9;

    margin-bottom:30px;

    font-size:16px;

}

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h5{

    margin:0;

    font-weight:700;

}

.client-info span{

    color:#6B7280;

    font-size:14px;

}
/* testimonial-section */
.testimonial-section{

    padding:120px 0;

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid #edf2ff;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:linear-gradient(#2563EB,#7C3AED);

    transition:.4s;

}

.testimonial-card:hover::before{

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.stars{

    font-size:22px;

    color:#fbbf24;

    margin-bottom:20px;

}

.review{

    color:#6B7280;

    line-height:1.9;

    margin-bottom:30px;

    font-size:16px;

}

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h5{

    margin:0;

    font-weight:700;

}

.client-info span{

    color:#6B7280;

    font-size:14px;

}
/* Premium CTA Section */
.cta-section{

    padding:120px 0;

    background:#F8FBFF;

}

.cta-box{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    border-radius:30px;

    padding:60px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(37,99,235,.25);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

}

.cta-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.cta-box h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.9);

    font-size:17px;

    line-height:1.8;

}

.cta-btn{

    border-radius:50px;

    padding:15px 32px;

    font-weight:600;

    margin-right:12px;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-4px);

}

.cta-btn-outline{

    border-radius:50px;

    padding:15px 32px;

    font-weight:600;

    margin-top:15px;

}

.cta-stats{

    display:flex;

    justify-content:space-between;

    gap:30px;

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.2);

    padding-top:35px;

}

.cta-stats h3{

    font-size:36px;

    font-weight:700;

}

.cta-stats span{

    color:rgba(255,255,255,.8);

}

@media(max-width:991px){

    .cta-box{

        padding:40px 30px;

        text-align:center;

    }

    .cta-box h2{

        font-size:36px;

    }

    .cta-stats{

        flex-direction:column;

        text-align:center;

    }

    .cta-btn,
    .cta-btn-outline{

        display:block;

        width:100%;

        margin:15px 0 0;

    }

}
/* faq */
.faq-section{

    padding:120px 0;

    background:#F8FBFF;

}

.faq-title{

    font-size:48px;

    font-weight:700;

    margin:20px 0;

}

.faq-text{

    color:#6B7280;

    line-height:1.8;

    margin-bottom:40px;

}

.faq-contact{

    display:flex;

    gap:20px;

    align-items:center;

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.faq-contact i{

    width:65px;

    height:65px;

    background:#2563EB;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.custom-accordion .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.custom-accordion .accordion-button{

    padding:22px;

    font-weight:600;

    background:#fff;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:#2563EB;

    color:#fff;

}

.custom-accordion .accordion-body{

    padding:22px;

    color:#6B7280;

    line-height:1.8;

}
/* footer */
.footer-section{

    background:#0F172A;

    color:#CBD5E1;

    padding-top:30px;

}

.footer-cta{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    padding:55px;

    border-radius:30px;

    margin:-80px auto 80px;

    width:90%;

    color:#fff;

    box-shadow:0 30px 70px rgba(37,99,235,.25);

}

.footer-btn{

    display:inline-block;

    background:#fff;

    color:#2563EB;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

}

.footer-logo{

    height:55px;

    margin-bottom:25px;

}

.footer-about{

    line-height:1.9;

    margin-bottom:30px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1E293B;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.footer-section h5{

    color:#fff;

    margin-bottom:25px;

}

.footer-section ul{

    list-style:none;

    padding:0;

}

.footer-section ul li{

    margin-bottom:15px;

}

.footer-section a{

    color:#929395;

    text-decoration:none;

    transition:.3s;

}

.footer-section a:hover{

    color:#fff;
	background: #188cff;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

    flex-wrap:wrap;

}

.footer-bottom div{

    display:flex;

    gap:20px;

}

hr{

    border-color:#334155;

}
/* footer end */

/*=========================================
        PREMIUM TOP HEADER
=========================================*/

.top-header{

    
	background: linear-gradient(90deg,#1A8BFE,#3C53E8);
	
    color:#fff;

    position:relative;

    z-index:99999;

    font-size:14px;

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.top-header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:48px;

}

/*==============================
        LEFT SIDE
===============================*/

.top-left{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left a{

    color:#E5E7EB;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:8px;

    transition:.35s;

    font-weight:500;

}

.top-left a:hover{

    color:#fff;

}

.top-left i{

    color:#f6f6f6;

    font-size:15px;

}
.top-header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:48px;

    transition:.35s ease;

    z-index:9999;

}

.header-area{

    position:fixed;
    top:48px;

    width:100%;

    transition:.35s ease;

    z-index:9998;

}

/* Hide Top Header */

.top-header.hide{

    transform:translateY(-100%);

}

/* Move Navbar Up */

.header-area.move-up{

    top:0;

}

/*==============================
        RIGHT SIDE
===============================*/

.top-right{

    display:flex;

    align-items:center;

    gap:10px;

}

.top-right a{

    width:36px;

    height:36px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    transition:.35s ease;

    backdrop-filter:blur(10px);

}

.top-right a:hover{

    background:#2563EB;

    border-color:#2563EB;

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(37,99,235,.35);

}

.top-right i{

    font-size:15px;

}

/*=========================================
        DESKTOP FIXED HEADER
=========================================*/

.header-area{

    top:48px;

}

/*=========================================
        TABLET
=========================================*/

@media(max-width:991px){

    .top-header{

        padding:10px 0;

    }


    .top-header-wrapper{

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:12px;

        min-height:auto;

    }

    .top-left{

      

        align-items:center;

        gap:50px;

    }

    .top-left a{

        font-size:13px;

    }

    .top-right{

        justify-content:center;

        flex-wrap:wrap;

    }

    .top-right a{

        width:34px;

        height:34px;

    }

    .header-area{

        top:95px;

    }

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:576px){
	.navbar-brand img {
  width: 190px;
}

    .top-header{

        padding:12px 0;

    }

    .top-left{

        width:100%;

    }

    .top-left a{

        width:100%;

        justify-content:center;

        font-size:12px;

    }

    .top-right{

        width:100%;

        justify-content:center;

        gap:8px;

    }

    .top-right a{

        width:32px;

        height:32px;

    }

    .top-right i{

        font-size:14px;

    }

    .header-area{

        top:110px;

    }

}
/*=========================================
        MOBILE TOP HEADER
=========================================*/

@media (max-width:991px){

    .top-header{

        padding:8px 0;

    }

    .top-header-wrapper{

        display:flex;

        justify-content:space-between;

        align-items:start;

        gap:10px;

    }

    .top-left{

        display:flex;

        align-items:center;

    }

    /* Hide Phone */

    .top-phone{

        display:none;

    }

    /* Show Email */

    .top-email{

        font-size:13px;

        white-space:nowrap;

        overflow:hidden;

        text-overflow:ellipsis;

    }

    .top-email i{

        margin-right:6px;

    }

    .top-right{

        display:flex;

        gap:6px;

    }

    .top-right a{

        width:30px;

        height:30px;

        font-size:13px;

    }

    .header-area{

        top:46px;

    }

}
@media (max-width:991px){

    .top-right{

        display:none;

    }


}
/*=====================================
    HPWebStar Premium Scroll To Top
=====================================*/

.hpws-scroll-top{

    position:fixed;
    right:25px;
    bottom:25px;

    width:58px;
    height:58px;

    display:none;
    justify-content:center;
    align-items:center;

    border:none;
    border-radius:50%;

    cursor:pointer;

    color:#fff;
    font-size:22px;

    background:linear-gradient(135deg,#2563EB,#4F46E5);

    box-shadow:
        0 12px 30px rgba(37,99,235,.35),
        0 0 0 5px rgba(37,99,235,.08);

    backdrop-filter:blur(12px);

    transition:all .35s ease;

    z-index:999999;

    overflow:hidden;

}

/* Glow Ring */

.hpws-scroll-top::before{

    content:"";

    position:absolute;

    inset:-4px;

    border-radius:50%;

    background:linear-gradient(135deg,#60A5FA,#7C3AED);

    filter:blur(16px);

    opacity:.35;

    z-index:-1;

}

/* Shine Animation */

.hpws-scroll-top::after{

    content:"";

    position:absolute;

    top:-120%;
    left:-120%;

    width:220%;
    height:220%;

    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:rotate(25deg);

    transition:.7s;

}

.hpws-scroll-top:hover::after{

    top:100%;
    left:100%;

}

/* Hover */

.hpws-scroll-top:hover{

    transform:translateY(-8px) scale(1.08);

    box-shadow:
        0 22px 45px rgba(37,99,235,.45),
        0 0 35px rgba(79,70,229,.30);

}

/* Click */

.hpws-scroll-top:active{

    transform:scale(.95);

}

/* Icon */

.hpws-scroll-top i{

    position:relative;

    z-index:2;

    transition:.3s;

}

.hpws-scroll-top:hover i{

    transform:translateY(-3px);

}

/* Floating Animation */

@keyframes hpwsFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-4px);

    }

}

.hpws-scroll-top{

    animation:hpwsFloat 3s ease-in-out infinite;

}

/* Mobile */

@media(max-width:768px){

    .hpws-scroll-top{

        width:50px;
        height:50px;

        right:18px;
        bottom:18px;

        font-size:20px;

    }

}
/* policy page css*/
.policy-section{

    background:#fff;

    border-radius:20px;

    padding:50px;

   margin: 160px auto;

    box-shadow:0 15px 50px rgba(0,0,0,.06);

}

.policy-section h1{

    font-size:42px;

    font-weight:700;

    margin-bottom:25px;

    color:#111827;

}

.policy-section h2{

    margin-top:35px;

    margin-bottom:15px;

    font-size:24px;

    font-weight:600;

    color:#2563EB;

}

.policy-section p{

    color:#6B7280;

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;

}

.policy-section ul{

    padding-left:22px;

}

.policy-section li{

    margin-bottom:12px;

    color:#6B7280;

    line-height:1.8;

}

@media(max-width:768px){
	
	.policy-section{

   margin: 140px auto;


}

    .policy-section{

        padding:30px 20px;

    }

    .policy-section h1{

        font-size:32px;

    }

    .policy-section h2{

        font-size:22px;

    }

}
