body{

font-family:'Poppins',sans-serif;
background:#fff;

}


/*================ NAVBAR ================*/

.main-header{

transition:.4s;
padding:12px 0;

background:rgba(255,255,255,.75);

backdrop-filter:blur(18px);

box-shadow:0 5px 35px rgba(0,0,0,.05);

}

.logo{

height:65px;

}

.navbar-brand h5{

margin:0;
font-size:22px;
font-weight:700;
color:#1E1B4B;

}

.navbar-brand span{

font-size:13px;
letter-spacing:2px;
font-weight:600;
color:#6C3CF0;

}

.navbar-nav .nav-link{

font-weight:600;
margin:0 12px;
color:#2c2c2c!important;
position:relative;

}

.navbar-nav .nav-link:after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#6C3CF0;

transition:.4s;

}

.navbar-nav .nav-link:hover:after{

width:100%;

}

.quote-btn{

background:linear-gradient(135deg,#6C3CF0,#8A5CFF);

padding:13px 28px;

border-radius:50px;

color:#fff;

font-weight:600;

text-decoration:none;

box-shadow:0 15px 40px rgba(108,60,240,.35);

transition:.35s;

}

.quote-btn:hover{

transform:translateY(-4px);

text-decoration:none;

color:#fff;

}



/*================ HERO ================*/

.hero-section{

position:relative;
top: 110px;

background:url(../images/export-bg.jpg) center center;

background-size:cover;

overflow:hidden;

}

.hero-section .overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(120deg,rgba(108,60,240,.88),rgba(16,24,40,.78)
);

}

.hero-section .row{
	padding-bottom: 5%;
}

.hero-content{

position:relative;

z-index:2;

color:#fff;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

border-radius:30px;

background:rgba(255,255,255,.18);

backdrop-filter:blur(12px);

margin-bottom:30px;

font-weight:500;

}

.hero-content h1{

font-size:68px;

font-weight:800;

line-height:1.15;

margin-bottom:30px;

}

.hero-content h1 span{

color:#FFD166;

}

.hero-content p{

font-size:19px;

line-height:1.9;

opacity:.92;

max-width:560px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-bottom:60px;

}

.btn-primary-custom{

background:#FFD166;

color:#222;

padding:16px 36px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.btn-primary-custom:hover{

transform:translateY(-5px);

color:#222;

text-decoration:none;

}

.btn-outline-custom{

padding:16px 36px;

border:2px solid rgba(255,255,255,.7);

color:#fff;

border-radius:50px;

text-decoration:none;

}

.btn-outline-custom:hover{

background:#fff;

color:#6C3CF0;

text-decoration:none;

}

.hero-stats{

display:flex;

gap:60px;

}

.hero-stats h3{

font-size:42px;

font-weight:700;

margin-bottom:5px;

}

.hero-image{

position:relative;

z-index:2;

}

.floating-card{

position:absolute;

background:rgba(255,255,255,.15);

backdrop-filter:blur(16px);

padding:18px 25px;

border-radius:18px;

color:#fff;

font-weight:600;

box-shadow:0 10px 40px rgba(0,0,0,.15);

animation:float 4s infinite ease-in-out;

}

.card1{

top:15%;

left:-20px;

}

.card2{

bottom:15%;

right:-30px;

}

.floating-card i{

color:#FFD166;

margin-right:8px;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

@media(max-width:991px){
.hero-section{
		top:unset;
	}
.hero-content{

text-align:center;
padding-top:140px;

}

.hero-content h1{

font-size:44px;

}

.hero-stats{

justify-content:center;

gap:25px;

}

.hero-image{

/*margin-top:60px;*/
display: none;

}

}

@media(max-width:576px){
	.hero-section{
		top:unset;
	}

.hero-content h1{

font-size:34px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

.hero-image
{ 
	display: none;
}

}

/*================ ABOUT COMPANY =================*/

.about-company{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.about-company::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(108,60,240,.05);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:linear-gradient(135deg,#6C3CF0,#8B5CF6);
    color:#fff;
    padding:20px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(108,60,240,.25);
}

.experience-box h2{
    margin:0;
    font-size:32px;
    font-weight:700;
}

.experience-box p{
    margin:0;
    font-size:14px;
    letter-spacing:1px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#F3F0FF;
    color:#6C3CF0;
    font-size:13px;
    font-weight:600;
    border-radius:30px;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0F172A;
    line-height:1.3;
}

.section-text{
    color:#64748B;
    font-size:17px;
    line-height:1.9;
}

.about-btn{
    display:inline-block;
    padding:14px 32px;
    background:#6C3CF0;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(108,60,240,.25);
}

.about-btn:hover{
    background:#5630d8;
    color:#fff;
    text-decoration:none;
    transform:translateY(-3px);
}
/*================ TRADE EXCELLENCE ================*/

.trade-excellence{

padding:100px 0;
background:#f8f9fc;
position:relative;
overflow:hidden;

}

.trade-excellence::before{

content:'';
position:absolute;
width:350px;
height:350px;
background:rgba(108,60,240,.05);
border-radius:50%;
top:-150px;
right:-150px;

}

.section-badge{

display:inline-block;
padding:10px 22px;
border-radius:30px;
background:#ede9fe;
color:#6C3CF0;
font-weight:600;
letter-spacing:1px;
font-size:13px;

}

.section-title{

font-size:46px;
font-weight:700;
color:#0F172A;

}

.section-title span{

color:#6C3CF0;

}

.section-desc{

font-size:17px;
line-height:1.8;
color:#64748b;
margin-top:20px;

}

.feature-box{

background:#fff;
border-radius:20px;
padding:40px 30px;
text-align:center;
transition:.4s;
height:100%;
box-shadow:0 10px 35px rgba(0,0,0,.05);
border:1px solid #eee;

}

.feature-box:hover{

transform:translateY(-12px);
box-shadow:0 25px 60px rgba(108,60,240,.18);

}

.icon{

width:80px;
height:80px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
background:linear-gradient(135deg,#6C3CF0,#8B5CF6);

}

.feature-box h4{

font-size:22px;
font-weight:600;
margin-bottom:15px;
color:#0F172A;

}

.feature-box p{

color:#64748B;
line-height:1.8;
margin:0;

}

@media(max-width:991px){

.section-title{

font-size:36px;

}

}

@media(max-width:576px){

.section-title{

font-size:30px;

}

.feature-box{

padding:30px 25px;

}

}

.product-category{

padding:100px 0;
background:#F8FAFC;

}

.category-card{

position:relative;
overflow:hidden;
border-radius:22px;
height:450px;
cursor:pointer;
box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.category-card img{

width:100%;
height:100%;
object-fit:cover;
transition:.6s;

}

.category-card:hover img{

transform:scale(1.12);

}

.overlay{

position:absolute;
left:0;
right:0;
bottom:0;
padding:35px;
color:#fff;

background:linear-gradient(
to top,
rgba(10,15,40,.95),
rgba(10,15,40,.20),
transparent);

transition:.4s;

}

.overlay span{

display:inline-block;
padding:7px 18px;
border-radius:30px;
background:#6C3CF0;
font-size:13px;
margin-bottom:15px;

}

.overlay h4{

font-size:28px;
font-weight:700;
margin-bottom:15px;

}

.overlay p{

opacity:.92;
line-height:1.8;
margin-bottom:25px;

}

.overlay a{

display:inline-flex;
align-items:center;
gap:10px;
color:#FFD166;
font-weight:600;
text-decoration:none;

}

.overlay a i{

transition:.3s;

}

.category-card:hover a i{

transform:translateX(8px);

}

.category-card a{
	padding-top: 95%;
}

/*================ WHY CHOOSE US =================*/

.why-choose{

padding:100px 0;
background:linear-gradient(180deg,#ffffff 0%,#f8f9fc 100%);
position:relative;
overflow:hidden;

}

.why-choose::before{

content:'';
position:absolute;
width:380px;
height:380px;
background:rgba(108,60,240,.06);
border-radius:50%;
top:-180px;
left:-120px;

}

.section-badge{

display:inline-block;
padding:10px 24px;
border-radius:40px;
background:#ede9fe;
color:#6C3CF0;
font-size:13px;
font-weight:600;
letter-spacing:1px;

}

.section-heading{

font-size:46px;
font-weight:700;
color:#0F172A;
line-height:1.3;

}

.section-heading span{

color:#6C3CF0;

}

.section-text{

font-size:17px;
line-height:1.9;
color:#64748B;

}

.btn-explore{

display:inline-block;
padding:16px 36px;
background:linear-gradient(135deg,#6C3CF0,#8B5CF6);
color:#fff;
border-radius:50px;
font-weight:600;
text-decoration:none;
box-shadow:0 18px 35px rgba(108,60,240,.25);
transition:.35s;

}

.btn-explore:hover{

color:#fff;
text-decoration:none;
transform:translateY(-4px);

}

/* Cards */

.choose-card{

background:rgba(255,255,255,.75);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.7);
border-radius:22px;
padding:35px 30px;
transition:.4s;
height:100%;
box-shadow:0 20px 40px rgba(0,0,0,.05);

}

.choose-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 55px rgba(108,60,240,.18);

}

.choose-icon{

width:75px;
height:75px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;
background:linear-gradient(135deg,#6C3CF0,#8B5CF6);
font-size:28px;
color:#fff;

}

.choose-card h4{

font-size:22px;
font-weight:600;
margin-bottom:15px;
color:#0F172A;

}

.choose-card p{

color:#64748B;
line-height:1.8;
margin:0;

}

/* Responsive */

@media(max-width:991px){

.section-heading{

font-size:36px;

}

}

@media(max-width:576px){

.section-heading{

font-size:30px;

}

.choose-card{

padding:30px 25px;

}

}

/*=======================*/
.usp {
      padding: 80px 0;
      background: linear-gradient(135deg, #eef6ff, #ffffff);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      color: #1a2b49;
    }

    .section-title p {
      color: #6c7a92;
    }

    /* USP CARD */
    .usp-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 8px 25px rgba(0,0,0,0.05);
      height: 100%;
    }

    .usp-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(123,47,247,0.15);
    }

    .usp-icon {
      font-size: 40px;
      background: linear-gradient(135deg, #7b2ff7, #a044ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }

    .usp-card h5 {
      font-weight: 600;
      color: #1a2b49;
      margin-bottom: 10px;
    }

    .usp-card p {
      font-size: 0.95rem;
      color: #6c7a92;
    }
/*================ NEWS SECTION ================*/

.news-section{

padding:100px 0;
background:#F8FAFC;
position:relative;

}

.section-badge{

display:inline-block;
padding:10px 24px;
border-radius:50px;
background:#EDE9FE;
color:#6C3CF0;
font-size:13px;
font-weight:600;
letter-spacing:1px;

}

.section-title{

font-size:46px;
font-weight:700;
color:#0F172A;

}

.section-title span{

color:#6C3CF0;

}

.section-description{

font-size:17px;
line-height:1.8;
color:#64748B;
margin-top:20px;

}

.view-all-btn{

padding:14px 30px;
background:linear-gradient(135deg,#6C3CF0,#8B5CF6);
color:#fff;
border-radius:50px;
font-weight:600;
display:inline-block;
text-decoration:none;
transition:.3s;

}

.view-all-btn:hover{

color:#fff;
text-decoration:none;
transform:translateY(-3px);

}

/* Card */

.news-card{

background:#fff;
border-radius:22px;
overflow:hidden;
transition:.4s;
box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.news-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 55px rgba(108,60,240,.18);

}

.news-img{

position:relative;
overflow:hidden;

}

.news-img img{

width:100%;
height:260px;
object-fit:cover;
transition:.5s;

}

.news-card:hover img{

transform:scale(1.08);

}

.news-category{

position:absolute;
top:20px;
left:20px;
background:#6C3CF0;
color:#fff;
padding:8px 18px;
border-radius:30px;
font-size:12px;
font-weight:600;

}

.news-content{

padding:30px;

}

.news-date{

font-size:14px;
color:#6B7280;
margin-bottom:18px;

}

.news-date i{

color:#F59E0B;
margin-right:8px;

}

.news-content h4{

font-size:24px;
font-weight:700;
line-height:1.4;
margin-bottom:18px;
color:#0F172A;

}

.news-content p{

font-size:15px;
line-height:1.8;
color:#64748B;
margin-bottom:25px;

}

.read-more{

font-weight:600;
color:#6C3CF0;
text-decoration:none;

}

.read-more i{

margin-left:8px;
transition:.3s;

}

.news-card:hover .read-more i{

transform:translateX(6px);

}

/* Responsive */

@media(max-width:991px){

.section-title{

font-size:36px;

}

}

@media(max-width:576px){

.section-title{

font-size:30px;

}

.news-img img{

height:220px;

}

}

/*================ FOOTER =================*/

.footer-section{

background:#0F172A;
padding-top:180px;
position:relative;
color:#CBD5E1;

}

/* CTA Box */

.footer-cta{

margin-top:-260px;
margin-bottom:80px;
background:linear-gradient(135deg,#6C3CF0,#8B5CF6);
padding:60px;
border-radius:25px;
color:#fff;
box-shadow:0 30px 70px rgba(108,60,240,.35);

}

.footer-cta h2{

font-size:40px;
font-weight:700;
margin-bottom:15px;

}

.footer-cta p{

font-size:17px;
opacity:.95;
margin:0;

}

.cta-btn{

display:inline-block;
padding:16px 35px;
background:#FFD166;
color:#222;
font-weight:700;
border-radius:50px;
text-decoration:none;
transition:.35s;

}

.cta-btn:hover{

background:#fff;
color:#6C3CF0;
text-decoration:none;
transform:translateY(-4px);

}

/* Logo */

.footer-logo{

font-size:34px;
font-weight:800;
color:#fff;

}

.footer-logo span{

display:block;
font-size:18px;
font-weight:500;
color:#FFD166;
letter-spacing:2px;

}

.footer-about{

line-height:1.9;
margin:25px 0;

}

/* Headings */

.footer-section h5{

color:#fff;
margin-bottom:25px;
font-weight:600;

}

/* Links */

.footer-section ul{

padding:0;
margin:0;
list-style:none;

}

.footer-section ul li{

margin-bottom:14px;

}

.footer-section ul li a{

color:#CBD5E1;
text-decoration:none;
transition:.3s;

}

.footer-section ul li a:hover{

padding-left:8px;
color:#FFD166;

}

/* Contact */

.contact-info li{

display:flex;
margin-bottom:18px;

}

.contact-info i{

width:30px;
color:#FFD166;
margin-top:4px;

}

/* Social */

.social-icons{

display:flex;
gap:15px;

}

.social-icons a{

width:45px;
height:45px;
border-radius:50%;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
transition:.35s;

}

.social-icons a:hover{

background:#6C3CF0;
transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

margin-top:60px;
padding:25px 0;
border-top:1px solid rgba(255,255,255,.08);
font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.footer-cta{

padding:40px;
text-align:center;

}

.footer-cta h2{

font-size:32px;

}

.footer-bottom{

text-align:center;

}

}

@media(max-width:576px){

.footer-section{

padding-top:140px;

}

.footer-cta{

margin-top:-220px;
padding:30px;

}

.footer-cta h2{

font-size:26px;

}

.footer-logo{

font-size:28px;

}

.social-icons{

justify-content:center;

}

}

    /* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  /*background: linear-gradient(135deg, #7b2ff7, #a044ff);*/
  background: linear-gradient(135deg,#6C3CF0,#8B5CF6);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: 0.3s;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}

