@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    cursor: none;
}
/* Force page scroll and auto height to fix script conflicts */
body, html {
    overflow-y: auto !important;
    height: auto !important;
}

:root{
    --bg-color:#e3edf7;
    --gradient-white-bg:linear-gradient(0deg,#fff 0%,#edf4fa 51%,#e5eef7 100%);
    --gradient-color-bg:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    --main-color:#e6006d;
    --font-color:#90979f;
    --hover-box-shadow:rgba(0,0,0,0.19)0px 10px 20px,
                       rgba(0,0,0,0.23)0px 6px 6px;     
    --gradient-white-bg2:linear-gradient(98deg,#e5eef7 0%,#fff 100%);  
       --main-color: #e6006d; /* Accent Color */
    
    /* Light Theme (Default) */
    --bg-color: #e3edf7;
    --secondary-bg: linear-gradient(0deg, #fff 0%, #edf4fa 51%, #e5eef7 100%);
    --font-color: #555;
    --primary-font-color: #333;
    --box-shadow-color: rgba(0,0,0,0.1);
    --gradient-white-bg: var(--secondary-bg); 
   --main-color: #e6006d; /* Accent Color - এটি পরিবর্তন হবে */
    
    /* Light Theme (Default) */
    --bg-color: #e3edf7; 
    --primary-font-color: #333; 

   
    --secondary-bg: linear-gradient(0deg, #fff 0%, #edf4fa 51%, #e5eef7 100%);
    --font-color: #555;
    --box-shadow-color: rgba(0,0,0,0.1);
}

body.theme-dim {
    --bg-color: #2a2a2e; 
    --primary-font-color: #f1f1f1; 
}

body.theme-dark {
    --bg-color: #1a1a1a; 
    --primary-font-color: #ffffff; 
}
   


/* cursor pointer */
.cursor-outline{
    width: 16px;
    height: 16px;
    background-color: black;
   
}
.cursor-dot{
    width: 50px;
    height: 50px;
    border: 32px solid hsla(0, 83%, 43%, 0.5);
    /* border: 32px solid hsla(0, 26%, 69%, 0.336); */
}
.cursor-dot,
.cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
}

/* Animation in Hero */




.bgAnimation{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /* height: 100vh; */
    display: grid;
    grid-template-columns: repeat(20,1fr);
    grid-template-rows: repeat(20,1fr);
    background: #1d1d1d;
    filter: saturate(2);
    overflow: hidden;
}

.colorBox{
    z-index: 2;
    filter: brightness(1.1);
    transition: 2s ease;
    position: relative;
    margin: 2px;
    background: #1d1d1d;
}

.colorBox:hover{
    background: #00bfff;
    transition-duration: 0s;
}

.backgroundAmim{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #00bfff;
    filter: blur(60px);
    animation: animBack 6s linear infinite;
}
@keyframes animBack {
    0%{
        top: -60px;
    }
    100%{
        top: 120%;
    }
}


a{
    text-decoration: none;
    color: #000;
}

body{
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    overflow-x: hidden;
}

header{
    padding: 15px 8%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-white-bg);
    z-index: 100;
    transition: .3s;
}

header .logo{
    font-size: 1.7rem;
    font-weight: 700;
}
.S{
    font-size: 30px;
}
span{
    background: var(--gradient-color-bg);
    -webkit-background-clip: text;
    color: transparent;
}

ul.navlist{
    display: flex;
}

.navlist li{
    margin: 0 1rem;
}

.navlist li a{
    display: inline-flex;
    font-weight: 600;
}


.navlist li a:hover,.navlist li a.active{
    background-color: #00aaff;
    background: var(--gradient-color-bg);
    -webkit-background-clip: text;
    color: transparent;
   
   
}


.right-header{
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: .8rem;
}

.btn{
    background: var(--gradient-color-bg);
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 500;
    transition: all .3s ease;
}

.btn:hover,.btn-box .d-CV:hover{
    box-shadow: var(--hover-box-shadow);
}

.menu-icon{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    /* background: blue; */
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before{
    content: "";
    display: none;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: #000;
    margin: 6px 0;
    transition: .4s;
}

.menu-icon.active::before{
    transform: rotate(-45deg) translate(-6px , 6px);
}

.menu-icon.active::after{
    transform: rotate(45deg)translate(-8px , -8px);
}

.menu-icon.active .bar{
    opacity: 0;
}


/* ==================== home section css code ============================ */
section{
    padding: 90px 8%;
}

.home{
    position: relative;
   
    height: 100%;
    width: 100%;
    display: flex;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    grid-gap: 4em;
    /* background: var(--gradient-white-bg2); */
}
.inf{
    display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  pointer-events: none;
}
.hero-info{
    margin-top: 3rem;
    z-index: 1;
}

.hero-info h3{
    color: #cbd5e1;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.hero-info h1{
    font-size: 3.5rem;
    color: white;
}

.text-animate{
    width: 22.8rem;
    position: relative;
}

.text-animate h2{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 0.1vw #770753;
    background: var(--gradient-color-bg);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: 0 0;
    transition: .6s;
    letter-spacing: 2px;
    animation: moveText 3s linear infinite;
    animation-delay: 2s;
}

.text-animate h2::before{
    content: "";
    position: absolute;
    top: 7px;
    left: -3px;
    width: 0;
    height: 70%;
    border-right: 2px solid var(--main-color);
    animation: moveCursorText 3s linear infinite;
    animation-delay: 2s;
}


.hero-info p{
    font-size: .9rem;
    color: #999;
    line-height: 1.5rem;
    width: 90%;
}

.btn-box{
    display: flex;
    justify-content: space-between;
    width: 320px;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.btn-box .btn{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: visible;
}

.btn-box .d-CV{
    background: var(--gradient-white-bg2);
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60,64,67,0.3)0px 1px 2px 0,
                  rgba(60,64,67,0.15)0px 2px 6px 2px;
    transition: all .3s ease;              
}

.social-media{
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 45px;
}

.social-media a{
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    color: var(--main-color);
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    border-radius: 50%;
    z-index: 1;
}


.social-media a:hover{
    background: var(--gradient-color-bg);
    color: #fff;
}

.bg-icon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: visible;
}

.bg-icon span{
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animate 1s linear infinite;
}

.img-hero{
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
    animation-delay: 3s;
    pointer-events: none;
}

.img-hero img{
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 10;
    border-radius: 50%;
    margin-top: 71px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 4px;
    pointer-events: none;
}

.rotate-text{
    position: absolute;
    top: 4%;
    left: -53px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
    pointer-events: none;
}

.rotate-text span{
    position: relative;
    width: 442px;
    height: 442px;
    background: red;
    border: 6px solid #eaeef0;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.rotate-text span::before{
    content: "";
    position: absolute;
    inset: 20px;
    background: #00aaff;
    border-radius: 50%;
    z-index: 1;
}

.rotate-text span i{
    position: absolute;
    inset: 0;
    background: var(--gradient-color-bg);
    filter: blur(5px);
    animation: animate 2s linear infinite;
}


.rotate-text .text{
    position: absolute;
    width: 490px;
    height: 490px;
    background: #f2f6fb;
    border-radius: 50%;
    box-shadow: 0 1px 6px 5.94px rgba(0,0,0,0.2);
    animation: rotateText 30s linear infinite;
}

.text b{
    position: absolute;
    transform-origin: 0 247px;
    display: block;
    top: 0;
    left: 50%;
    font-size: 1.2rem;
}

/* ==================== About section css code ============================ */
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.about .about-img{
    position: relative;
}

.about .about-img .aboutHero{
    width: 40vw;
    height: auto;
}

.about-img .ring{
    position: absolute;
    top: 22%;
    right: 1%;
}

.about-img .circle{
    position: absolute;
    top: 0%;
    left: 0%;
}


.about-content{
    padding: 3rem 0;
}

.about-content h2{
    color: var(--main-color);
}

.about-content h3{
    font-size: 2.1rem;
    line-height: 3rem;
    margin: .5rem 0;
    color: #1e4274;
}

.about-content p{
    color: var(--font-color);
}

.text-box p{
    font-size: 1.1rem;
    font-weight: 500;
}

.about-btn{
    margin: .8rem 0;
}

.about-btn button,.cvContent a{
    background: var(--gradient-white-bg2);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60,64,67,0.3)0px 1px 2px 0,
                  rgba(60,64,67,0.15)0px 2px 6px 2px;
    margin-right: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}


.about-btn button.active{
    background: var(--gradient-color-bg);
    color: #ffff;
}

.text-box{
    margin: .8rem 0;
}

.content-btn > .content:not(:first-child){
    display: none;
}

.about-btn button:hover{
    box-shadow: var(--hover-box-shadow);
}

.cvContent{
    margin-top: 1.5rem;
}

/* ==================== Services section css code ============================ */
.services{
    position: relative;
    padding-top: 20px;
}

.main-text{
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.main-text .heading{
    color: var(--main-color);
}

.main-text span{
    color: var(--font-color);
    font-weight: 200;
    text-transform: uppercase;
}

.allServices{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px , auto));
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.servicesItem{
    box-shadow: rgba(0,0,0,0.1)0px 1px 3px 0,
                  rgba(0,0,0,0.06)0px 1px 2px 0px;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: var(--gradient-white-bg2);
    text-align: center;
}

.icon-services{
    display: inline-flex;
    position: relative;
}

.icon-services i{
    box-shadow: rgba(0,0,0,0.1)0px 1px 3px 0,
                  rgba(0,0,0,0.06)0px 1px 2px 0px;
    padding: .5rem;
    border-radius: 50%;
    background: var(--gradient-color-bg);
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    z-index: 1;
}

.servicesItem:hover i{
    outline: 1px solid var(--main-color);
    transform: scale(1.2);
}

.icon-services span{
    position: absolute;
    width: 80px;
    height: 80px;
    left: -5px;
    top: -5px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    animation: animate 1s linear infinite;
}

.servicesItem h3{
    margin: 1rem 0 0.5rem;
}

.servicesItem p{
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: var(--font-color);
}

 .readMore{
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0,0,0,0.1)0px 1px 3px 0,
                  rgba(0,0,0,0.06)0px 1px 2px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-right: .8rem;
    cursor: pointer;              
} 

/* start review Start */

         /* --- Main Section Layout --- */

      .testimonial-section {
            width: 100%;
            max-width: 66rem; /* Equivalent to max-w-3xl */
            margin: auto;
            padding: 3rem 1rem;
        }

        @media (min-width: 768px) {
            .testimonial-section {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }
        
        /* --- Slider Wrapper for Positioning Context --- */
        .slider-wrapper {
            position: relative;
        }
        
        @media (min-width: 1024px) {
            .slider-wrapper {
                padding: 0 5rem; /* Add space on the sides for buttons */
            }
        }

        /* --- Header Styles --- */
        .section-header-testimonial {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header-testimonial h2 {
            font-size: 1.5rem; /* text-3xl */
            line-height: 2.5rem;
            font-weight: 600; /* font-bold */
            color: var(--main-color); /* gray-800 */
            letter-spacing: -0.025em; /* tracking-tight */
            margin-bottom: 0.75rem;
        }

        @media (min-width: 768px) {
            .section-header-testimonial h2 {
                font-size: 1.7rem; /* md:text-4xl */
            }
        }

        .section-header-testimonial span {
            color: var(--font-color);
            font-weight: 200;
            text-transform: uppercase;
            background: var(--gradient-color-bg);
             -webkit-background-clip: text;
        }

        .header-divider {
            margin-top: 1rem;
            width: 6rem; /* w-24 */
            height: 4px; /* h-1 */
            background-color: var(--gradient-color-bg); /* bg-indigo-500 */
            margin-left: auto;
            margin-right: auto;
            border-radius: 9999px;
        }

        /* --- Testimonial Card Stacking --- */
        .testimonial-container {
            position: relative;
            height: 350px;
            perspective: 1000px;
        }

        .review-card {
            background: #ffffff;
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
            backface-visibility: hidden;
            overflow: hidden;
        }

        /* Card States */
        .review-card.active {
            opacity: 1;
            transform: rotateY(0) scale(1);
            z-index: 10;
        }

        .review-card.prev {
            opacity: 0;
            transform: rotateY(45deg) translateX(-100%) scale(0.8);
            z-index: 5;
        }

        .review-card.next {
            opacity: 0;
            transform: rotateY(-45deg) translateX(100%) scale(0.8);
            z-index: 5;
        }
        
        /* Default hidden state */
        .review-card {
            opacity: 0;
            transform: scale(0.7);
            z-index: 1;
        }

        /* Card Content Styles */
        .review-card .quote-icon {
            font-size: 3rem;
            color: #e0e7ff;
            margin-bottom: 1.5rem;
        }
        .review-card .quote-text {
            color: #475569;
            font-size: 1.25rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.75;
            max-width: 42rem;
        }
         .review-card .avatar-container {
            display: flex;
            align-items: center;
        }
        .review-card .avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            border: 4px solid #ffffff;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }
         .review-card .client-info {
            margin-left: 1rem;
            text-align: left;
        }
        .review-card .client-name {
            font-weight: 700;
            font-size: 1.125rem;
            color: #1e293b;
        }
        .review-card .client-title {
            font-size: 0.875rem;
            color: #64748b;
        }

        /* --- Navigation --- */
        .navigation-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            gap: 3rem;
        }

        .nav-button {
            width: 4rem;
            height: 4rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #ffffff;
            color: #4b5563;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .nav-button:hover {
             background: var(--gradient-color-bg);
             color: #ffffff;
             transform: translateY(-2px) scale(1.05);
             
        }
        
        .nav-button .fas {
            font-size: 1.25rem;
        }

        /* Laptop Screen Styles for Buttons */
        @media (min-width: 1024px) {
            .navigation-controls {
                margin-top: 0; /* Reset margin */
            }
            .nav-button {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 20;
            }
            #prevButton {
                left: 0;
            }
            #nextButton {
                right: 0;
            }
        }


        /* Pagination Dots */
        .pagination-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem; /* 12px */
            margin-top: 2.5rem; /* 40px */
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e1; /* slate-300 */
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #4f46e5; /* indigo-600 */
            transform: scale(1.25);
        }

/* end review section */

.proposal{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0,0,0,0.1)0px 1px 3px 0,
    rgba(0,0,0,0.06)0px 1px 2px 0px;
    margin-top: 8rem;
    border-radius: 10px;
    padding: 0rem 2rem;
    z-index: 1;
}

.proposal img{
    width: 40vw;
    height: auto;
    margin: -4rem 0 0;
    z-index: 2;
}

.services .text-box span{
    font-size: 1.2rem;
    font-weight: 600;
}

.services .text-box h3{
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 800;
}

.services .text-box .btn{
    padding: 10px 20px;
}


.services .showcase .ring{
    width: 100px;
    height: auto;
    position: absolute;
    top: 2%;
    left: -3%;
}

.services .showcase .circle{
    position: absolute;
    width: 70px;
    height: auto;
    top: 2%;
    right: 6%;
    filter: blur(3px);
}

.services .showcase .circle2{
    position: absolute;
    width: 40px;
    height: auto;
    filter: blur(3px);
}

.services .showcase .circle3{
    position: absolute;
    width: 70px;
    height: auto;
    filter: blur(3px);
    bottom: 36%;
    left: 22%;
}

.services .showcase .half-ring{
    position: absolute;
    width: 120px;
    height: auto;
    bottom: 4%;
    right: 6%;
}


/* ==================== Services section css code ============================ */
.fillter-buttons{
    text-align: center;
    padding: .5rem;
    margin-bottom: 2rem;
}

.fillter-buttons button{
    background: var(--gradient-white-bg2);
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    color: #000;
    box-shadow: rgba(60,64,67,0.3)0px 1px 2px 0,
    rgba(60,64,67,0.15)0px 2px 6px 2px;
    margin-right: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}

.fillter-buttons button:hover,button.mixitup-control-active{
    background: var(--gradient-color-bg);
    color: #fff;
}

.portfolio-gallery{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(370px , 1fr));
    gap: 1rem;
}

.portfolio-img img{
    display: block;
    width: 100%;
    height: 160px;
    transition: .3s;
}

.portfolio-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
    box-shadow: rgba(0,0,0,0.18)0px 2px 4px;
    background: var(--gradient-white-bg2);
    border-radius: 10px;
    transition: all .3s ease;
}

.portfolio-content{
    width: 100%;
    padding-left: .5rem;
    padding-bottom: .5rem;
}

.portfolio-img{
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio-box:hover img{
    transform: scale(1.1);
}

.portfolio-content a.readMore{
    padding: 8px 12px;
    font-size: .8rem;
}

.portfolio-content p{
    font-size: .9rem;
    color: var(--font-color);
    margin: .5rem 0 1rem 0;
}


/* ==================== Blog section css code ============================ */

.blog-box{
    padding: .5rem !important;
}

.blog{
    position: relative;
}

.cards{
    padding: 1rem .1rem;
}

.card{
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0,0,0,0.18)0px 2px 4px;
    padding: 1rem;
    border-radius: 10px;
}

.card-top{
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card img{
    width: 350px;
    height: 200px;
    object-fit: cover;
    transition: .3s;
    display: block;
}

.card:hover img{
    transform: scale(1.1);
}

.card-info{
    padding-bottom: .5rem;
}

.card-info h2{
    font-size: 1.2rem;
    margin-top: 1rem;
}

.data{
    display: block;
    margin: .2rem 0;
}

.card .excerpt{
    color: var(--font-color);
    margin-bottom: 1.5rem;
}

.swiper-pagination{
    position: relative !important;
    margin-top: 3rem;
}

.swiper-pagination-bullet{
    height: 10px !important;
    width: 30px !important;
    border-radius: 25px !important;
    background: var(--gradient-color-bg) !important;
}

.blog .showcase img{
    position: absolute;
    width: 90px;
    height: 90px;
}

.blog .showcase .circle{
    filter: blur(3px);
}

.blog .showcase .ring{
    top: 0;
    left: -1%;
}

.blog .showcase .half-ring{
    top: 10%;
    right: 10%;
}

.blog .showcase .second-circle{
    top: 30%;
    left: 2%;
    filter: blur(1px);
}

/* ==================== Review section css code ============================ */

.review-box{
    padding: .5rem !important;
}

.review{
    position: relative;
}

.swiper-pagination-review{
    position: relative !important;
    margin-top: 3rem;
}

.swiper-pagination-review .swiper-pagination-bullet{
    height: 10px !important;
    width: 30px !important;
    border-radius: 25px !important;
    background: var(--gradient-color-bg) !important;
}



/* ==================== Contact section css code ============================ */

.contactSkills{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact-info,.skills{
    width: 100%;
    background: var(--gradient-white-bg2);
    box-shadow: rgba(0,0,0,0.18)0px 2px 4px;
    padding: 1rem;
    border-radius: 10px;
}


.contact-info input,
.contact-info form textarea{
    width: 100%;
}

.contact-info form input,
.contact-info form textarea{
    /* width: 100%; */
    padding: .8rem;
    border: 2px solid #e8e1e1;
    margin: .5rem 0;
    background: #e8f1f9;
    border-radius: 5px;
    outline: none;
    transition: .3s;
}

.contact-info form .input-box{
    display: flex;
    justify-content: space-between;
}

.input-box input{
    width: 49%;
}

form input:focus,form textarea:focus{
    filter: brightness(100%);
    background: #d2e9ff;
    border: 2px solid #f8caca;
}

form textarea{
    resize: none;
}

form .btn{
    padding: 15px 20px;
    cursor: pointer;
    border: none;
}

/* ==================== Skills section css code ============================ */

.skillBox{
    padding: 0 1rem 1rem;
}

.skillBox .main-text{
    margin-bottom: 1rem;
}

.skill-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px , auto));
    justify-content: center;
    grid-gap: 2.5rem;
}

.skill{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.outer-circle{
    width: 170px;
    height: 170px;
    position: relative;
    margin-bottom: 1rem;
    padding: 20px;
    border-radius: 50%;
    box-shadow: rgba(50,50,93,0.25)0px 6px 12px -2px,
    rgba(0,0,0,0.3)0px 3px 7px -3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    box-shadow: rgba(204,219,232)3px 3px 6px 0px inset,
    rgba(255,255,255,0.5)-3px -3px 6px 1px inset;
}

.outer-circle svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outer-circle svg circle{
    fill: none;
    stroke-width: 15px;
    stroke: url(#GradientColor);
    stroke-linecap: round;
    stroke-dasharray: 465;
    stroke-dashoffset: 464; 
}







.inner-circle h2.counter{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    font-size: .9rem;
    font-weight: 400;
}

h2.counter span{
    font-size: 1.7rem;
}

.sk-title{
    font-size: 1rem;
    font-weight: 500;
}

/*======================= footer ============================ */

.main {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    min-height: 50vh;
    background: #fff;
}

footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .social_icon,
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li {
    list-style: none;}

footer .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a {
    transform: translateY(-10px);
}

footer .menu li a {
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {

    opacity: 1;
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer p span {
    color: var(--main-color);
    font-weight: 600;
}
footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff url(wave1.png);
    background-size: 1000px 100px;

}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animatewave 3s linear infinite;
}


@keyframes animatewave {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }

}


.zoom li a {
    transition: 1s;
}

.zoom li a:hover {
    transform: scale(1.1);
}

/* footer end  */

#progress{
    position: fixed;
    /* background: #194eb9; */
    z-index: 500;
    bottom: 60px;
    right: 10px;
    width: 50px;
    height: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    color: #1d002c;
    cursor: pointer;
    box-shadow: rgba(50,50,93,0.25)0px 50px 100px -20px,
    rgba(0,0,0,0.3)0px 30px 60px -30px,
    rgba(10,37,64,0.35)0px -2px 6px 0px inset;
}


#progress-value{
    display: grid;
    height: calc(100% - 12px);
    width: calc(100% - 12px);
    background: var(--gradient-color-bg);
    border-radius: 50%;
    color: #fff;
    place-items: center;
    font-size: 25px;
}


 /* ================= Advanced Chatbox Styles ================= */
        :root {
            --primary-color: #7a2ff5;
            --secondary-color: #f1e9fe;
            --font-color: #333;
            --bg-color: #fff;
            --light-gray: #f4f4f4;
            --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        .chatbox-popup {
            width: 350px;
            background: var(--bg-color);
            border-radius: 15px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 500px;
            transform: scale(0.5);
            transform-origin: bottom right;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }

        .chatbox-popup.active {
            transform: scale(1);
            opacity: 1;
            pointer-events: auto;
        }

        .chatbox-header {
            background: var(--primary-color);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chatbox-header .header-content { display: flex; align-items: center; }
        .chatbox-header .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-image: url('https://placehold.co/100x100/7a2ff5/white?text=A');
            background-size: cover;
            border: 2px solid white;
            margin-right: 10px;
        }
        .chatbox-header .agent-info h3 { margin: 0; font-size: 1rem; font-weight: 600; }
        .chatbox-header .agent-info p { margin: 0; font-size: 0.8rem; opacity: 0.8; }
        .close-btn { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }

        .chatbox-messages {
            flex-grow: 1;
            padding: 20px;
            overflow-y: auto;
            background-color: var(--light-gray);
            display: flex;
            flex-direction: column;
        }

        .chatbox-messages::-webkit-scrollbar { width: 5px; }
        .chatbox-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

        .message {
            max-width: 80%;
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 18px;
            line-height: 1.4;
            word-wrap: break-word;
            font-size: 0.9rem;
        }

        .message.bot { background: var(--bg-color); color: var(--font-color); align-self: flex-start; border-bottom-left-radius: 4px; }
        .message.user { background: var(--primary-color); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
        .message .timestamp { font-size: 0.7rem; color: #999; display: block; margin-top: 5px; text-align: right; }
        .message.user .timestamp { color: rgba(255,255,255,0.7); }

        /* Typing Indicator Style */
        .typing-indicator {
            padding: 15px;
            display: flex;
            align-items: center;
        }
        .typing-indicator span {
            height: 8px;
            width: 8px;
            background-color: #999;
            border-radius: 50%;
            display: inline-block;
            margin: 0 2px;
            animation: bounce 1.2s infinite;
        }
        .typing-indicator span:nth-of-type(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-of-type(3) { animation-delay: 0.4s; }
        @keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

        /* Quick Replies Style */
        .quick-replies {
            padding: 0 20px 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            background-color: #fff;
            border-top: 1px solid #eee;
        }
        .quick-reply {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .quick-reply:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .chatbox-input { display: flex; align-items: center; padding: 10px 20px; border-top: 1px solid #eee; background-color: #fff;}
        .chatbox-input input { flex-grow: 1; border: none; outline: none; padding: 10px; font-size: 0.9rem; background: transparent; }
        .chatbox-input button { background: none; border: none; color: var(--primary-color); font-size: 24px; cursor: pointer; transition: color 0.3s ease; }
        .chatbox-input button:hover { color: #6a1fd1; }

        @media(max-width: 400px) {
            #chat_container { bottom: 0; right: 0; width: 100%; }
            .chatbox-popup { width: 100%; height: 100vh; border-radius: 10px; }
        }

        @media (max-width: 600px) {
    #chat_container {
        /* Fix: Use top and left instead of bottom and right */
        top: 180px;
        left: 80px;
        width: 80%;
        height: 90%; /* Ensure container also takes full height */
    }

    .chatbox-popup {
        width: 100%;
        height: 80vh; /* vh is better for viewport height */
        max-height: 70%;
        border-radius: 0; /* No rounded corners on full screen */
        right: auto;    /* Reset any previous positioning */
        bottom: auto;   /* Reset any previous positioning */
        border-radius: 10px
    }
}
            /* End chatbox */

            

            /*plan section css code*/


        .portfolio-pricing-section {
            font-family: 'Inter', sans-serif;
            background-color: transparent; /* Main section background is transparent */
            padding: 4rem 1rem; /* Adjusted padding */
            
        }

        .container {
            max-width: 75rem; /* Adjusted max-width for a more compact PC view */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Header Styles */
        .section-header-plan {
            text-align: center;
            margin-bottom: 4rem; /* Increased margin */
        }
        .section-header-plan h2 {
            font-size: 16px; /* text-3xl */
            font-weight: 600; /* font-bold */
            color: var(--main-color); /* gray-800 */
            letter-spacing: -0.025em; /* tracking-tight */
            margin-bottom: 0.85rem;
        }
        .section-header-plan span {
            color: var(--font-color);
            font-weight: 200;
            text-transform: uppercase;
            background: var(--gradient-color-bg);
             -webkit-background-clip: text;
             font-family: 'Poppins', sans-serif;
        }

        /* Filter Buttons */
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }
        .filter-btn {
            padding: 0.6rem 1.75rem;
            border-radius: 9999px;
            background-color: #f3f4f6;
            color: #374151;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .filter-btn:hover {
            background-color: #e5e7eb;
        }
        .filter-btn.active {
            background: linear-gradient(to right, #8b5cf6, #ec4899);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
        }

        /* Pricing Toggle */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        .pricing-toggle-container span {
            font-weight: 600;
            font-size: 1rem;
            color: #4b5563;
        }
        .pricing-toggle-container .save-badge {
            font-size: 0.8rem;
            font-weight: 700;
            color: #22c55e;
        }
        .toggle-switch {
            position: relative;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            width: 3.5rem;
            height: 2rem;
            background-color: #d1d5db;
            border-radius: 9999px;
            transition: all 0.3s ease;
            position: relative;
        }
        .slider:before {
            content: '';
            position: absolute;
            height: 1.5rem;
            width: 1.5rem;
            left: 4px;
            top: 4px;
            background-color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        input:checked + .slider {
            background-color: #8b5cf6;
        }
        input:checked + .slider:before {
            transform: translateX(1.5rem);
        }

        /* Plans Grid */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 2rem; /* Adjusted gap */
        }

        /* Plan Card */
        .plan-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 1rem; /* More rounded corners */
            padding: 1.75rem; /* Adjusted padding for smaller cards */
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        }
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .plan-card.popular-card {
            border: 2px solid #8b5cf6;
            box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .plan-header {
            flex-grow: 1; /* Pushes the content below to the bottom */
        }
        
        .plan-card h3 {
            font-size: 1.375rem; /* Adjusted font size */
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #1f2937;
        }
        .plan-card p {
            color: #6b7280;
            margin-bottom: 1.5rem; /* Adjusted margin */
            font-size: 0.875rem; /* Adjusted font size */
            line-height: 1.6;
        }
        .plan-price {
            margin-bottom: 1.5rem; /* Adjusted margin */
        }
        .plan-price .amount {
            font-size: 2.75rem; /* Adjusted font size */
            font-weight: 800;
            color: #111827;
        }
        .plan-price .period {
            color: #6b7280;
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem; /* Adjusted margin */
        }
        .plan-features li {
            display: flex;
            align-items: center;
            color: #4b5563;
            margin-bottom: 0.5rem; /* Adjusted margin */
            font-size: 0.875rem; /* Adjusted font size */
        }
        .plan-features i {
            color: #8b5cf6;
            margin-right: 1rem;
        }
        .choose-plan-btn {
            display: block;
            width: 100%;
            padding: 0.75rem 1.25rem; /* Adjusted padding */
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem; /* Adjusted font size */
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
            margin-top: auto;
            background-color: #f5f3ff; /* New default background */
            color: #8b5cf6; /* New default text color */
        }
        .choose-plan-btn:hover {
            background-color: #8b5cf6; /* New hover background */
            color: #ffffff; /* New hover text color */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
        }
        .popular-card .choose-plan-btn {
             background: var(--gradient-color-bg);
             color: white;
             border-color: transparent;
             box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
        }
        .popular-card .choose-plan-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            background: var(--main-color); /* Keep gradient on hover */
            color: white;
        }
        .choose-plan-btn span {
            margin-left: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: #a7c5bb;

        }

        .popular-badge {
            position: absolute;
            top: -0.75rem;
            right: 1rem;
            background: linear-gradient(to right, #8b5cf6, #ec4899);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.3rem 0.8rem;
            border-radius: 9999px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
        }
        
        /* Modal Styles */
        .modal-container {
            position: fixed;
            inset: 0;
            background-color: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            z-index: 50;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .modal-content {
            background-color: #ffffff;
            border-radius: 1rem;
            padding: 2.5rem;
            max-width: 48rem;  /* Adjusted width for 2-column layout */
            width: 100%;
            position: relative;
            transform: translateY(-2.5rem);
            transition: transform 0.3s ease, opacity 0.3s ease;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            text-align: left;
        }
        .modal-container.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-container.active .modal-content {
            transform: translateY(0);
        }
        .modal-close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            color: #9ca3af;
            font-size: 1.5rem;
            line-height: 1;
            background: none;
            border: none;
            cursor: pointer;
        }
        .modal-close-btn:hover {
            color: #111827;
        }
        .modal-content h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #111827;
        }
        .modal-content .modal-description {
            color: #6b7280;
            margin-bottom: 2rem;
            font-size: 1rem;
        }
        
        /* 2-Column Layout for Modal Details */
        .modal-details-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr; /* Default to 1 column */
        }

        .modal-detail-section h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #8b5cf6;
            margin-top: 0; /* Adjusted margin */
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .modal-detail-section p,
        .modal-detail-section ul {
            color: #4b5563;
            font-size: 0.9rem; /* Adjusted font size */
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .modal-detail-section ul li {
             margin-bottom: 0.5rem;
        }
        
        /* New Button Group Styles */
        .modal-button-group {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        .modal-btn {
            flex: 1;
            text-align: center;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .modal-btn.primary {
            background: linear-gradient(to right, #8b5cf6, #ec4899);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
        }
        .modal-btn.primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .modal-btn.secondary {
            background-color: #f3f4f6;
            color: #374151;
            border: 1px solid #e5e7eb;
        }
        .modal-btn.secondary:hover {
            background-color: #e5e7eb;
            transform: translateY(-2px);
        }
        
        
        /* Responsive Media Queries */
        
        /* For Tablets and up */
        @media (min-width: 768px) {
            .plans-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
             /* Apply 2-column layout on tablets and up */
            .modal-details-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* For Desktops */
        @media (min-width: 1024px) {
             .section-header-plan h2 {
               font-size: 1.7rem;
                font-family: 'Poppins', sans-serif;
            }
            .plans-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            /* Only scale the popular card on large screens */
            .plan-card.popular-card {
                transform: scale(1.05);
            }
            .plan-card.popular-card:hover {
                transform: translateY(-10px) scale(1.05);
            }
        }

        /* For Mobile screens */
        @media (max-width: 767px) {
            .portfolio-pricing-section {
                padding: 4rem 0.5rem;
            }
            .section-header-plan h2 {
                font-size: 2rem;
            }
            .section-header-plan p {
                font-size: 1rem;
            }
            .filter-btn {
                padding: 0.5rem 1.25rem;
                font-size: 0.875rem;
            }
            .plan-card, .plan-card.popular-card {
                padding: 2rem;
                transform: scale(1); /* Reset scale on mobile */
            }
             .plan-card:hover, .plan-card.popular-card:hover {
                transform: translateY(-8px); /* Adjust hover effect for mobile */
            }
            .plan-price .amount {
                font-size: 3rem;
            }
            .plan-card h3 {
                font-size: 1.5rem;
            }
            .modal-content {
                padding: 2rem 1.5rem;
            }
            .modal-content h3 {
                font-size: 1.5rem;
            }
            /* Stack buttons on mobile */
            .modal-button-group {
                flex-direction: column;
            }
        }


/*======================= @keyframes ============================ */

@keyframes moveText{
    0%,10%,100%{
        background-position: -24rem 0;
    }

    65%,85%{
        background-position: 0rem 0;
    }
}

@keyframes moveCursorText{
    0%,10%,100%{
        width: 0;
    }

    65%,78%,85%{
        width: 100%;
        opacity: 1;
    }

    75%,85%{
        opacity: 0;
    }
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes rotateText{
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

@keyframes progress{
   to{
    stroke-dashoffset: var(--target);
   }
}

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




/*======================= BrakPoints ============================ */

@media(max-width:1200px){
    html{
        font-size: 95%;
    }

}

@media(max-width:991px){
    header,section{
        padding-left: 3%;
        padding-right: 3%;
        position: relative;
        cursor: pointer;
    }
    /* .cursor-dot{
        display: none;
    }
    .cursor-outline{
        display: none;
    } */
   *{
    cursor: default;

   }
   cursor{
    z-index: 1000000;
   }
   .hero-info{
    margin-top: 0px;
   }
    .portfolio-box{
        flex-direction: column-reverse;
    }
    .home{
        height: 70vh;
    }
    .about,.contactSkills{
        flex-direction: column;
    }
    .about .about-img .aboutHero{
        width: 100%;
    }
    .proposal img{
        width: 52vw;
        bottom: 0px;
    }
    .portfolio-img img{
        width: 100%;
        height: 100%;
    }
    .portfolio-gallery{
        grid-template-columns: repeat(auto-fill,minmax(250px , 1fr));
    }
    .img-hero{
        margin-top: 3rem;
        display: none;
    }
}


@media(max-width:768px){
    .proposal{
            display: none;
        
    }
    
    /* .services .text-box h3{
        font-size: 30px;
    }
    .services .text-box .btn{
        font-size: 16px;
        
    } */
   
    .menu-icon .bar,.menu-icon::after,.menu-icon::before{
        display: block;
    }
    ul.navlist{
        position: absolute;
        top: -1000px;
        transition: all .3s ease;
        width: 100%;
        text-align: center;
        display: block;
        background: var(--gradient-white-bg);
        left: 0;
        border-top: 2px solid rgba(248, 202, 202, .7);
    }
    ul.navlist a{
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    .navlist.active{
        top: 100%;
    }
    .img-hero{
        display: none;
    }
     .overlay{
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        position: fixed;
        background: rgba(0,0,0,0.5);
        z-index: 8;
        opacity: 0;
        transform: .3s;
        pointer-events: none;
    } 
     body.open .overlay{
        opacity: 1;
        pointer-events: auto;
    }
    
    .btn{
        padding: 10px;
    }
    .home{
        grid-gap: 0;
    }
    .fillter-buttons button{
        padding: 10px;
        font-size: .8rem;
    }
}
/* @media(max-width:699px){
    .services .text-box h3{
        font-size: 19px;
    }
    .services .text-box .btn{
        font-size: 10px;
        
    }
    .proposal img {
        width: 52vw;
        bottom: 10px;
        position: relative;
        top: 0px;
        height:255px;
    }
} */

@media(max-width:530px){
    html{
        font-size: 80%;
    }
     .cursor-outline{
        display: none;
    }
    .cursor-dot{
        display: none;
    }   
    *{
    cursor: default;
    }


    section{
        padding: 50px 3%;
    }
    .contact-info form .input-box{
        display: block;
    }
    .input-box input {
        width: 100%;
    }
    .rotate-text{
        display: none;
    }
    .img-hero img{
      
        display: none;
    }
    .text-animate{
        width: 23.8rem;
    }
    .btn-box{
        width: 266px;
        margin-bottom: 3rem;
    }
    .about-btn button{
        padding: 10px 15px;
    }
    .fillter-buttons{
        display: grid;
        grid-gap: 1rem;
    }
    .fillter-buttons button{
        width: 100%;
        padding: 13px;
    }
    /* .services .text-box h3{
        font-size: 14px;
    }
    .services .text-box .btn{
        font-size: 10px;
        
    }
    .proposal img {
        width: 52vw;
        bottom: 10px;
        position: relative;
        top: 0px;
        height: 195px;
    } */
    /* .services .text-box .btn{
        font-size: 10px;
    } */
}

/* ================== Professional Theme Customizer Styles (FIXED) ================== */
.customizer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 1000; opacity: 0;
    pointer-events: none; transition: opacity 0.4s ease-in-out;
}
.customizer-overlay.open { opacity: 1; pointer-events: auto; }

.theme-customizer {
    position: fixed; top: 1rem; right: -320px; width: 300px;
    height: auto; max-height: calc(100vh - 2rem); overflow-y: auto;
    border-radius: 15px; background: #ffffff; z-index: 1001;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #eee; transition: right 0.4s ease-in-out;
}
body.theme-dim .theme-customizer, body.theme-dark .theme-customizer {
    background: #282828; border-color: #444;
}

.theme-customizer.open { right: 1rem; }

.customizer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; background: var(--main-color); color: #fff;
    border-radius: 15px 15px 0 0; transition: background 0.3s;
}
.customizer-header h3 { margin: 0; font-size: 1.1rem; }
.close-customizer { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

.customizer-content { padding: 20px; }
.customizer-content h4 { margin: 15px 0; color: var(--primary-font-color); border-bottom: 1px solid #eee; padding-bottom: 10px; }
body.theme-dim .customizer-content h4, body.theme-dark .customizer-content h4 { border-bottom-color: #444; }

.preset-colors { display: flex; gap: 15px; }
.color-swatch { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 0 5px rgba(0,0,0,0.2); transition: all 0.2s ease; }
.color-swatch.selected { transform: scale(1.15); box-shadow: 0 0 0 3px var(--main-color); }

.custom-color-picker { display: flex; align-items: center; gap: 10px; color: var(--font-color); margin-top: 15px; }

.background-options { display: flex; gap: 10px; }
.bg-btn {
    flex-grow: 1; padding: 8px; border: 1px solid #ccc; background: #f1f1f1;
    cursor: pointer; border-radius: 5px; transition: all 0.3s;
}
.bg-btn.active { background: var(--main-color); color: #fff; border-color: var(--main-color); }

.font-size-slider { display: flex; align-items: center; gap: 15px; }
#font-size-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 8px; background: #ddd; border-radius: 5px; outline: none; }
#font-size-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; background: var(--main-color); cursor: pointer; border-radius: 50%; }
#font-size-value { font-weight: 600; color: var(--primary-font-color); }

.action-buttons { display: flex; gap: 10px; margin-top: 20px; }
.reset-btn, .apply-btn { width: 100%; padding: 12px; border-radius: 5px; cursor: pointer; font-weight: 600; border: 1px solid; }
.reset-btn { background: #f1f1f1; border-color: #ccc; color: #333; }
.apply-btn { background: var(--main-color); color: #fff; border-color: var(--main-color); transition: background 0.3s; }

.theme-switcher-icon {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}
.theme-switcher-icon:hover {
    color: var(--main-color);
}


/* ================= Loader Styles ================= */

:root {
    --primary-glow: #00aaff;
    --success-glow: #00ff9d;
    --fail-glow: #ff003c;
    --bg-dark: #0a0a0f;
    --text-primary: #e6f1ff;
    --text-secondary: #94a3b8;
}

/* --- Loader Styles --- */
#loader {
    position: fixed; inset: 0; z-index: 9999;
    background-color: var(--bg-dark);
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.7s ease-out; opacity: 1; cursor: default;
}
#matrix-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.loader-text-container {
    position: relative; z-index: 1;
    background-color: rgba(13, 17, 23, 0.7);
    padding: 1rem 2rem; border-radius: 8px; backdrop-filter: blur(5px);
}
#loader-text {
    color: var(--primary-glow); font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 1.5rem; text-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--primary-glow);
    letter-spacing: 3px; font-weight: 500;
}

/* --- Verification Screen Styles --- */
#captcha-screen {
    position: fixed; inset: 0; z-index: 9998;
    background-color: var(--bg-dark);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    cursor: default;
}
#captcha-screen.visible {
    opacity: 1;
    visibility: visible;
}

.captcha-box {
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    padding: 2.5rem; border-radius: 16px; text-align: center;
    color: var(--text-primary); border: 1px solid #30363d;
    box-shadow: 0 0 15px var(--primary-glow), 0 0 30px var(--primary-glow), 0 20px 50px rgba(0,0,0,0.7);
    transform: translateY(20px); opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, box-shadow 0.5s ease;
    width: 90%; max-width: 420px;
    position: relative; overflow: hidden;
     cursor: default;
}
#captcha-screen.visible .captcha-box { transform: translateY(0); opacity: 1; }
.captcha-box.success {
    box-shadow: 0 0 15px var(--success-glow), 0 0 30px var(--success-glow);
}
.captcha-box.success .scanner-line {
    background: var(--success-glow);
    box-shadow: 0 0 10px var(--success-glow);
}

.scanner-line {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--primary-glow);
    box-shadow: 0 0 10px var(--primary-glow);
    animation: scan 4s linear infinite;
}
@keyframes scan { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }

.captcha-box h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.captcha-box p { margin-bottom: 2rem; color: var(--text-secondary); }

/* --- Slider Styles --- */
#verify-slider { padding: 6px; background-color: #010409; border-radius: 50px; user-select: none; }
#slider-track { position: relative; background: #161b22; height: 50px; border-radius: 50px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#slider-thumb {
    position: absolute; left: 0; top: 0; width: 50px; height: 100%;
    background-color: var(--primary-glow); border-radius: 50px;
    cursor: pointer; display: flex; justify-content: center; align-items: center;
    color: #fff; z-index: 2; transition: all 0.3s;
}
#slider-thumb:hover { background-color: #38b6ff; box-shadow: 0 0 20px rgba(0, 170, 255, 0.5); }
#slider-text { color: var(--text-secondary); font-weight: bold; letter-spacing: 2px; z-index: 1; }

#verify-slider.verified #slider-thumb { background-color: var(--success-glow); }
#verify-slider.verified #slider-text { color: #fff; }

.error-message { height: 20px; margin-top: 1rem; }

/* --- Welcome Screen --- */
#welcome-screen {
    position: fixed; inset: 0; z-index: 10000;
    background-color: var(--bg-dark);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}
#welcome-screen.visible { opacity: 1; visibility: visible; }
#welcome-text {
    color: var(--success-glow); font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 2rem; text-shadow: 0 0 8px var(--success-glow);
}

/* --- General --- */
.hidden { display: none !important; }
#main-content { opacity: 0; visibility: hidden; transition: opacity 1.2s ease-in; }
#main-content.loaded { opacity: 1; visibility: visible; }