@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.custom-navbar{
    background:rgba(10,15,35,.7);
    backdrop-filter:blur(15px);
    padding: 13px 0;
    transition:.4s;
}

.navbar-brand img{
    max-width: 180px;
}

.logo-text{
    font-size:30px;
    font-weight:800;
    color:#fff;
}

.nav-link{
    color:#fff;
    margin:0 12px;
    font-weight:500;
}

.nav-link:hover,
.nav-link:focus{
    color:#f3d068;
}

.btn-gradient{
    background:linear-gradient(
        135deg,
        #987521,
        #f3d068
    );
    color:#fff;
    border:none;
    padding:12px 32px;
    border-radius:50px;
    font-weight:600;
}

.btn-gradient:hover{
    color:#fff;
    transform:translateY(-3px);
}

.hero-section{
    position:relative;
}

.hero-bg{
    position:absolute;
    width:700px;
    height:700px;
    background:#f3d068;
    filter:blur(250px);
    opacity:.25;
    top:-200px;
    left:-150px;
}


/* =========================
   Breadcrumb Section
========================= */

.breadcrumb-section {
    position: relative;
    padding: 143px 0 70px;
    background: #050816;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 209, 102, 0.12),
            transparent 40%),
        radial-gradient(circle at bottom right,
            rgba(255, 209, 102, 0.08),
            transparent 40%);
    z-index: -1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
}

.breadcrumb-item a {
    color: #FFD166;
    text-decoration: none;
    transition: all .3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

.breadcrumb-content nav {
    display: inline-block;
    padding: 14px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 50px;
}

/* Floating Glow Shapes */

.breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 209, 102, 0.15);
    top: -100px;
    left: -80px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 209, 102, 0.12);
    bottom: -100px;
    right: -50px;
}

/* Responsive */

@media (max-width: 991px) {
    .breadcrumb-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 140px 0 80px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .breadcrumb-content nav {
        padding: 12px 20px;
    }
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    margin-bottom:20px;
    background:rgba(255,255,255,.05);
}

.hero-title{
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span{
    color:#f3d068;
}

.hero-desc{
    font-size:18px;
    color:#c7c7c7;
    max-width:650px;
    line-height:1.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.btn-outline-custom{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:12px 32px;
    border-radius:50px;
}

.hero-card{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.floating-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    padding:25px;
    border-radius:20px;
    font-size:18px;
    font-weight:500;
}

.floating-card i{
    margin-right:12px;
    color:#f3d068;
}

@media(max-width:991px){

.hero-title{
    font-size:48px;
}

.hero-card{
    margin-top:50px;
}

}

/* ====================
ABOUT
==================== */

.about-section{
    padding:120px 0;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(109,93,252,.12);
    color: #f3d068;
    font-size:14px;
    font-weight:600;
}

.section-title{
    font-size: 40px;
    font-weight:600;
    line-height:1.2;
}

.about-text{
    color:#bcbcbc;
    margin-top:25px;
    line-height:1.9;
}

.about-features{
    margin-top:35px;
}

.feature-item{
    margin-bottom:18px;
    font-size:17px;
    font-weight:500;
}

.feature-item i{
    color: #f3d068;
    margin-right:10px;
}

.about-image{
    position:relative;
    width:500px;
    height:500px;
    margin:auto;
}

.center-circle{
    width:280px;
    height:280px;
    border-radius:50%;
    background:linear-gradient(135deg,#f3d068,#f3d068);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-top:100px;
}

.inner-circle{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#050816;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:800;
}

.glass-box{
    position:absolute;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    padding:20px;
    border-radius:20px;
    min-width:220px;
}

.glass-box i{
    color:#f3d068;
    margin-right:10px;
}

.glass-1{
    top:0;
    left:0;
}

.glass-2{
    top:60px;
    right:0;
}

.glass-3{
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}

/* ====================
COUNTERS
==================== */

.counter-section{
    padding:50px 0 120px;
}

.counter-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    text-align:center;
    padding:40px;
    transition:.4s;
}

.counter-card:hover{
    transform:translateY(-10px);
}

.counter-card h3{
    font-size:55px;
    font-weight:600;
    color:#f3d068;
}

.counter-card p{
    margin:0;
    color:#bcbcbc;
}

/* ====================
WHY US
==================== */



.why-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    border-radius:25px;
    height:100%;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#f3d068;
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#f3d068,#f3d068);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.icon-box i{
    font-size:26px;
}

.why-card h4{
    font-weight: 600;
    margin-bottom:15px;
}

.why-card p{
    color:#bcbcbc;
    line-height:1.8;
}

/* ======================
SERVICES SECTION
====================== */

.services-section{
    padding:120px 0;
    position:relative;
}

.services-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#f3d068;
    opacity:.08;
    filter:blur(180px);
    top:0;
    right: 0px;
}

.services-subtitle{
    max-width:750px;
    margin:auto;
    color:#bcbcbc;
    margin-top:20px;
    line-height:1.9;
}

.service-card{
    position:relative;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
    overflow:hidden;
    height:100%;
    transition:.5s;
    color: #ffffff;
}

.service-card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:#f3d068;
    border-radius:50%;
    top:-120px;
    right:-120px;
    opacity:.08;
    transition:.5s;
}

.service-card:hover::before{
    transform:scale(2);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#f3d068;
    box-shadow:0 20px 50px rgba(143,68,253,.15);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:linear-gradient(
        135deg,
        #f3d068,
        #f3d068
    );
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:30px;
}

.service-card h4{
    font-size:24px;
    font-weight: 600;
    margin-bottom:18px;
}

.service-card p{
    color:#bcbcbc;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card ul{
    padding:0;
    list-style:none;
    margin:0;
}

.service-card ul li{
    padding:8px 0;
    color:#e5e5e5;
    font-size:15px;
}

.service-card ul li::before{
    content:'✓';
    color:#f3d068;
    margin-right:10px;
    font-weight:700;
}

@keyframes floatCard {

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

.service-icon{
    animation:floatCard 4s ease-in-out infinite;
}

/* ==========================
PORTFOLIO SECTION
========================== */

.portfolio-section{
    padding:120px 0;
}

.portfolio-subtitle{
    max-width:700px;
    margin:auto;
    color:#bcbcbc;
    line-height:1.8;
}

.portfolio-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.portfolio-filter button{
    border:none;
    background:rgba(255,255,255,.05);
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    transition:.3s;
}

.portfolio-filter button.active,
.portfolio-filter button:hover{
    background:#f3d068;
}

.portfolio-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

.portfolio-image{
    position:relative;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height: auto;
    object-fit:cover;
    transition:.6s;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-overlay a{
    background:#f3d068;
    color: #050816;
    padding:14px 25px;
    border-radius:50px;
}

.portfolio-content{
    padding:30px;
}

.portfolio-content span{
    color:#f3d068;
    font-weight:600;
}

.portfolio-content h4{
    margin:15px 0;
    font-weight:700;
}

.portfolio-content p{
    color:#bcbcbc;
    line-height:1.8;
}

.project-stats{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}

.project-stats h5{
    color:#f3d068;
    font-weight:800;
}

.project-stats small{
    color:#bcbcbc;
}

/* ======================
PROJECT CTA
====================== */

.project-cta{
    padding-bottom:120px;
}

.cta-box{
    background:linear-gradient(
        135deg,
        rgba(109,93,252,.04),
        rgba(143,68,253,.04)
    );
    border:1px solid rgba(255,255,255,.08);
    border-radius:35px;
    padding:70px;
    text-align:center;
}

.cta-box h2{
    font-size:42px;
    font-weight:600;
}

.cta-box p{
    max-width:700px;
    margin:20px auto 35px;
    color:#cfcfcf;
}

/* =========================
TECH STACK
========================= */

.tech-section{
    padding:120px 0;
}

.tech-subtitle{
    max-width:750px;
    margin:auto;
    color:#bcbcbc;
    line-height:1.9;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.tech-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.tech-card:hover{
    transform:translateY(-10px);
    border-color:#f3d068;
    box-shadow:0 15px 40px rgba(143,68,253,.15);
}

.tech-card i{
    font-size:45px;
    color:#f3d068;
    margin-bottom:20px;
}

.tech-card span{
    display:block;
    font-weight:600;
}

/* =========================
PROCESS TIMELINE
========================= */

.process-section{
    padding:120px 0;
}

.timeline{
    max-width:900px;
    margin:auto;
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    left:35px;
    top:0;
    width:2px;
    height:100%;
    background:rgb(243 208 104 / 20%);
}

.timeline-item{
    display:flex;
    gap:30px;
    margin-bottom:50px;
    position:relative;
}

.timeline-number{
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #f3d068,
        #f3d068
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:22px;
    z-index:2;
    color: #050816;
}

.timeline-content{
    flex:1;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:30px;
}

.timeline-content h4{
    margin-bottom:15px;
    font-weight:600;
}

.timeline-content p{
    color:#bcbcbc;
    line-height:1.8;
}

@media(max-width:991px){

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .tech-grid{
        grid-template-columns:1fr;
    }

    .timeline-item{
        flex-direction:column;
    }

    .timeline::before{
        display:none;
    }

}

/* =========================
TRUSTED BY
========================= */

.trusted-section{
    padding:120px 0 80px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.trusted-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    text-align:center;
    border-radius:25px;
    font-size:24px;
    font-weight:600;
    transition:.4s;
}

.trusted-card:hover{
    border-color:#f3d068;
    transform:translateY(-8px);
}

/* =========================
TESTIMONIALS
========================= */

.testimonial-section{
    padding:120px 0;
}

.testimonial-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
    text-align:center;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background: #221940;
    border: 1px solid white;
}

.stars{
    font-size:26px;
    color:#ffc107;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:25px;
    min-height: 122px;
    max-height: 122px;
}

.testimonial-card h5{
    font-weight:600;
}

.testimonial-card span{
    color:#999;
}

.swiper-pagination-bullet-active{
    background:#f3d068 !important;
}

/* =========================
RATINGS
========================= */

.rating-section{
    padding-bottom:120px;
}

.rating-card{
    background:linear-gradient(
        135deg,
        rgba(109,93,252,.12),
        rgba(143,68,253,.12)
    );
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    text-align:center;
    padding:40px;
}

.rating-card h2{
    font-size:50px;
    color:#f3d068;
    font-weight:600;
}

.rating-card p{
    color:#cfcfcf;
    margin-top:10px;
}

/* ==========================
CONTACT
========================== */

.contact-section{
    padding:120px 0;
}

.contact-form-wrapper,
.contact-info-wrapper{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
}

.contact-box{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:25px;
}

.contact-box i{
    width:60px;
    height:60px;
    border-radius:15px;
    color:#f3d068;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.consultation-card{
    margin-top:40px;
    background:linear-gradient(
        135deg,
        rgba(109,93,252,.15),
        rgba(143,68,253,.15)
    );
    border-radius:25px;
    padding:30px;
}

.custom-input{
    background:rgba(255,255,255,.05)!important;
    border:1px solid rgba(255,255,255,.08)!important;
    color:#fff!important;
    min-height:58px;
}

.custom-input:focus{
    box-shadow:none!important;
    border-color:#f3d068!important;
    background:rgba(255,255,255,.08)!important;
}

/* ==========================
FAQ
========================== */

.faq-section{
    padding-bottom:120px;
}

.custom-accordion .accordion-item{
    margin-bottom:20px;
    border:none;
    border-radius:20px;
    overflow:hidden;
    background:rgba(255,255,255,.04);
}

.custom-accordion .accordion-button{
    background:rgba(255,255,255,.04);
    color:#fff;
    font-weight:600;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:rgba(143,68,253,.15);
    color:#fff;
}

.custom-accordion .accordion-body{
    color:#d0d0d0;
}

/* ==========================
FOOTER
========================== */

.footer{
    background:#03050f;
    padding:100px 0 30px;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
}

.footer-text{
    color:#a0a0a0;
    margin-top:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f3d068;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
}

.footer-social a:hover{
    background:#f3d068;
}

.copyright{
    text-align:center;
    color:#8b8b8b;
    margin-top:20px;
}

.contact-form-wrapper input::placeholder {
    color: #919191; /* Placeholder color */
    opacity: 1; /* Ensures full visibility */
}

.contact-form-wrapper textarea::placeholder {
    color: #919191; /* Placeholder color */
    opacity: 1; /* Ensures full visibility */
}

.contact-form-wrapper select option{
    color: #919191; /* Placeholder color */
    opacity: 1; /* Ensures full visibility */
}

@media screen and (max-width: 480px){
    .for-res-hide{
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}



/* ===========================
   PAGE BANNER
=========================== */

.page-banner{
    position: relative;
    padding: 120px 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://genitech.in/wp-content/uploads/2026/06/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner .banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 35, 0.80);
    z-index: 1;
}

.banner-content{
    position: relative;
    z-index: 2;
    text-align: left;
}

.banner-content h1{
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.breadcrumb{
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item a{
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active{
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: rgba(255,255,255,.8);
}

@media(max-width:768px){
    .page-banner{
        height:180px;
    }
    
    
    .price-box{
        display:flex;
        align-items:flex-end;
        gap:15px;
        margin-bottom:30px;
    }
    
    .old-price{
        color:#7E8498;
        text-decoration:line-through;
        font-size:20px;
    }
    
    .new-price{
        color:#F3D068;
        font-size:42px;
        font-weight:700;
        line-height:1;
    }

    .buy-btn{
        margin-top:auto;
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
        height:56px;
        border-radius:14px;
        background:#F3D068;
        color:#111111;
        font-size:18px;
        font-weight:700;
        text-decoration:none;
        transition:.3s ease;
    }

    .buy-btn:hover{
        background:#FFE082;
        color:#111111;
        transform:translateY(-3px);
        box-shadow:0 15px 35px rgba(243,208,104,.25);
    }
}