/*==========================================
  BODUBOBA GENERAL TRADING FZC LLC
  PREMIUM WEBSITE CSS - PART 1
==========================================*/

/* Google Font */

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

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#555;
    background:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==========================================
HEADER
==========================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:60px;

}

/*==========================================
NAVIGATION
==========================================*/

.navbar ul{

    display:flex;

    align-items:center;

}

.navbar ul li{

    margin-left:35px;

}

.navbar ul li a{

    color:#3b156b;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.navbar ul li a:hover,

.navbar ul li a.active{

    color:#8f35ff;

}

.navbar ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:30px;

    background:#8f35ff;

    transition:.3s;

}

.navbar ul li a:hover::after,

.navbar ul li a.active::after{

    width:100%;

}

/*==========================================
MOBILE MENU
==========================================*/

.menu-toggle{

    display:none;

    width:32px;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:3px;

    margin:6px 0;

    background:#4b1485;

    transition:.3s;

}

/*==========================================
HERO SECTION
==========================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#f5ecff,#ffffff);

    overflow:hidden;

    padding-top:90px;

}

.hero-shape{

    position:absolute;

    width:600px;

    height:600px;

    background:#8f35ff;

    opacity:.08;

    border-radius:50%;

    top:-200px;

    right:-150px;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

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

.hero-tag{

    display:inline-block;

    background:#f2e7ff;

    color:#6b20d8;

    padding:10px 22px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:60px;

    line-height:1.1;

    color:#2d164b;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:18px;

    color:#666;

    margin-bottom:35px;

}

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

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.btn-primary{

    display:inline-block;

    background:#6c2bd9;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(108,43,217,.30);

}

.btn-primary:hover{

    background:#531bb8;

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-block;

    border:2px solid #6c2bd9;

    color:#6c2bd9;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-outline:hover{

    background:#6c2bd9;

    color:#fff;

}

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

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    font-size:15px;

    font-weight:600;

    color:#444;

}

.hero-features i{

    color:#7c32ef;

    margin-right:8px;

}

/*==========================================
RIGHT IMAGE
==========================================*/

.hero-image-card{

    background:#fff;

    border-radius:30px;

    padding:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transform:rotate(-2deg);

    transition:.4s;

}

.hero-image-card:hover{

    transform:rotate(0deg) scale(1.02);

}

.hero-image-card img{

    width:100%;

    border-radius:20px;

}

/*==========================================
WAVE
==========================================*/

.hero-wave{

    position:absolute;

    left:0;

    bottom:-5px;

    width:100%;

}

.hero-wave svg{

    display:block;

    width:100%;

}

/*==========================================
SECTION TITLE
==========================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#7c32ef;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:44px;

    color:#2d164b;

    margin:15px 0;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}

/*==========================================
SECTION SPACING
==========================================*/

section{

    padding:100px 0;

}
/*==========================================
ABOUT SECTION
==========================================*/

.about{
    background:#fff;
    position:relative;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.about-content .section-tag{
    display:inline-block;
    background:#f2e8ff;
    color:#7b2ff7;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:46px;
    line-height:1.2;
    color:#2c1748;
    margin-bottom:25px;
    font-weight:700;
}

.about-content p{
    color:#666;
    margin-bottom:20px;
    font-size:17px;
}

.about-list{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-list div{
    display:flex;
    align-items:center;
    font-weight:600;
    color:#444;
}

.about-list i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#7b2ff7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    font-size:14px;
}

/*==========================================
COUNTER
==========================================*/

.counter{
    background:linear-gradient(135deg,#6a1fd0,#9d47ff);
    color:#fff;
    padding:90px 0;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    text-align:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    padding:45px 20px;
    border-radius:25px;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.counter-box h3{
    font-size:52px;
    font-weight:800;
    margin-bottom:10px;
}

.counter-box p{
    font-size:18px;
    font-weight:500;
}

/*==========================================
SERVICES
==========================================*/

.services{
    background:#faf8ff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#fff;
    border-radius:30px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#6a1fd0,#a34fff);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#6a1fd0,#a34fff);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:36px;

    box-shadow:0 15px 30px rgba(106,31,208,.30);

}

.service-card h3{

    color:#2d174b;

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    font-size:16px;

}

/*==========================================
HOVER EFFECT
==========================================*/

.service-card:hover .service-icon{

    transform:rotate(10deg) scale(1.08);

    transition:.35s;

}

/*==========================================
DECORATIVE SHAPES
==========================================*/

.services{

    position:relative;

    overflow:hidden;

}

.services::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#f2e8ff;

    border-radius:50%;

    top:-180px;

    left:-150px;

}

.services::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#efe3ff;

    border-radius:50%;

    bottom:-150px;

    right:-120px;

}

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

@media(max-width:992px){

.about-wrapper{

    grid-template-columns:1fr;

}

.counter-grid{

    grid-template-columns:repeat(2,1fr);

}

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-content h2{

    font-size:34px;

}

.about-list{

    grid-template-columns:1fr;

}

.counter-grid{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:1fr;

}

.counter-box h3{

    font-size:40px;

}

}
/*==========================================
PRODUCTS SECTION
==========================================*/

.products{
    background:#ffffff;
    position:relative;
}

.product-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.product-image{
    position:relative;
}

.product-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s;
}

.product-image img:hover{
    transform:scale(1.03);
}

.product-content h3{
    font-size:42px;
    color:#2d174b;
    margin-bottom:20px;
    line-height:1.2;
}

.product-content p{
    font-size:17px;
    color:#666;
    margin-bottom:30px;
}

.product-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.product-list div{
    display:flex;
    align-items:center;
    background:#faf7ff;
    padding:14px 18px;
    border-radius:12px;
    font-weight:500;
    transition:.3s;
}

.product-list div:hover{
    background:#6a1fd0;
    color:#fff;
    transform:translateX(8px);
}

.product-list i{
    color:#7b2ff7;
    margin-right:10px;
}

.product-list div:hover i{
    color:#fff;
}

/*==========================================
CATEGORY SECTION
==========================================*/

.categories{
    background:#faf8ff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.category-card{
    background:#fff;
    border-radius:22px;
    text-align:center;
    padding:45px 25px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,#6a1fd0,#9d47ff);
    color:#fff;
}

.category-card i{
    font-size:48px;
    color:#7b2ff7;
    margin-bottom:20px;
    transition:.35s;
}

.category-card:hover i{
    color:#fff;
}

.category-card h4{
    font-size:22px;
    font-weight:600;
}

/*==========================================
WHY CHOOSE US
==========================================*/

.why-us{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-12px);
}

.why-card i{
    width:90px;
    height:90px;
    background:linear-gradient(135deg,#6a1fd0,#9d47ff);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    color:#fff;
    font-size:38px;
    margin-bottom:25px;
}

.why-card h3{
    color:#2d174b;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
}

/*==========================================
CALL TO ACTION
==========================================*/

.cta{
    background:linear-gradient(135deg,#5b18bf,#8f35ff);
    color:#fff;
}

.cta-box{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.cta-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:35px;
    opacity:.95;
}

.cta .btn-primary{
    background:#fff;
    color:#5b18bf;
    box-shadow:none;
}

.cta .btn-primary:hover{
    background:#f3f3f3;
    color:#4d13a8;
}

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

@media(max-width:992px){

.product-showcase{
    grid-template-columns:1fr;
}

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-content h3{
    font-size:32px;
}

.product-list{
    grid-template-columns:1fr;
}

.category-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:1fr;
}

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

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

}
/*==========================================
CONTACT SECTION
==========================================*/

.contact{
    background:#faf8ff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:flex-start;
}

.contact-info{
    background:linear-gradient(135deg,#5b18bf,#8f35ff);
    color:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(91,24,191,.30);
}

.contact-info h3{
    font-size:34px;
    margin-bottom:20px;
}

.contact-info p{
    opacity:.95;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:30px;
}

.info-box i{
    width:60px;
    height:60px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:20px;
}

.info-box h4{
    margin-bottom:5px;
}

/*==========================================
CONTACT FORM
==========================================*/

.contact-form{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-form .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#7b2ff7;
    box-shadow:0 0 0 3px rgba(123,47,247,.15);
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/*==========================================
GOOGLE MAP
==========================================*/

.map iframe{
    width:100%;
    height:450px;
    border:none;
}

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

footer{
    background:#241238;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    height:55px;
    margin-bottom:20px;
}

footer h4{
    margin-bottom:20px;
    font-size:20px;
}

footer ul li{
    margin-bottom:12px;
}

footer a{
    color:#ccc;
    transition:.3s;
}

footer a:hover{
    color:#fff;
}

footer p{
    color:#ccc;
    line-height:1.8;
}

.copyright{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
    color:#aaa;
}

/*==========================================
WHATSAPP
==========================================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.20);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/*==========================================
SCROLL TOP
==========================================*/

.scrollTop{
    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:#7b2ff7;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.20);
    transition:.3s;
}

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

/*==========================================
ANIMATIONS
==========================================*/

.service-card,
.category-card,
.why-card,
.counter-box,
.hero-image-card,
.contact-form,
.contact-info{
    transition:all .35s ease;
}

.service-card:hover,
.category-card:hover,
.why-card:hover,
.counter-box:hover{
    transform:translateY(-10px);
}

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

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-wrapper{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:40px;
}

.hero-buttons{
    flex-direction:column;
}

.contact-form .row{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.info-box{
    flex-direction:column;
    text-align:center;
}

.info-box i{
    margin:0 auto 15px;
}

.navbar{
    position:fixed;
    top:90px;
    left:-100%;
    width:100%;
    background:#fff;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.navbar.active{
    left:0;
}

.navbar ul{
    flex-direction:column;
    padding:30px 0;
}

.navbar ul li{
    margin:18px 0;
}

.menu-toggle{
    display:block;
}

}