

/*=============================
        NAVBAR
=============================*/

.custom-navbar{
    position:static;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    transition:.4s;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}


.logo-img{
    width:150px;
    transition:.4s;
}

.logo-img:hover{
    transform:scale(1.05);
}

.logo-text h2{

    margin:0;

    font-size:42px;

    font-weight:800;

    color:#2d2350;

    letter-spacing:2px;

    text-transform:uppercase;

}

.navbar-nav{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:15px;

}

.nav-link{

    color:#2d2350 !important;

    background:none !important;

    font-size:17px !important;

    font-weight:700 !important;

    text-transform:uppercase;

    padding:12px 20px !important;

    border-radius:30px;

    transition:.35s;

}

.nav-link:hover{

    color:#c300fe !important;

    background:#f6ebff !important;

}

.nav-link.active{

    color:#c300fe !important;

    background:#f6ebff !important;

}

.cart-btn{

    background:#430258 !important;

    color:#fff !important;



}

.cart-btn:hover{

    background:#c300fe !important;

    color:#fff !important;

}
/* Text */

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

/* METS */

.logo-text h2{

    margin:0;

    font-size:34px;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

   color:midnightblue;

    background-size:300%;

  

    animation:textGlow 4s linear infinite;
}
/* Menu */

.navbar-nav{

    margin-left:auto;

    gap:18px;

}

/* Nav Link */
.nav-link{

    color:#2d2350 !important;

    font-size:17px;

    font-weight:700;

    text-transform:uppercase;

    padding:12px 20px !important;

    border-radius:30px;

    transition:.4s;

}

/* Underline */

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:5px;

    width:0;

    height:3px;

    background:#c300fe;

    transform:translateX(-50%);

    transition:.35s;

}

.nav-link:hover{

    color:#c300fe !important;

    background:rgba(195,0,254,.08);

}

.nav-link:hover::after{

    width:70%;

}

/* Active */

.nav-link.active{

    color:#c300fe !important;

}

.nav-link.active::after{

    width:70%;

}

/* Cart */

.cart-btn{

    background:#430258;

    color:#fff !important;

    border-radius:35px;

    padding:10px 22px !important;

}

.cart-btn:hover{

    background:#c300fe;

    color:#fff !important;

}
.logo-text {
    white-space: nowrap !important;
    flex-shrink: 0;
    width: auto !important;
}

.logo-text h2 {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: visible !important;
  

    margin: 0 !important;

    font-size: 34px;
    font-weight: 800;
    letter-spacing: 3px;

    display: block;
    width: max-content;
}
/* ==========================
      HERO SECTION
========================== */

.hero-slider{
    position:relative;
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;

    background:#fff;

    overflow:hidden;

    padding:90px 0 60px;

       margin-top:0 !important;

    padding-top:0 !important;


}

/* Navbar height */

.hero-slider .container{
    max-width:1350px;
}

.hero-slider .row{
    min-height:calc(100vh - 90px);
    align-items:center;
}

/* Background Blur */

.hero-slider::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:#430258;
    left:-120px;
    top:-170px;
    filter:blur(140px);
    opacity:.15;
}

.hero-slider::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:#c300fe;
    right:-120px;
    bottom:-180px;
    filter:blur(140px);
    opacity:.12;
}

/* IMAGE */

.hero-img{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-img img{
    width:100%;
    max-width:620px;
    animation:floating 4s ease-in-out infinite;
}

/* CONTENT */

.hero-content{
    padding-left:60px;
}

.hero-content h5{
    font-size:17px;
    color:#c300fe;
    margin-bottom:15px;
    letter-spacing:3px;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
    color:#111;
    margin-bottom:20px;
}

.hero-content p{
    color:#666;
    line-height:1.8;
    font-size:18px;
    margin-bottom:30px;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    gap:20px;
}

.shop-btn{
    padding:15px 38px;
    border-radius:50px;
    background:linear-gradient(135deg,#430258,#c300fe);
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.explore-btn{
    padding:15px 38px;
    border:2px solid #430258;
    border-radius:50px;
    color:#430258;
    text-decoration:none;
    font-weight:600;
}

.shop-btn:hover{
    color:#fff;
}

.explore-btn:hover{
    background:#430258;
    color:#fff;
}

@keyframes floating{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

}

/* Responsive */

@media(max-width:991px){

.hero-slider{
padding:120px 0 50px;
}

.hero-content{
padding-left:0;
margin-top:40px;
text-align:center;
}

.hero-content h1{
font-size:45px;
}

.hero-btns{
justify-content:center;
}

}
.carousel{
    width:100%;
}

.carousel-inner{
    width:100%;
}

.carousel-item{
    padding:40px 0;
}

.container-fluid.hero-container{
    width:100%;
    padding-left:60px;
    padding-right:60px;
}

/*==============================
     IMAGE GLOW
==============================*/

.circle{

    position:absolute;
    border-radius:50%;
    filter:blur(60px);

}

.circle.one{

    width:180px;
    height:180px;
    background:#430258;
    left:40px;
    top:40px;
    opacity:.25;

}

.circle.two{

    width:220px;
    height:220px;
    background:#c300fe;
    right:30px;
    bottom:30px;
    opacity:.20;

}

/*==============================
     RIGHT CONTENT
==============================*/

.hero-content{

    padding-left:70px;

}

.brand{

display:inline-block;

padding:10px 24px;

background:linear-gradient(90deg,#430258,#c300fe);

color:#fff;

border-radius:40px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

letter-spacing:1px;

}

.slider-title{

font-size:64px;

font-weight:700;

line-height:78px;

color:#111;

margin-bottom:25px;

}

.slider-text{

font-size:18px;

line-height:34px;

color:#666;

margin-bottom:35px;

max-width:540px;

}
/*==========================================
        BUTTONS
==========================================*/

.slider-btn{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.shop-btn,
.learn-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.45s ease;
}

.shop-btn{
    background:linear-gradient(135deg,#430258,#c300fe);
    color:#fff;
    box-shadow:0 15px 35px rgba(67,2,88,.30);
}

.shop-btn:hover{
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(195,0,254,.45);
}

.learn-btn{
    border:2px solid #430258;
    color:#430258;
    background:#fff;
}

.learn-btn:hover{
    background:linear-gradient(135deg,#430258,#c300fe);
    color:#fff;
    border-color:transparent;
    transform:translateY(-8px);
}

/*==========================================
        CAROUSEL
==========================================*/

.carousel-item{
    transition:transform .9s ease-in-out;
    padding:40px 0;
}

.carousel-control-prev,
.carousel-control-next{
    width:70px;
    opacity:1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background-color:#430258;
    background-size:45%;
    box-shadow:0 10px 25px rgba(67,2,88,.35);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{
    background-color:#c300fe;
    transform:scale(1.08);
}

.carousel-indicators{
    bottom:-15px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 6px;
    border:none;
    background:#cfcfcf;
    transition:.4s;
}

.carousel-indicators .active{
    width:34px;
    border-radius:20px;
    background:linear-gradient(90deg,#430258,#c300fe);
}

/*==========================================
        CONTENT ANIMATION
==========================================*/

.hero-content{
    animation:fadeRight .9s ease;
}

.hero-img{
    animation:fadeLeft .9s ease;
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/*==========================================
        RESPONSIVE
==========================================*/

@media (max-width:991px){

    .hero-slider{
        padding:120px 0 60px;
    }

    .hero-content{
        padding-left:0;
        margin-top:40px;
        text-align:center;
    }

    .slider-title{
        font-size:42px;
        line-height:52px;
    }

    .slider-text{
        max-width:100%;
        font-size:16px;
        line-height:30px;
    }

    .slider-btn{
        justify-content:center;
    }

    .laptop-img{
        max-width:420px;
    }

}

@media (max-width:576px){

    .slider-title{
        font-size:32px;
        line-height:42px;
    }

    .brand{
        font-size:12px;
        padding:8px 18px;
    }

    .shop-btn,
    .learn-btn{
        width:100%;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }

    .laptop-img{
        max-width:300px;
    }

}
/*==========================================
        PREMIUM ANIMATIONS
==========================================*/

.hero-slider{
    animation:heroFade 1.2s ease;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Image Hover */

.hero-img{

    transition:.6s;

}

.hero-img:hover{

    transform:translateY(-12px) scale(1.03);

}

/* Floating Glow */

.circle{

    animation:glowMove 6s linear infinite alternate;

}

@keyframes glowMove{

0%{

transform:translate(0,0);

}

50%{

transform:translate(20px,-20px);

}

100%{

transform:translate(-20px,20px);

}

}

/* Content Animation */

.brand{

animation:fadeUp .6s ease;

}

.slider-title{

animation:fadeUp .8s ease;

}

.slider-text{

animation:fadeUp 1s ease;

}

.slider-btn{

animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==============================
      IMAGE SHADOW
==============================*/

.laptop-img{

filter:drop-shadow(0 30px 45px rgba(67,2,88,.35));

}

/*==============================
      BUTTON GLOW
==============================*/

.shop-btn{

position:relative;

overflow:hidden;

}

.shop-btn::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:rgba(255,255,255,.3);

transform:skewX(-30deg);

transition:.7s;

}

.shop-btn:hover::before{

left:120%;

}

/*==============================
     HERO DECORATION DOTS
==============================*/

.hero-slider::before{

box-shadow:
0 0 80px #430258,
0 0 150px #c300fe;

}

.hero-slider::after{

box-shadow:
0 0 80px #430258,
0 0 150px #c300fe;

}

/*==============================
     CAROUSEL HOVER
==============================*/

.carousel:hover .carousel-control-prev-icon,
.carousel:hover .carousel-control-next-icon{

transform:scale(1.15);

transition:.4s;

}

/*==============================
        SCROLL INDICATOR
==============================*/

.scroll-down{

position:absolute;

left:50%;

bottom:25px;

transform:translateX(-50%);

font-size:14px;

color:#666;

animation:bounce 2s infinite;

}

.scroll-down i{

display:block;

font-size:22px;

color:#430258;

}

@keyframes bounce{

0%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

100%{

transform:translate(-50%,0);

}

}

/*==============================
        PARALLAX EFFECT
==============================*/

.hero-content{

transition:.5s;

}

.hero-slider:hover .hero-content{

transform:translateX(10px);

}

/*==============================
       IMAGE ROTATE
==============================*/

.hero-slider:hover .laptop-img{

transform:rotate(-2deg) scale(1.04);

}

/*==============================
      BACKGROUND PARTICLES
==============================*/

.particle{

position:absolute;

width:10px;

height:10px;

border-radius:50%;

background:#c300fe;

opacity:.3;

animation:particleMove 12s linear infinite;

}

@keyframes particleMove{

0%{

transform:translateY(0);

opacity:.2;

}

100%{

transform:translateY(-900px);

opacity:0;

}

}

/*==============================
      GLASS CARD
==============================*/

.hero-content{

background:rgba(255,255,255,.45);

backdrop-filter:blur(18px);

padding:45px;

border-radius:25px;

box-shadow:

0 15px 35px rgba(0,0,0,.08);

}

/*==============================
      CARD HOVER
==============================*/

.hero-content:hover{

transform:translateY(-8px);

transition:.5s;

box-shadow:

0 20px 40px rgba(67,2,88,.18);

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:768px){

.hero-content{

padding:25px;

}

.circle{

display:none;

}

.scroll-down{

display:none;

}

}

/*==============================
 FEATURED LAPTOPS
==============================*/

.featured-laptops{
    padding:100px 0;
    background:#fff;
}

.featured-laptops h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:60px;
}

/*==============================
 ROW ANIMATION
==============================*/

.laptop-row{
    opacity:0;
    transform:translateX(-180px);
    animation:slideCenter 1.5s ease forwards;
}

.row-bottom{
    animation-delay:.5s;
}

@keyframes slideCenter{

0%{
opacity:0;
transform:translateX(-180px);
}

100%{
opacity:1;
transform:translateX(0);
}

}

/*==============================
 CARD
==============================*/

.laptop-card{

position:relative;

background:#f5f5f5;

border-radius:22px;

padding:25px;

overflow:hidden;

text-align:center;

transition:.5s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

height:100%;

}

/*==============================
 HOVER COLOR
==============================*/

.laptop-card::before{

content:"";

position:absolute;

left:0;

bottom:-100%;

width:100%;

height:100%;

background:linear-gradient(
135deg,
#430258,
#c300fe,
#430258
);

transition:.6s;

z-index:0;

}

.laptop-card:hover::before{

bottom:0;

}

.laptop-card>*{

position:relative;

z-index:2;

}

.laptop-card:hover{

transform:translateY(-15px);

box-shadow:0 20px 45px rgba(67,2,88,.35);

}

/*==============================
 IMAGE
==============================*/

.laptop-card img{

width:100%;

height:190px;

object-fit:cover;

border-radius:15px;

transition:.6s;

}

.laptop-card:hover img{

transform:scale(1.08);

}

/*==============================
 TITLE
==============================*/

.laptop-card h4{

margin-top:20px;

font-size:24px;

font-weight:700;

color:#222;

transition:.4s;

}

.laptop-card:hover h4{

color:#fff;

}

/*==============================
 TEXT
==============================*/

.laptop-card p{

font-size:15px;

line-height:28px;

margin:18px 0;

color:#666;

transition:.4s;

}

.laptop-card:hover p{

color:#fff;

}

/*==============================
 BUTTON
==============================*/

.card-btn{

display:inline-block;

padding:12px 28px;

border-radius:35px;

background:#430258;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.4s;

}

.card-btn:hover{

background:#fff;

color:#430258;

}

/*==============================
 POPUP EFFECT
==============================*/

.laptop-card{

animation:popup .8s ease;

}

@keyframes popup{

0%{

transform:scale(.8);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

}

}

/*==============================
 RESPONSIVE
==============================*/

@media(max-width:992px){

.featured-laptops{

padding:70px 0;

}

.featured-laptops h2{

font-size:34px;

}

.laptop-card{

margin-bottom:25px;

}

}

@media(max-width:768px){

.laptop-card img{

height:220px;

}

.featured-laptops h2{

font-size:30px;

}

}
.show-card{
    opacity:1 !important;
    transform:translateX(0) !important;
    transition:all .8s ease;
}

.laptop-card{
    opacity:0;
    transform:translateX(-80px);
}

.featured-laptops h2{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.about{

padding:120px 0;

background:#fff;

position:relative;

overflow:hidden;

}

/* Background Pattern */

.bg-pattern{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:url(images/background-pattern.png);

background-size:cover;

opacity:.08;

z-index:0;

}

.about .container{

position:relative;

z-index:5;

}

/* Images */

.about-img{

position:relative;

}

.main-img{

width:100%;

border-radius:30px;

animation:floating 4s ease-in-out infinite;

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.small-img{

width:230px;

position:absolute;

bottom:-40px;

right:-15px;

border-radius:25px;

border:10px solid #fff;

animation:floating2 4s ease-in-out infinite;

box-shadow:0 20px 40px rgba(0,0,0,.2);

}

/* Experience */

.exp-box{

position:absolute;

top:-120px;

right:-5px;

left:auto;

width:170px;

height:150px;

background:linear-gradient(135deg,rgb(241, 7, 124));

border-radius:25px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:#fff;

box-shadow:0 20px 45px rgba(67,2,88,.35);

z-index:10;

animation:floatBox 4s ease-in-out infinite;

}

.exp-box h1{

font-size:55px;

font-weight:700;

margin:0;

}

.exp-box p{

font-size:18px;

margin-top:5px;

text-align:center;

}

/* Content */
.about{

padding:140px 0;

min-height:850px;

display:flex;

align-items:center;

}

.about h5{

color:#c300fe;

letter-spacing:4px;

font-weight:700;

}

.about h1{

font-size:58px;

font-weight:700;

margin:20px 0;

}

.about p{

font-size:18px;

line-height:34px;

color:#666;

margin-bottom:35px;

}

.about .row .col-6{

font-size:18px;

font-weight:600;

margin-bottom:18px;

}

.about-btn{

display:inline-block;

margin-top:30px;

padding:15px 42px;

background:linear-gradient(135deg,#430258,#c300fe);

border-radius:50px;

color:#fff;

text-decoration:none;

transition:.4s;

}

.about-btn:hover{

transform:translateY(-8px);

color:#fff;

box-shadow:0 20px 40px rgba(67,2,88,.3);

}

/* Floating */

@keyframes floatBox{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}
/*==========================
FEATURE SECTION
==========================*/

.features{

padding:100px 0;

background:#f8f9fc;

overflow:hidden;

}

.title{

text-align:center;

margin-bottom:70px;

}

.title h5{

color:#c300fe;

font-size:18px;

letter-spacing:4px;

font-weight:700;

margin-bottom:15px;

}

.feature-heading{

display:inline-block;

position:relative;

font-size:55px;

font-weight:700;

color:#111;

cursor:pointer;

transition:.4s;

}

.feature-heading span{

color:#430258;

transition:.4s;

}

.feature-heading::after{

content:"";

position:absolute;

left:50%;

bottom:-10px;

width:0;

height:4px;

background:#ff3ec9;

border-radius:10px;

transition:.4s;

transform:translateX(-50%);

}

.feature-heading:hover{

color:#ff3ec9;

}

.feature-heading:hover span{

color:#ff3ec9;

}

.feature-heading:hover::after{

width:100%;

}

.title p{

max-width:700px;

margin:auto;

font-size:18px;

color:#666;

line-height:32px;

}

/*==========================
GRID
==========================*/

.feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

/*==========================
CARD
==========================*/

.feature-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

transition:.5s;

opacity:0;

transform:translateY(100px);

transition:all .8s ease;

}

/* Hover Background */

.feature-card::before{

content:"";

position:absolute;

left:0;

bottom:-100%;

width:100%;

height:100%;

background:linear-gradient(135deg,#430258,pink);

transition:.5s;

z-index:0;

}

.feature-card:hover::before{

bottom:0;

}

.feature-card>*{

position:relative;

z-index:2;

}

/* ICON */

.feature-card i{

width:85px;

height:85px;

line-height:85px;

font-size:35px;

color:#fff;

background:linear-gradient(135deg,#430258,#c300fe);

border-radius:20px;

margin-bottom:25px;

transition:.5s;

}

/* TITLE */

.feature-card h3{

font-size:28px;

font-weight:700;

margin-bottom:20px;

transition:.5s;

}

/* CONTENT */

.feature-card p{

font-size:17px;

line-height:30px;

color:#666;

transition:.5s;

}

/* HOVER */

.feature-card:hover{

transform:translateY(-18px);

box-shadow:0 25px 50px rgba(67,2,88,.35);

}

.feature-card:hover h3,

.feature-card:hover p{

color:#fff;

}

.feature-card:hover i{

background:#fff;

color:#c300fe;

transform:rotate(10deg) scale(1.1);

}

/*==========================
SHOW ANIMATION
==========================*/

.feature-card.show{

opacity:1;

transform:translateY(0);

transition:all .8s ease;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.feature-grid{

grid-template-columns:1fr;

}

.feature-heading{

font-size:38px;

}

.title p{

font-size:16px;

}

}

.contact-section{
padding:100px 8%;
background:#fff;
overflow:hidden;
}

.contact-title{
text-align:center;
font-size:48px;
font-weight:700;
margin-bottom:70px;
transition:.4s;
cursor:pointer;
}

.contact-title:hover{
color:#ff1493;
}

.contact-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
}

.contact-card{

background:#fff;

padding:45px 30px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

transition:.5s;

opacity:0;

transform:translateY(120px);

}

.contact-card.active{

opacity:1;

transform:translateY(0);

}

.contact-card::before{

content:"";

position:absolute;

left:0;

bottom:-100%;

width:100%;

height:100%;

background:linear-gradient(135deg,#4f46e5,#ff4fd8);

transition:.6s;

z-index:0;

}

.contact-card:hover::before{

bottom:0;

}

.contact-card>*{

position:relative;

z-index:2;

transition:.4s;

}

.contact-card i{

width:90px;

height:90px;

line-height:90px;

font-size:35px;

border-radius:50%;

background:#f5f5f5;

color:#ff1493;

margin-bottom:25px;

}

.contact-card h3{

font-size:34px;

margin-bottom:20px;

}

.contact-card p{

font-size:18px;

line-height:34px;

color:#555;

}

.contact-card:hover h3,
.contact-card:hover p{

color:#fff;

}

.contact-card:hover i{

background:#fff;

color:#6a11cb;

transform:rotate(360deg);

}
.footer{

background:#111;

position:relative;

overflow:hidden;

padding:80px 8% 30px;

color:#fff;

}

.footer::before{

content:"";

position:absolute;

top:-250px;

left:-250px;

width:500px;

height:500px;

background:#ff1493;

filter:blur(220px);

opacity:.25;

}

.footer::after{

content:"";

position:absolute;

right:-250px;

bottom:-250px;

width:500px;

height:500px;

background:#6f00ff;

filter:blur(220px);

opacity:.25;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:50px;

position:relative;

z-index:2;

}

.footer-box h3{

font-size:28px;

margin-bottom:25px;

display:inline-block;

position:relative;

}

.footer-box h3::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:60px;

height:3px;

background:#ff1493;

border-radius:10px;

}

.footer-box p{

color:#cfcfcf;

line-height:32px;

font-size:16px;

margin-bottom:15px;

}

.footer-box p i{

color:#ff1493;

margin-right:10px;

}

.footer-box a{

display:block;

color:#cfcfcf;

text-decoration:none;

margin-bottom:16px;

transition:.4s;

}

.footer-box a:hover{

color:#ff1493;

padding-left:12px;

}

.footer hr{

margin:50px 0 30px;

border:none;

height:1px;

background:rgba(255,255,255,.15);

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

position:relative;

z-index:2;

}

.footer-bottom p{

color:#bbb;

font-size:15px;

}

.social{

display:flex;

gap:15px;

}

.social a{

width:48px;

height:48px;

background:#222;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:18px;

transition:.4s;

}

.social a:hover{

background:#ff1493;

transform:translateY(-8px) rotate(360deg);

box-shadow:0 0 20px #ff1493;

}

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

text-align:center;

}

}
/* MOBILE VIEW */
@media (max-width:768px){

    /* Hamburger icon visible */
    .navbar-toggler{
        border:2px solid #430258;
        padding:8px 10px;
        background:#fff;
    }

    .navbar-toggler i,
    .navbar-toggler-icon{
        color:#430258 !important;
        filter: brightness(0);
    }

    /* Navbar height */
    .navbar{
        padding:15px 20px;
        background:#fff;
    }

    /* Navbar கீழே content gap */
    .hero-section,
    .banner-section,
    .main-section{
        margin-top:80px;
    }

    /* Logo size */
    .logo img{
        width:80px;
    }
}